styles.css 224 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792
  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. #u20014 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u20016 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u20017_div {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:129px;
  41. height:22px;
  42. background:inherit;
  43. background-color:rgba(255, 255, 255, 0);
  44. border:none;
  45. border-radius:0px;
  46. -moz-box-shadow:none;
  47. -webkit-box-shadow:none;
  48. box-shadow:none;
  49. font-size:16px;
  50. color:#FFFFFF;
  51. }
  52. #u20017 {
  53. border-width:0px;
  54. position:absolute;
  55. left:49px;
  56. top:14px;
  57. width:129px;
  58. height:22px;
  59. display:flex;
  60. font-size:16px;
  61. color:#FFFFFF;
  62. }
  63. #u20017 .text {
  64. position:absolute;
  65. align-self:flex-start;
  66. padding:0px 0px 0px 0px;
  67. box-sizing:border-box;
  68. width:100%;
  69. }
  70. #u20017_text {
  71. border-width:0px;
  72. white-space:nowrap;
  73. text-transform:none;
  74. }
  75. #u20018_div {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. background:inherit;
  83. background-color:rgba(30, 42, 68, 1);
  84. border:none;
  85. border-radius:0px;
  86. -moz-box-shadow:none;
  87. -webkit-box-shadow:none;
  88. box-shadow:none;
  89. color:#AFB3B6;
  90. }
  91. #u20018 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:1600px;
  97. height:50px;
  98. display:flex;
  99. color:#AFB3B6;
  100. }
  101. #u20018 .text {
  102. position:absolute;
  103. align-self:center;
  104. padding:2px 2px 2px 2px;
  105. box-sizing:border-box;
  106. width:100%;
  107. }
  108. #u20018_text {
  109. border-width:0px;
  110. word-wrap:break-word;
  111. text-transform:none;
  112. visibility:hidden;
  113. }
  114. #u20019 {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:0px;
  120. height:0px;
  121. }
  122. #u20020_img {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:31px;
  128. height:31px;
  129. }
  130. #u20020 {
  131. border-width:0px;
  132. position:absolute;
  133. left:19px;
  134. top:10px;
  135. width:31px;
  136. height:31px;
  137. display:flex;
  138. }
  139. #u20020 .text {
  140. position:absolute;
  141. align-self:center;
  142. padding:2px 2px 2px 2px;
  143. box-sizing:border-box;
  144. width:100%;
  145. }
  146. #u20020_text {
  147. border-width:0px;
  148. word-wrap:break-word;
  149. text-transform:none;
  150. }
  151. #u20021_div {
  152. border-width:0px;
  153. position:absolute;
  154. left:0px;
  155. top:0px;
  156. width:129px;
  157. height:22px;
  158. background:inherit;
  159. background-color:rgba(255, 255, 255, 0);
  160. border:none;
  161. border-radius:0px;
  162. -moz-box-shadow:none;
  163. -webkit-box-shadow:none;
  164. box-shadow:none;
  165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  166. font-weight:400;
  167. font-style:normal;
  168. font-size:16px;
  169. color:#FFFFFF;
  170. }
  171. #u20021 {
  172. border-width:0px;
  173. position:absolute;
  174. left:62px;
  175. top:14px;
  176. width:129px;
  177. height:22px;
  178. display:flex;
  179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  180. font-weight:400;
  181. font-style:normal;
  182. font-size:16px;
  183. color:#FFFFFF;
  184. }
  185. #u20021 .text {
  186. position:absolute;
  187. align-self:flex-start;
  188. padding:0px 0px 0px 0px;
  189. box-sizing:border-box;
  190. width:100%;
  191. }
  192. #u20021_text {
  193. border-width:0px;
  194. white-space:nowrap;
  195. text-transform:none;
  196. }
  197. #u20022_div {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:200px;
  203. height:1200px;
  204. background:inherit;
  205. background-color:rgba(30, 42, 68, 1);
  206. border:none;
  207. border-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. color:#AFB3B6;
  212. }
  213. #u20022 {
  214. border-width:0px;
  215. position:absolute;
  216. left:0px;
  217. top:47px;
  218. width:200px;
  219. height:1200px;
  220. display:flex;
  221. color:#AFB3B6;
  222. }
  223. #u20022 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:2px 2px 2px 2px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u20022_text {
  231. border-width:0px;
  232. word-wrap:break-word;
  233. text-transform:none;
  234. visibility:hidden;
  235. }
  236. #u20023_img {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:15px;
  242. height:15px;
  243. }
  244. #u20023 {
  245. border-width:0px;
  246. position:absolute;
  247. left:1523px;
  248. top:18px;
  249. width:15px;
  250. height:15px;
  251. display:flex;
  252. }
  253. #u20023 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u20023_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u20024_img {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:15px;
  272. height:15px;
  273. }
  274. #u20024 {
  275. border-width:0px;
  276. position:absolute;
  277. left:1493px;
  278. top:18px;
  279. width:15px;
  280. height:15px;
  281. display:flex;
  282. }
  283. #u20024 .text {
  284. position:absolute;
  285. align-self:center;
  286. padding:2px 2px 2px 2px;
  287. box-sizing:border-box;
  288. width:100%;
  289. }
  290. #u20024_text {
  291. border-width:0px;
  292. word-wrap:break-word;
  293. text-transform:none;
  294. visibility:hidden;
  295. }
  296. #u20025 {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:0px;
  302. height:0px;
  303. }
  304. #u20026_img {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:14px;
  310. height:14px;
  311. }
  312. #u20026 {
  313. border-width:0px;
  314. position:absolute;
  315. left:1553px;
  316. top:18px;
  317. width:14px;
  318. height:14px;
  319. display:flex;
  320. }
  321. #u20026 .text {
  322. position:absolute;
  323. align-self:center;
  324. padding:2px 2px 2px 2px;
  325. box-sizing:border-box;
  326. width:100%;
  327. }
  328. #u20026_text {
  329. border-width:0px;
  330. word-wrap:break-word;
  331. text-transform:none;
  332. visibility:hidden;
  333. }
  334. #u20027_img {
  335. border-width:0px;
  336. position:absolute;
  337. left:0px;
  338. top:0px;
  339. width:8px;
  340. height:5px;
  341. }
  342. #u20027 {
  343. border-width:0px;
  344. position:absolute;
  345. left:1572px;
  346. top:23px;
  347. width:8px;
  348. height:5px;
  349. display:flex;
  350. }
  351. #u20027 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:2px 2px 2px 2px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u20027_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. visibility:hidden;
  363. }
  364. #u20028_div {
  365. border-width:0px;
  366. position:absolute;
  367. left:0px;
  368. top:0px;
  369. width:1402px;
  370. height:1200px;
  371. background:inherit;
  372. background-color:rgba(242, 242, 242, 1);
  373. border:none;
  374. border-radius:0px;
  375. -moz-box-shadow:none;
  376. -webkit-box-shadow:none;
  377. box-shadow:none;
  378. }
  379. #u20028 {
  380. border-width:0px;
  381. position:absolute;
  382. left:198px;
  383. top:47px;
  384. width:1402px;
  385. height:1200px;
  386. display:flex;
  387. }
  388. #u20028 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 2px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u20028_text {
  396. border-width:0px;
  397. word-wrap:break-word;
  398. text-transform:none;
  399. visibility:hidden;
  400. }
  401. #u20029 {
  402. border-width:0px;
  403. position:absolute;
  404. left:35px;
  405. top:81px;
  406. width:118px;
  407. height:220px;
  408. }
  409. #u20029_children {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:0px;
  415. height:0px;
  416. }
  417. #u20030 {
  418. border-width:0px;
  419. position:absolute;
  420. left:0px;
  421. top:0px;
  422. width:98px;
  423. height:20px;
  424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  425. font-weight:400;
  426. font-style:normal;
  427. font-size:14px;
  428. color:#FFFFFF;
  429. }
  430. #u20031_div {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:76px;
  436. height:20px;
  437. background:inherit;
  438. background-color:rgba(255, 255, 255, 0);
  439. border:none;
  440. border-radius:0px;
  441. -moz-box-shadow:none;
  442. -webkit-box-shadow:none;
  443. box-shadow:none;
  444. }
  445. #u20031 {
  446. border-width:0px;
  447. position:absolute;
  448. left:22px;
  449. top:0px;
  450. width:76px;
  451. height:20px;
  452. display:flex;
  453. }
  454. #u20031 .text {
  455. position:absolute;
  456. align-self:center;
  457. padding:2px 2px 2px 3px;
  458. box-sizing:border-box;
  459. width:100%;
  460. }
  461. #u20031_text {
  462. border-width:0px;
  463. white-space:nowrap;
  464. text-transform:none;
  465. }
  466. #u20032 {
  467. border-width:0px;
  468. position:absolute;
  469. left:0px;
  470. top:20px;
  471. width:84px;
  472. height:20px;
  473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  474. font-weight:400;
  475. font-style:normal;
  476. font-size:14px;
  477. color:#FFFFFF;
  478. }
  479. #u20033_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:9px;
  485. height:9px;
  486. }
  487. #u20033 {
  488. border-width:0px;
  489. position:absolute;
  490. left:6px;
  491. top:6px;
  492. width:9px;
  493. height:9px;
  494. display:flex;
  495. }
  496. #u20033 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u20033_img.selected {
  504. }
  505. #u20033.selected {
  506. }
  507. #u20033_text {
  508. border-width:0px;
  509. word-wrap:break-word;
  510. text-transform:none;
  511. visibility:hidden;
  512. }
  513. #u20034_div {
  514. border-width:0px;
  515. position:absolute;
  516. left:0px;
  517. top:0px;
  518. width:62px;
  519. height:20px;
  520. background:inherit;
  521. background-color:rgba(255, 255, 255, 0);
  522. border:none;
  523. border-radius:0px;
  524. -moz-box-shadow:none;
  525. -webkit-box-shadow:none;
  526. box-shadow:none;
  527. }
  528. #u20034 {
  529. border-width:0px;
  530. position:absolute;
  531. left:22px;
  532. top:0px;
  533. width:62px;
  534. height:20px;
  535. display:flex;
  536. }
  537. #u20034 .text {
  538. position:absolute;
  539. align-self:center;
  540. padding:2px 2px 2px 3px;
  541. box-sizing:border-box;
  542. width:100%;
  543. }
  544. #u20034_text {
  545. border-width:0px;
  546. white-space:nowrap;
  547. text-transform:none;
  548. }
  549. #u20032_children {
  550. border-width:0px;
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:0px;
  555. height:0px;
  556. }
  557. #u20035 {
  558. border-width:0px;
  559. position:absolute;
  560. left:20px;
  561. top:20px;
  562. width:98px;
  563. height:20px;
  564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  565. font-weight:400;
  566. font-style:normal;
  567. font-size:14px;
  568. color:#FFFFFF;
  569. }
  570. #u20036_div {
  571. border-width:0px;
  572. position:absolute;
  573. left:0px;
  574. top:0px;
  575. width:76px;
  576. height:20px;
  577. background:inherit;
  578. background-color:rgba(255, 255, 255, 0);
  579. border:none;
  580. border-radius:0px;
  581. -moz-box-shadow:none;
  582. -webkit-box-shadow:none;
  583. box-shadow:none;
  584. }
  585. #u20036 {
  586. border-width:0px;
  587. position:absolute;
  588. left:22px;
  589. top:0px;
  590. width:76px;
  591. height:20px;
  592. display:flex;
  593. }
  594. #u20036 .text {
  595. position:absolute;
  596. align-self:center;
  597. padding:2px 2px 2px 3px;
  598. box-sizing:border-box;
  599. width:100%;
  600. }
  601. #u20036_text {
  602. border-width:0px;
  603. white-space:nowrap;
  604. text-transform:none;
  605. }
  606. #u20037 {
  607. border-width:0px;
  608. position:absolute;
  609. left:20px;
  610. top:40px;
  611. width:98px;
  612. height:20px;
  613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  614. font-weight:400;
  615. font-style:normal;
  616. font-size:14px;
  617. color:#FFFFFF;
  618. }
  619. #u20038_div {
  620. border-width:0px;
  621. position:absolute;
  622. left:0px;
  623. top:0px;
  624. width:76px;
  625. height:20px;
  626. background:inherit;
  627. background-color:rgba(255, 255, 255, 0);
  628. border:none;
  629. border-radius:0px;
  630. -moz-box-shadow:none;
  631. -webkit-box-shadow:none;
  632. box-shadow:none;
  633. }
  634. #u20038 {
  635. border-width:0px;
  636. position:absolute;
  637. left:22px;
  638. top:0px;
  639. width:76px;
  640. height:20px;
  641. display:flex;
  642. }
  643. #u20038 .text {
  644. position:absolute;
  645. align-self:center;
  646. padding:2px 2px 2px 3px;
  647. box-sizing:border-box;
  648. width:100%;
  649. }
  650. #u20038_text {
  651. border-width:0px;
  652. white-space:nowrap;
  653. text-transform:none;
  654. }
  655. #u20039 {
  656. border-width:0px;
  657. position:absolute;
  658. left:0px;
  659. top:80px;
  660. width:84px;
  661. height:20px;
  662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  663. font-weight:400;
  664. font-style:normal;
  665. font-size:14px;
  666. color:#FFFFFF;
  667. }
  668. #u20040_img {
  669. border-width:0px;
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:9px;
  674. height:9px;
  675. }
  676. #u20040 {
  677. border-width:0px;
  678. position:absolute;
  679. left:6px;
  680. top:6px;
  681. width:9px;
  682. height:9px;
  683. display:flex;
  684. }
  685. #u20040 .text {
  686. position:absolute;
  687. align-self:center;
  688. padding:2px 2px 2px 2px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u20040_img.selected {
  693. }
  694. #u20040.selected {
  695. }
  696. #u20040_text {
  697. border-width:0px;
  698. word-wrap:break-word;
  699. text-transform:none;
  700. visibility:hidden;
  701. }
  702. #u20041_div {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:62px;
  708. height:20px;
  709. background:inherit;
  710. background-color:rgba(255, 255, 255, 0);
  711. border:none;
  712. border-radius:0px;
  713. -moz-box-shadow:none;
  714. -webkit-box-shadow:none;
  715. box-shadow:none;
  716. }
  717. #u20041 {
  718. border-width:0px;
  719. position:absolute;
  720. left:22px;
  721. top:0px;
  722. width:62px;
  723. height:20px;
  724. display:flex;
  725. }
  726. #u20041 .text {
  727. position:absolute;
  728. align-self:center;
  729. padding:2px 2px 2px 3px;
  730. box-sizing:border-box;
  731. width:100%;
  732. }
  733. #u20041_text {
  734. border-width:0px;
  735. white-space:nowrap;
  736. text-transform:none;
  737. }
  738. #u20039_children {
  739. border-width:0px;
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:0px;
  744. height:0px;
  745. }
  746. #u20042 {
  747. border-width:0px;
  748. position:absolute;
  749. left:20px;
  750. top:20px;
  751. width:98px;
  752. height:20px;
  753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  754. font-weight:400;
  755. font-style:normal;
  756. font-size:14px;
  757. color:#FFFFFF;
  758. }
  759. #u20043_div {
  760. border-width:0px;
  761. position:absolute;
  762. left:0px;
  763. top:0px;
  764. width:76px;
  765. height:20px;
  766. background:inherit;
  767. background-color:rgba(255, 255, 255, 0);
  768. border:none;
  769. border-radius:0px;
  770. -moz-box-shadow:none;
  771. -webkit-box-shadow:none;
  772. box-shadow:none;
  773. }
  774. #u20043 {
  775. border-width:0px;
  776. position:absolute;
  777. left:22px;
  778. top:0px;
  779. width:76px;
  780. height:20px;
  781. display:flex;
  782. }
  783. #u20043 .text {
  784. position:absolute;
  785. align-self:center;
  786. padding:2px 2px 2px 3px;
  787. box-sizing:border-box;
  788. width:100%;
  789. }
  790. #u20043_text {
  791. border-width:0px;
  792. white-space:nowrap;
  793. text-transform:none;
  794. }
  795. #u20044 {
  796. border-width:0px;
  797. position:absolute;
  798. left:20px;
  799. top:40px;
  800. width:98px;
  801. height:20px;
  802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  803. font-weight:400;
  804. font-style:normal;
  805. font-size:14px;
  806. color:#FFFFFF;
  807. }
  808. #u20045_div {
  809. border-width:0px;
  810. position:absolute;
  811. left:0px;
  812. top:0px;
  813. width:76px;
  814. height:20px;
  815. background:inherit;
  816. background-color:rgba(255, 255, 255, 0);
  817. border:none;
  818. border-radius:0px;
  819. -moz-box-shadow:none;
  820. -webkit-box-shadow:none;
  821. box-shadow:none;
  822. }
  823. #u20045 {
  824. border-width:0px;
  825. position:absolute;
  826. left:22px;
  827. top:0px;
  828. width:76px;
  829. height:20px;
  830. display:flex;
  831. }
  832. #u20045 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 3px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u20045_text {
  840. border-width:0px;
  841. white-space:nowrap;
  842. text-transform:none;
  843. }
  844. #u20046 {
  845. border-width:0px;
  846. position:absolute;
  847. left:0px;
  848. top:140px;
  849. width:84px;
  850. height:20px;
  851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  852. font-weight:400;
  853. font-style:normal;
  854. font-size:14px;
  855. color:#FFFFFF;
  856. }
  857. #u20047_img {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:9px;
  863. height:9px;
  864. }
  865. #u20047 {
  866. border-width:0px;
  867. position:absolute;
  868. left:6px;
  869. top:6px;
  870. width:9px;
  871. height:9px;
  872. display:flex;
  873. }
  874. #u20047 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u20047_img.selected {
  882. }
  883. #u20047.selected {
  884. }
  885. #u20047_text {
  886. border-width:0px;
  887. word-wrap:break-word;
  888. text-transform:none;
  889. visibility:hidden;
  890. }
  891. #u20048_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:62px;
  897. height:20px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 255, 0);
  900. border:none;
  901. border-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. }
  906. #u20048 {
  907. border-width:0px;
  908. position:absolute;
  909. left:22px;
  910. top:0px;
  911. width:62px;
  912. height:20px;
  913. display:flex;
  914. }
  915. #u20048 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 3px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u20048_text {
  923. border-width:0px;
  924. white-space:nowrap;
  925. text-transform:none;
  926. }
  927. #u20046_children {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:0px;
  933. height:0px;
  934. visibility:hidden;
  935. }
  936. #u20049 {
  937. border-width:0px;
  938. position:absolute;
  939. left:20px;
  940. top:20px;
  941. width:84px;
  942. height:20px;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:14px;
  947. color:#FFFFFF;
  948. }
  949. #u20050_div {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:62px;
  955. height:20px;
  956. background:inherit;
  957. background-color:rgba(255, 255, 255, 0);
  958. border:none;
  959. border-radius:0px;
  960. -moz-box-shadow:none;
  961. -webkit-box-shadow:none;
  962. box-shadow:none;
  963. }
  964. #u20050 {
  965. border-width:0px;
  966. position:absolute;
  967. left:22px;
  968. top:0px;
  969. width:62px;
  970. height:20px;
  971. display:flex;
  972. }
  973. #u20050 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 3px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u20050_text {
  981. border-width:0px;
  982. white-space:nowrap;
  983. text-transform:none;
  984. }
  985. #u20051 {
  986. border-width:0px;
  987. position:absolute;
  988. left:20px;
  989. top:40px;
  990. width:84px;
  991. height:20px;
  992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  993. font-weight:400;
  994. font-style:normal;
  995. font-size:14px;
  996. color:#FFFFFF;
  997. }
  998. #u20052_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:62px;
  1004. height:20px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. border:none;
  1008. border-radius:0px;
  1009. -moz-box-shadow:none;
  1010. -webkit-box-shadow:none;
  1011. box-shadow:none;
  1012. }
  1013. #u20052 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:22px;
  1017. top:0px;
  1018. width:62px;
  1019. height:20px;
  1020. display:flex;
  1021. }
  1022. #u20052 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:2px 2px 2px 3px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u20052_text {
  1030. border-width:0px;
  1031. white-space:nowrap;
  1032. text-transform:none;
  1033. }
  1034. #u20053 {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:20px;
  1038. top:60px;
  1039. width:84px;
  1040. height:20px;
  1041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1042. font-weight:400;
  1043. font-style:normal;
  1044. font-size:14px;
  1045. color:#FFFFFF;
  1046. }
  1047. #u20054_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:62px;
  1053. height:20px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. }
  1062. #u20054 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:22px;
  1066. top:0px;
  1067. width:62px;
  1068. height:20px;
  1069. display:flex;
  1070. }
  1071. #u20054 .text {
  1072. position:absolute;
  1073. align-self:center;
  1074. padding:2px 2px 2px 3px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u20054_text {
  1079. border-width:0px;
  1080. white-space:nowrap;
  1081. text-transform:none;
  1082. }
  1083. #u20055 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:20px;
  1087. top:80px;
  1088. width:84px;
  1089. height:20px;
  1090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1091. font-weight:400;
  1092. font-style:normal;
  1093. font-size:14px;
  1094. color:#FFFFFF;
  1095. }
  1096. #u20056_div {
  1097. border-width:0px;
  1098. position:absolute;
  1099. left:0px;
  1100. top:0px;
  1101. width:62px;
  1102. height:20px;
  1103. background:inherit;
  1104. background-color:rgba(255, 255, 255, 0);
  1105. border:none;
  1106. border-radius:0px;
  1107. -moz-box-shadow:none;
  1108. -webkit-box-shadow:none;
  1109. box-shadow:none;
  1110. }
  1111. #u20056 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:22px;
  1115. top:0px;
  1116. width:62px;
  1117. height:20px;
  1118. display:flex;
  1119. }
  1120. #u20056 .text {
  1121. position:absolute;
  1122. align-self:center;
  1123. padding:2px 2px 2px 3px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u20056_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u20057 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:160px;
  1137. width:98px;
  1138. height:20px;
  1139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1140. font-weight:400;
  1141. font-style:normal;
  1142. font-size:14px;
  1143. color:#FFFFFF;
  1144. }
  1145. #u20058_img {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:9px;
  1151. height:9px;
  1152. }
  1153. #u20058 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:6px;
  1157. top:6px;
  1158. width:9px;
  1159. height:9px;
  1160. display:flex;
  1161. }
  1162. #u20058 .text {
  1163. position:absolute;
  1164. align-self:center;
  1165. padding:2px 2px 2px 2px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u20058_img.selected {
  1170. }
  1171. #u20058.selected {
  1172. }
  1173. #u20058_text {
  1174. border-width:0px;
  1175. word-wrap:break-word;
  1176. text-transform:none;
  1177. visibility:hidden;
  1178. }
  1179. #u20059_div {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:0px;
  1183. top:0px;
  1184. width:76px;
  1185. height:20px;
  1186. background:inherit;
  1187. background-color:rgba(255, 255, 255, 0);
  1188. border:none;
  1189. border-radius:0px;
  1190. -moz-box-shadow:none;
  1191. -webkit-box-shadow:none;
  1192. box-shadow:none;
  1193. }
  1194. #u20059 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:22px;
  1198. top:0px;
  1199. width:76px;
  1200. height:20px;
  1201. display:flex;
  1202. }
  1203. #u20059 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:2px 2px 2px 3px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u20059_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u20057_children {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:0px;
  1221. height:0px;
  1222. visibility:hidden;
  1223. }
  1224. #u20060 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:20px;
  1228. top:20px;
  1229. width:98px;
  1230. height:20px;
  1231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. color:#FFFFFF;
  1236. }
  1237. #u20061_div {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:0px;
  1241. top:0px;
  1242. width:76px;
  1243. height:20px;
  1244. background:inherit;
  1245. background-color:rgba(255, 255, 255, 0);
  1246. border:none;
  1247. border-radius:0px;
  1248. -moz-box-shadow:none;
  1249. -webkit-box-shadow:none;
  1250. box-shadow:none;
  1251. }
  1252. #u20061 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:22px;
  1256. top:0px;
  1257. width:76px;
  1258. height:20px;
  1259. display:flex;
  1260. }
  1261. #u20061 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 3px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u20061_text {
  1269. border-width:0px;
  1270. white-space:nowrap;
  1271. text-transform:none;
  1272. }
  1273. #u20062 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:20px;
  1277. top:40px;
  1278. width:98px;
  1279. height:20px;
  1280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1281. font-weight:400;
  1282. font-style:normal;
  1283. font-size:14px;
  1284. color:#FFFFFF;
  1285. }
  1286. #u20063_div {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:76px;
  1292. height:20px;
  1293. background:inherit;
  1294. background-color:rgba(255, 255, 255, 0);
  1295. border:none;
  1296. border-radius:0px;
  1297. -moz-box-shadow:none;
  1298. -webkit-box-shadow:none;
  1299. box-shadow:none;
  1300. }
  1301. #u20063 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:22px;
  1305. top:0px;
  1306. width:76px;
  1307. height:20px;
  1308. display:flex;
  1309. }
  1310. #u20063 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:2px 2px 2px 3px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u20063_text {
  1318. border-width:0px;
  1319. white-space:nowrap;
  1320. text-transform:none;
  1321. }
  1322. #u20064 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:180px;
  1327. width:84px;
  1328. height:20px;
  1329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1330. font-weight:400;
  1331. font-style:normal;
  1332. font-size:14px;
  1333. color:#FFFFFF;
  1334. }
  1335. #u20065_img {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:9px;
  1341. height:9px;
  1342. }
  1343. #u20065 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:6px;
  1347. top:6px;
  1348. width:9px;
  1349. height:9px;
  1350. display:flex;
  1351. }
  1352. #u20065 .text {
  1353. position:absolute;
  1354. align-self:center;
  1355. padding:2px 2px 2px 2px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u20065_img.selected {
  1360. }
  1361. #u20065.selected {
  1362. }
  1363. #u20065_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. visibility:hidden;
  1368. }
  1369. #u20066_div {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:0px;
  1373. top:0px;
  1374. width:62px;
  1375. height:20px;
  1376. background:inherit;
  1377. background-color:rgba(255, 255, 255, 0);
  1378. border:none;
  1379. border-radius:0px;
  1380. -moz-box-shadow:none;
  1381. -webkit-box-shadow:none;
  1382. box-shadow:none;
  1383. }
  1384. #u20066 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:22px;
  1388. top:0px;
  1389. width:62px;
  1390. height:20px;
  1391. display:flex;
  1392. }
  1393. #u20066 .text {
  1394. position:absolute;
  1395. align-self:center;
  1396. padding:2px 2px 2px 3px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u20066_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u20064_children {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:0px;
  1411. height:0px;
  1412. visibility:hidden;
  1413. }
  1414. #u20067 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:20px;
  1418. top:20px;
  1419. width:98px;
  1420. height:20px;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u20068_div {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:76px;
  1433. height:20px;
  1434. background:inherit;
  1435. background-color:rgba(255, 255, 255, 0);
  1436. border:none;
  1437. border-radius:0px;
  1438. -moz-box-shadow:none;
  1439. -webkit-box-shadow:none;
  1440. box-shadow:none;
  1441. }
  1442. #u20068 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:22px;
  1446. top:0px;
  1447. width:76px;
  1448. height:20px;
  1449. display:flex;
  1450. }
  1451. #u20068 .text {
  1452. position:absolute;
  1453. align-self:center;
  1454. padding:2px 2px 2px 3px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u20068_text {
  1459. border-width:0px;
  1460. white-space:nowrap;
  1461. text-transform:none;
  1462. }
  1463. #u20069 {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:20px;
  1467. top:40px;
  1468. width:84px;
  1469. height:20px;
  1470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1471. font-weight:400;
  1472. font-style:normal;
  1473. font-size:14px;
  1474. color:#FFFFFF;
  1475. }
  1476. #u20070_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:62px;
  1482. height:20px;
  1483. background:inherit;
  1484. background-color:rgba(255, 255, 255, 0);
  1485. border:none;
  1486. border-radius:0px;
  1487. -moz-box-shadow:none;
  1488. -webkit-box-shadow:none;
  1489. box-shadow:none;
  1490. }
  1491. #u20070 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:22px;
  1495. top:0px;
  1496. width:62px;
  1497. height:20px;
  1498. display:flex;
  1499. }
  1500. #u20070 .text {
  1501. position:absolute;
  1502. align-self:center;
  1503. padding:2px 2px 2px 3px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u20070_text {
  1508. border-width:0px;
  1509. white-space:nowrap;
  1510. text-transform:none;
  1511. }
  1512. #u20071 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:200px;
  1517. width:84px;
  1518. height:20px;
  1519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1520. font-weight:400;
  1521. font-style:normal;
  1522. font-size:14px;
  1523. color:#FFFFFF;
  1524. }
  1525. #u20072_img {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:9px;
  1531. height:9px;
  1532. }
  1533. #u20072 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:6px;
  1537. top:6px;
  1538. width:9px;
  1539. height:9px;
  1540. display:flex;
  1541. }
  1542. #u20072 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u20072_img.selected {
  1550. }
  1551. #u20072.selected {
  1552. }
  1553. #u20072_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. visibility:hidden;
  1558. }
  1559. #u20073_div {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:62px;
  1565. height:20px;
  1566. background:inherit;
  1567. background-color:rgba(255, 255, 255, 0);
  1568. border:none;
  1569. border-radius:0px;
  1570. -moz-box-shadow:none;
  1571. -webkit-box-shadow:none;
  1572. box-shadow:none;
  1573. }
  1574. #u20073 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:22px;
  1578. top:0px;
  1579. width:62px;
  1580. height:20px;
  1581. display:flex;
  1582. }
  1583. #u20073 .text {
  1584. position:absolute;
  1585. align-self:center;
  1586. padding:2px 2px 2px 3px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u20073_text {
  1591. border-width:0px;
  1592. white-space:nowrap;
  1593. text-transform:none;
  1594. }
  1595. #u20071_children {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:0px;
  1601. height:0px;
  1602. visibility:hidden;
  1603. }
  1604. #u20074 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:20px;
  1608. top:20px;
  1609. width:84px;
  1610. height:20px;
  1611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:14px;
  1615. color:#FFFFFF;
  1616. }
  1617. #u20075_div {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:62px;
  1623. height:20px;
  1624. background:inherit;
  1625. background-color:rgba(255, 255, 255, 0);
  1626. border:none;
  1627. border-radius:0px;
  1628. -moz-box-shadow:none;
  1629. -webkit-box-shadow:none;
  1630. box-shadow:none;
  1631. }
  1632. #u20075 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:22px;
  1636. top:0px;
  1637. width:62px;
  1638. height:20px;
  1639. display:flex;
  1640. }
  1641. #u20075 .text {
  1642. position:absolute;
  1643. align-self:center;
  1644. padding:2px 2px 2px 3px;
  1645. box-sizing:border-box;
  1646. width:100%;
  1647. }
  1648. #u20075_text {
  1649. border-width:0px;
  1650. white-space:nowrap;
  1651. text-transform:none;
  1652. }
  1653. #u20076 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:20px;
  1657. top:40px;
  1658. width:84px;
  1659. height:20px;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:14px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u20077_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:62px;
  1672. height:20px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 0);
  1675. border:none;
  1676. border-radius:0px;
  1677. -moz-box-shadow:none;
  1678. -webkit-box-shadow:none;
  1679. box-shadow:none;
  1680. }
  1681. #u20077 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:22px;
  1685. top:0px;
  1686. width:62px;
  1687. height:20px;
  1688. display:flex;
  1689. }
  1690. #u20077 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 3px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u20077_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u20078 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:20px;
  1706. top:60px;
  1707. width:84px;
  1708. height:20px;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:14px;
  1713. color:#FFFFFF;
  1714. }
  1715. #u20079_div {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:62px;
  1721. height:20px;
  1722. background:inherit;
  1723. background-color:rgba(255, 255, 255, 0);
  1724. border:none;
  1725. border-radius:0px;
  1726. -moz-box-shadow:none;
  1727. -webkit-box-shadow:none;
  1728. box-shadow:none;
  1729. }
  1730. #u20079 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:22px;
  1734. top:0px;
  1735. width:62px;
  1736. height:20px;
  1737. display:flex;
  1738. }
  1739. #u20079 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 3px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u20079_text {
  1747. border-width:0px;
  1748. white-space:nowrap;
  1749. text-transform:none;
  1750. }
  1751. #u20080 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u20081_input {
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:141px;
  1764. height:22px;
  1765. padding:2px 2px 2px 2px;
  1766. font-family:'ArialMT', 'Arial', sans-serif;
  1767. font-weight:400;
  1768. font-style:normal;
  1769. font-size:14px;
  1770. letter-spacing:normal;
  1771. color:#FFFFFF;
  1772. vertical-align:none;
  1773. text-align:left;
  1774. text-transform:none;
  1775. background-color:transparent;
  1776. border-color:transparent;
  1777. }
  1778. #u20081_input.disabled {
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:141px;
  1783. height:22px;
  1784. padding:2px 2px 2px 2px;
  1785. font-family:'ArialMT', 'Arial', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. letter-spacing:normal;
  1790. color:#FFFFFF;
  1791. vertical-align:none;
  1792. text-align:left;
  1793. text-transform:none;
  1794. background-color:transparent;
  1795. border-color:transparent;
  1796. }
  1797. #u20081_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:141px;
  1803. height:22px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 0);
  1806. border:none;
  1807. border-radius:0px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-size:14px;
  1812. color:#FFFFFF;
  1813. }
  1814. #u20081 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:243px;
  1818. top:14px;
  1819. width:141px;
  1820. height:22px;
  1821. display:flex;
  1822. font-size:14px;
  1823. color:#FFFFFF;
  1824. }
  1825. #u20081 .text {
  1826. position:absolute;
  1827. align-self:flex-start;
  1828. padding:2px 2px 2px 2px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u20081_div.disabled {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:141px;
  1838. height:22px;
  1839. background:inherit;
  1840. background-color:rgba(240, 240, 240, 1);
  1841. border:none;
  1842. border-radius:0px;
  1843. -moz-box-shadow:none;
  1844. -webkit-box-shadow:none;
  1845. box-shadow:none;
  1846. font-size:14px;
  1847. color:#FFFFFF;
  1848. }
  1849. #u20081.disabled {
  1850. }
  1851. .u20081_input_option {
  1852. font-size:14px;
  1853. }
  1854. #u20082_img {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:22px;
  1860. height:22px;
  1861. }
  1862. #u20082 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:216px;
  1866. top:15px;
  1867. width:22px;
  1868. height:22px;
  1869. display:flex;
  1870. }
  1871. #u20082 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 2px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u20082_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. visibility:hidden;
  1883. }
  1884. #u20083_div {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:136px;
  1890. height:16px;
  1891. background:inherit;
  1892. background-color:rgba(255, 255, 255, 0);
  1893. border:none;
  1894. border-radius:0px;
  1895. -moz-box-shadow:none;
  1896. -webkit-box-shadow:none;
  1897. box-shadow:none;
  1898. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1899. font-weight:200;
  1900. font-style:normal;
  1901. font-size:11px;
  1902. color:#555555;
  1903. }
  1904. #u20083 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:208px;
  1908. top:53px;
  1909. width:136px;
  1910. height:16px;
  1911. display:flex;
  1912. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1913. font-weight:200;
  1914. font-style:normal;
  1915. font-size:11px;
  1916. color:#555555;
  1917. }
  1918. #u20083 .text {
  1919. position:absolute;
  1920. align-self:flex-start;
  1921. padding:0px 0px 0px 0px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u20083_text {
  1926. border-width:0px;
  1927. white-space:nowrap;
  1928. text-transform:none;
  1929. }
  1930. #u20084_div {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:140px;
  1936. height:24px;
  1937. background:inherit;
  1938. background-color:rgba(242, 242, 242, 0.2);
  1939. border:none;
  1940. border-radius:25px;
  1941. -moz-box-shadow:none;
  1942. -webkit-box-shadow:none;
  1943. box-shadow:none;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. color:#FFFFFF;
  1948. text-align:center;
  1949. }
  1950. #u20084 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:417px;
  1954. top:13px;
  1955. width:140px;
  1956. height:24px;
  1957. display:flex;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. color:#FFFFFF;
  1962. text-align:center;
  1963. }
  1964. #u20084 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:0px 0px 0px 0px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u20084_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u20085_div {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:85px;
  1982. height:20px;
  1983. background:inherit;
  1984. background-color:rgba(30, 42, 68, 1);
  1985. border:none;
  1986. border-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. color:#FFFFFF;
  1994. }
  1995. #u20085 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:1374px;
  1999. top:15px;
  2000. width:85px;
  2001. height:20px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. color:#FFFFFF;
  2007. }
  2008. #u20085 .text {
  2009. position:absolute;
  2010. align-self:flex-start;
  2011. padding:0px 0px 0px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u20085_text {
  2016. border-width:0px;
  2017. white-space:nowrap;
  2018. text-transform:none;
  2019. }
  2020. #u20086_div {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:1381px;
  2026. height:1153px;
  2027. background:inherit;
  2028. background-color:rgba(255, 255, 255, 1);
  2029. border:none;
  2030. border-radius:0px;
  2031. -moz-box-shadow:none;
  2032. -webkit-box-shadow:none;
  2033. box-shadow:none;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:12px;
  2038. color:#FFFFFF;
  2039. text-align:left;
  2040. }
  2041. #u20086 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:208px;
  2045. top:74px;
  2046. width:1381px;
  2047. height:1153px;
  2048. display:flex;
  2049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2050. font-weight:400;
  2051. font-style:normal;
  2052. font-size:12px;
  2053. color:#FFFFFF;
  2054. text-align:left;
  2055. }
  2056. #u20086 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 50px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u20086_text {
  2064. border-width:0px;
  2065. word-wrap:break-word;
  2066. text-transform:none;
  2067. visibility:hidden;
  2068. }
  2069. #u20087 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:0px;
  2075. height:0px;
  2076. }
  2077. #u20089 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:0px;
  2083. height:0px;
  2084. }
  2085. #u20090_div {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:129px;
  2091. height:22px;
  2092. background:inherit;
  2093. background-color:rgba(255, 255, 255, 0);
  2094. border:none;
  2095. border-radius:0px;
  2096. -moz-box-shadow:none;
  2097. -webkit-box-shadow:none;
  2098. box-shadow:none;
  2099. font-size:16px;
  2100. color:#FFFFFF;
  2101. }
  2102. #u20090 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:49px;
  2106. top:14px;
  2107. width:129px;
  2108. height:22px;
  2109. display:flex;
  2110. font-size:16px;
  2111. color:#FFFFFF;
  2112. }
  2113. #u20090 .text {
  2114. position:absolute;
  2115. align-self:flex-start;
  2116. padding:0px 0px 0px 0px;
  2117. box-sizing:border-box;
  2118. width:100%;
  2119. }
  2120. #u20090_text {
  2121. border-width:0px;
  2122. white-space:nowrap;
  2123. text-transform:none;
  2124. }
  2125. #u20091_div {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:1600px;
  2131. height:50px;
  2132. background:inherit;
  2133. background-color:rgba(30, 42, 68, 1);
  2134. border:none;
  2135. border-radius:0px;
  2136. -moz-box-shadow:none;
  2137. -webkit-box-shadow:none;
  2138. box-shadow:none;
  2139. color:#AFB3B6;
  2140. }
  2141. #u20091 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:1600px;
  2147. height:50px;
  2148. display:flex;
  2149. color:#AFB3B6;
  2150. }
  2151. #u20091 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:2px 2px 2px 2px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u20091_text {
  2159. border-width:0px;
  2160. word-wrap:break-word;
  2161. text-transform:none;
  2162. visibility:hidden;
  2163. }
  2164. #u20092 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:0px;
  2170. height:0px;
  2171. }
  2172. #u20093_img {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:31px;
  2178. height:31px;
  2179. }
  2180. #u20093 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:19px;
  2184. top:10px;
  2185. width:31px;
  2186. height:31px;
  2187. display:flex;
  2188. }
  2189. #u20093 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:2px 2px 2px 2px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u20093_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. }
  2201. #u20094_div {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:129px;
  2207. height:22px;
  2208. background:inherit;
  2209. background-color:rgba(255, 255, 255, 0);
  2210. border:none;
  2211. border-radius:0px;
  2212. -moz-box-shadow:none;
  2213. -webkit-box-shadow:none;
  2214. box-shadow:none;
  2215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2216. font-weight:400;
  2217. font-style:normal;
  2218. font-size:16px;
  2219. color:#FFFFFF;
  2220. }
  2221. #u20094 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:62px;
  2225. top:14px;
  2226. width:129px;
  2227. height:22px;
  2228. display:flex;
  2229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2230. font-weight:400;
  2231. font-style:normal;
  2232. font-size:16px;
  2233. color:#FFFFFF;
  2234. }
  2235. #u20094 .text {
  2236. position:absolute;
  2237. align-self:flex-start;
  2238. padding:0px 0px 0px 0px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u20094_text {
  2243. border-width:0px;
  2244. white-space:nowrap;
  2245. text-transform:none;
  2246. }
  2247. #u20095_div {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:200px;
  2253. height:1200px;
  2254. background:inherit;
  2255. background-color:rgba(30, 42, 68, 1);
  2256. border:none;
  2257. border-radius:0px;
  2258. -moz-box-shadow:none;
  2259. -webkit-box-shadow:none;
  2260. box-shadow:none;
  2261. color:#AFB3B6;
  2262. }
  2263. #u20095 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:47px;
  2268. width:200px;
  2269. height:1200px;
  2270. display:flex;
  2271. color:#AFB3B6;
  2272. }
  2273. #u20095 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 2px 2px 2px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u20095_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. visibility:hidden;
  2285. }
  2286. #u20096_img {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:15px;
  2292. height:15px;
  2293. }
  2294. #u20096 {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:1523px;
  2298. top:18px;
  2299. width:15px;
  2300. height:15px;
  2301. display:flex;
  2302. }
  2303. #u20096 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 2px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u20096_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. visibility:hidden;
  2315. }
  2316. #u20097_img {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:15px;
  2322. height:15px;
  2323. }
  2324. #u20097 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:1493px;
  2328. top:18px;
  2329. width:15px;
  2330. height:15px;
  2331. display:flex;
  2332. }
  2333. #u20097 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:2px 2px 2px 2px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u20097_text {
  2341. border-width:0px;
  2342. word-wrap:break-word;
  2343. text-transform:none;
  2344. visibility:hidden;
  2345. }
  2346. #u20098 {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:0px;
  2352. height:0px;
  2353. }
  2354. #u20099_img {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:14px;
  2360. height:14px;
  2361. }
  2362. #u20099 {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:1553px;
  2366. top:18px;
  2367. width:14px;
  2368. height:14px;
  2369. display:flex;
  2370. }
  2371. #u20099 .text {
  2372. position:absolute;
  2373. align-self:center;
  2374. padding:2px 2px 2px 2px;
  2375. box-sizing:border-box;
  2376. width:100%;
  2377. }
  2378. #u20099_text {
  2379. border-width:0px;
  2380. word-wrap:break-word;
  2381. text-transform:none;
  2382. visibility:hidden;
  2383. }
  2384. #u20100_img {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:8px;
  2390. height:5px;
  2391. }
  2392. #u20100 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:1572px;
  2396. top:23px;
  2397. width:8px;
  2398. height:5px;
  2399. display:flex;
  2400. }
  2401. #u20100 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 2px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u20100_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. visibility:hidden;
  2413. }
  2414. #u20101_div {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:1402px;
  2420. height:1200px;
  2421. background:inherit;
  2422. background-color:rgba(242, 242, 242, 1);
  2423. border:none;
  2424. border-radius:0px;
  2425. -moz-box-shadow:none;
  2426. -webkit-box-shadow:none;
  2427. box-shadow:none;
  2428. }
  2429. #u20101 {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:198px;
  2433. top:47px;
  2434. width:1402px;
  2435. height:1200px;
  2436. display:flex;
  2437. }
  2438. #u20101 .text {
  2439. position:absolute;
  2440. align-self:center;
  2441. padding:2px 2px 2px 2px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u20101_text {
  2446. border-width:0px;
  2447. word-wrap:break-word;
  2448. text-transform:none;
  2449. visibility:hidden;
  2450. }
  2451. #u20102 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:35px;
  2455. top:81px;
  2456. width:118px;
  2457. height:220px;
  2458. }
  2459. #u20102_children {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:0px;
  2465. height:0px;
  2466. }
  2467. #u20103 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:98px;
  2473. height:20px;
  2474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2475. font-weight:400;
  2476. font-style:normal;
  2477. font-size:14px;
  2478. color:#FFFFFF;
  2479. }
  2480. #u20104_div {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:76px;
  2486. height:20px;
  2487. background:inherit;
  2488. background-color:rgba(255, 255, 255, 0);
  2489. border:none;
  2490. border-radius:0px;
  2491. -moz-box-shadow:none;
  2492. -webkit-box-shadow:none;
  2493. box-shadow:none;
  2494. }
  2495. #u20104 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:22px;
  2499. top:0px;
  2500. width:76px;
  2501. height:20px;
  2502. display:flex;
  2503. }
  2504. #u20104 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 3px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u20104_text {
  2512. border-width:0px;
  2513. white-space:nowrap;
  2514. text-transform:none;
  2515. }
  2516. #u20105 {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:20px;
  2521. width:84px;
  2522. height:20px;
  2523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2524. font-weight:400;
  2525. font-style:normal;
  2526. font-size:14px;
  2527. color:#FFFFFF;
  2528. }
  2529. #u20106_img {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:9px;
  2535. height:9px;
  2536. }
  2537. #u20106 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:6px;
  2541. top:6px;
  2542. width:9px;
  2543. height:9px;
  2544. display:flex;
  2545. }
  2546. #u20106 .text {
  2547. position:absolute;
  2548. align-self:center;
  2549. padding:2px 2px 2px 2px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u20106_img.selected {
  2554. }
  2555. #u20106.selected {
  2556. }
  2557. #u20106_text {
  2558. border-width:0px;
  2559. word-wrap:break-word;
  2560. text-transform:none;
  2561. visibility:hidden;
  2562. }
  2563. #u20107_div {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:62px;
  2569. height:20px;
  2570. background:inherit;
  2571. background-color:rgba(255, 255, 255, 0);
  2572. border:none;
  2573. border-radius:0px;
  2574. -moz-box-shadow:none;
  2575. -webkit-box-shadow:none;
  2576. box-shadow:none;
  2577. }
  2578. #u20107 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:22px;
  2582. top:0px;
  2583. width:62px;
  2584. height:20px;
  2585. display:flex;
  2586. }
  2587. #u20107 .text {
  2588. position:absolute;
  2589. align-self:center;
  2590. padding:2px 2px 2px 3px;
  2591. box-sizing:border-box;
  2592. width:100%;
  2593. }
  2594. #u20107_text {
  2595. border-width:0px;
  2596. white-space:nowrap;
  2597. text-transform:none;
  2598. }
  2599. #u20105_children {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:0px;
  2603. top:0px;
  2604. width:0px;
  2605. height:0px;
  2606. }
  2607. #u20108 {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:20px;
  2611. top:20px;
  2612. width:98px;
  2613. height:20px;
  2614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2615. font-weight:400;
  2616. font-style:normal;
  2617. font-size:14px;
  2618. color:#FFFFFF;
  2619. }
  2620. #u20109_div {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:76px;
  2626. height:20px;
  2627. background:inherit;
  2628. background-color:rgba(255, 255, 255, 0);
  2629. border:none;
  2630. border-radius:0px;
  2631. -moz-box-shadow:none;
  2632. -webkit-box-shadow:none;
  2633. box-shadow:none;
  2634. }
  2635. #u20109 {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:22px;
  2639. top:0px;
  2640. width:76px;
  2641. height:20px;
  2642. display:flex;
  2643. }
  2644. #u20109 .text {
  2645. position:absolute;
  2646. align-self:center;
  2647. padding:2px 2px 2px 3px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u20109_text {
  2652. border-width:0px;
  2653. white-space:nowrap;
  2654. text-transform:none;
  2655. }
  2656. #u20110 {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:20px;
  2660. top:40px;
  2661. width:98px;
  2662. height:20px;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:14px;
  2667. color:#FFFFFF;
  2668. }
  2669. #u20111_div {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:0px;
  2673. top:0px;
  2674. width:76px;
  2675. height:20px;
  2676. background:inherit;
  2677. background-color:rgba(255, 255, 255, 0);
  2678. border:none;
  2679. border-radius:0px;
  2680. -moz-box-shadow:none;
  2681. -webkit-box-shadow:none;
  2682. box-shadow:none;
  2683. }
  2684. #u20111 {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:22px;
  2688. top:0px;
  2689. width:76px;
  2690. height:20px;
  2691. display:flex;
  2692. }
  2693. #u20111 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 3px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u20111_text {
  2701. border-width:0px;
  2702. white-space:nowrap;
  2703. text-transform:none;
  2704. }
  2705. #u20112 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:80px;
  2710. width:84px;
  2711. height:20px;
  2712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2713. font-weight:400;
  2714. font-style:normal;
  2715. font-size:14px;
  2716. color:#FFFFFF;
  2717. }
  2718. #u20113_img {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:9px;
  2724. height:9px;
  2725. }
  2726. #u20113 {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:6px;
  2730. top:6px;
  2731. width:9px;
  2732. height:9px;
  2733. display:flex;
  2734. }
  2735. #u20113 .text {
  2736. position:absolute;
  2737. align-self:center;
  2738. padding:2px 2px 2px 2px;
  2739. box-sizing:border-box;
  2740. width:100%;
  2741. }
  2742. #u20113_img.selected {
  2743. }
  2744. #u20113.selected {
  2745. }
  2746. #u20113_text {
  2747. border-width:0px;
  2748. word-wrap:break-word;
  2749. text-transform:none;
  2750. visibility:hidden;
  2751. }
  2752. #u20114_div {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:62px;
  2758. height:20px;
  2759. background:inherit;
  2760. background-color:rgba(255, 255, 255, 0);
  2761. border:none;
  2762. border-radius:0px;
  2763. -moz-box-shadow:none;
  2764. -webkit-box-shadow:none;
  2765. box-shadow:none;
  2766. }
  2767. #u20114 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:22px;
  2771. top:0px;
  2772. width:62px;
  2773. height:20px;
  2774. display:flex;
  2775. }
  2776. #u20114 .text {
  2777. position:absolute;
  2778. align-self:center;
  2779. padding:2px 2px 2px 3px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u20114_text {
  2784. border-width:0px;
  2785. white-space:nowrap;
  2786. text-transform:none;
  2787. }
  2788. #u20112_children {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:0px;
  2794. height:0px;
  2795. }
  2796. #u20115 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:20px;
  2800. top:20px;
  2801. width:98px;
  2802. height:20px;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:14px;
  2807. color:#FFFFFF;
  2808. }
  2809. #u20116_div {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:76px;
  2815. height:20px;
  2816. background:inherit;
  2817. background-color:rgba(255, 255, 255, 0);
  2818. border:none;
  2819. border-radius:0px;
  2820. -moz-box-shadow:none;
  2821. -webkit-box-shadow:none;
  2822. box-shadow:none;
  2823. }
  2824. #u20116 {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:22px;
  2828. top:0px;
  2829. width:76px;
  2830. height:20px;
  2831. display:flex;
  2832. }
  2833. #u20116 .text {
  2834. position:absolute;
  2835. align-self:center;
  2836. padding:2px 2px 2px 3px;
  2837. box-sizing:border-box;
  2838. width:100%;
  2839. }
  2840. #u20116_text {
  2841. border-width:0px;
  2842. white-space:nowrap;
  2843. text-transform:none;
  2844. }
  2845. #u20117 {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:20px;
  2849. top:40px;
  2850. width:98px;
  2851. height:20px;
  2852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2853. font-weight:400;
  2854. font-style:normal;
  2855. font-size:14px;
  2856. color:#FFFFFF;
  2857. }
  2858. #u20118_div {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:76px;
  2864. height:20px;
  2865. background:inherit;
  2866. background-color:rgba(255, 255, 255, 0);
  2867. border:none;
  2868. border-radius:0px;
  2869. -moz-box-shadow:none;
  2870. -webkit-box-shadow:none;
  2871. box-shadow:none;
  2872. }
  2873. #u20118 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:22px;
  2877. top:0px;
  2878. width:76px;
  2879. height:20px;
  2880. display:flex;
  2881. }
  2882. #u20118 .text {
  2883. position:absolute;
  2884. align-self:center;
  2885. padding:2px 2px 2px 3px;
  2886. box-sizing:border-box;
  2887. width:100%;
  2888. }
  2889. #u20118_text {
  2890. border-width:0px;
  2891. white-space:nowrap;
  2892. text-transform:none;
  2893. }
  2894. #u20119 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:140px;
  2899. width:84px;
  2900. height:20px;
  2901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2902. font-weight:400;
  2903. font-style:normal;
  2904. font-size:14px;
  2905. color:#FFFFFF;
  2906. }
  2907. #u20120_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:9px;
  2913. height:9px;
  2914. }
  2915. #u20120 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:6px;
  2919. top:6px;
  2920. width:9px;
  2921. height:9px;
  2922. display:flex;
  2923. }
  2924. #u20120 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 2px 2px 2px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u20120_img.selected {
  2932. }
  2933. #u20120.selected {
  2934. }
  2935. #u20120_text {
  2936. border-width:0px;
  2937. word-wrap:break-word;
  2938. text-transform:none;
  2939. visibility:hidden;
  2940. }
  2941. #u20121_div {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:62px;
  2947. height:20px;
  2948. background:inherit;
  2949. background-color:rgba(255, 255, 255, 0);
  2950. border:none;
  2951. border-radius:0px;
  2952. -moz-box-shadow:none;
  2953. -webkit-box-shadow:none;
  2954. box-shadow:none;
  2955. }
  2956. #u20121 {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:22px;
  2960. top:0px;
  2961. width:62px;
  2962. height:20px;
  2963. display:flex;
  2964. }
  2965. #u20121 .text {
  2966. position:absolute;
  2967. align-self:center;
  2968. padding:2px 2px 2px 3px;
  2969. box-sizing:border-box;
  2970. width:100%;
  2971. }
  2972. #u20121_text {
  2973. border-width:0px;
  2974. white-space:nowrap;
  2975. text-transform:none;
  2976. }
  2977. #u20119_children {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:0px;
  2981. top:0px;
  2982. width:0px;
  2983. height:0px;
  2984. visibility:hidden;
  2985. }
  2986. #u20122 {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:20px;
  2990. top:20px;
  2991. width:84px;
  2992. height:20px;
  2993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2994. font-weight:400;
  2995. font-style:normal;
  2996. font-size:14px;
  2997. color:#FFFFFF;
  2998. }
  2999. #u20123_div {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:62px;
  3005. height:20px;
  3006. background:inherit;
  3007. background-color:rgba(255, 255, 255, 0);
  3008. border:none;
  3009. border-radius:0px;
  3010. -moz-box-shadow:none;
  3011. -webkit-box-shadow:none;
  3012. box-shadow:none;
  3013. }
  3014. #u20123 {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:22px;
  3018. top:0px;
  3019. width:62px;
  3020. height:20px;
  3021. display:flex;
  3022. }
  3023. #u20123 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 3px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u20123_text {
  3031. border-width:0px;
  3032. white-space:nowrap;
  3033. text-transform:none;
  3034. }
  3035. #u20124 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:20px;
  3039. top:40px;
  3040. width:84px;
  3041. height:20px;
  3042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:14px;
  3046. color:#FFFFFF;
  3047. }
  3048. #u20125_div {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:62px;
  3054. height:20px;
  3055. background:inherit;
  3056. background-color:rgba(255, 255, 255, 0);
  3057. border:none;
  3058. border-radius:0px;
  3059. -moz-box-shadow:none;
  3060. -webkit-box-shadow:none;
  3061. box-shadow:none;
  3062. }
  3063. #u20125 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:22px;
  3067. top:0px;
  3068. width:62px;
  3069. height:20px;
  3070. display:flex;
  3071. }
  3072. #u20125 .text {
  3073. position:absolute;
  3074. align-self:center;
  3075. padding:2px 2px 2px 3px;
  3076. box-sizing:border-box;
  3077. width:100%;
  3078. }
  3079. #u20125_text {
  3080. border-width:0px;
  3081. white-space:nowrap;
  3082. text-transform:none;
  3083. }
  3084. #u20126 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:20px;
  3088. top:60px;
  3089. width:84px;
  3090. height:20px;
  3091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3092. font-weight:400;
  3093. font-style:normal;
  3094. font-size:14px;
  3095. color:#FFFFFF;
  3096. }
  3097. #u20127_div {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:62px;
  3103. height:20px;
  3104. background:inherit;
  3105. background-color:rgba(255, 255, 255, 0);
  3106. border:none;
  3107. border-radius:0px;
  3108. -moz-box-shadow:none;
  3109. -webkit-box-shadow:none;
  3110. box-shadow:none;
  3111. }
  3112. #u20127 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:22px;
  3116. top:0px;
  3117. width:62px;
  3118. height:20px;
  3119. display:flex;
  3120. }
  3121. #u20127 .text {
  3122. position:absolute;
  3123. align-self:center;
  3124. padding:2px 2px 2px 3px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u20127_text {
  3129. border-width:0px;
  3130. white-space:nowrap;
  3131. text-transform:none;
  3132. }
  3133. #u20128 {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:20px;
  3137. top:80px;
  3138. width:84px;
  3139. height:20px;
  3140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3141. font-weight:400;
  3142. font-style:normal;
  3143. font-size:14px;
  3144. color:#FFFFFF;
  3145. }
  3146. #u20129_div {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:0px;
  3151. width:62px;
  3152. height:20px;
  3153. background:inherit;
  3154. background-color:rgba(255, 255, 255, 0);
  3155. border:none;
  3156. border-radius:0px;
  3157. -moz-box-shadow:none;
  3158. -webkit-box-shadow:none;
  3159. box-shadow:none;
  3160. }
  3161. #u20129 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:22px;
  3165. top:0px;
  3166. width:62px;
  3167. height:20px;
  3168. display:flex;
  3169. }
  3170. #u20129 .text {
  3171. position:absolute;
  3172. align-self:center;
  3173. padding:2px 2px 2px 3px;
  3174. box-sizing:border-box;
  3175. width:100%;
  3176. }
  3177. #u20129_text {
  3178. border-width:0px;
  3179. white-space:nowrap;
  3180. text-transform:none;
  3181. }
  3182. #u20130 {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:160px;
  3187. width:98px;
  3188. height:20px;
  3189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:14px;
  3193. color:#FFFFFF;
  3194. }
  3195. #u20131_img {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:9px;
  3201. height:9px;
  3202. }
  3203. #u20131 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:6px;
  3207. top:6px;
  3208. width:9px;
  3209. height:9px;
  3210. display:flex;
  3211. }
  3212. #u20131 .text {
  3213. position:absolute;
  3214. align-self:center;
  3215. padding:2px 2px 2px 2px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u20131_img.selected {
  3220. }
  3221. #u20131.selected {
  3222. }
  3223. #u20131_text {
  3224. border-width:0px;
  3225. word-wrap:break-word;
  3226. text-transform:none;
  3227. visibility:hidden;
  3228. }
  3229. #u20132_div {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:0px;
  3233. top:0px;
  3234. width:76px;
  3235. height:20px;
  3236. background:inherit;
  3237. background-color:rgba(255, 255, 255, 0);
  3238. border:none;
  3239. border-radius:0px;
  3240. -moz-box-shadow:none;
  3241. -webkit-box-shadow:none;
  3242. box-shadow:none;
  3243. }
  3244. #u20132 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:22px;
  3248. top:0px;
  3249. width:76px;
  3250. height:20px;
  3251. display:flex;
  3252. }
  3253. #u20132 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 3px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u20132_text {
  3261. border-width:0px;
  3262. white-space:nowrap;
  3263. text-transform:none;
  3264. }
  3265. #u20130_children {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:0px;
  3271. height:0px;
  3272. visibility:hidden;
  3273. }
  3274. #u20133 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:20px;
  3278. top:20px;
  3279. width:98px;
  3280. height:20px;
  3281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3282. font-weight:400;
  3283. font-style:normal;
  3284. font-size:14px;
  3285. color:#FFFFFF;
  3286. }
  3287. #u20134_div {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:76px;
  3293. height:20px;
  3294. background:inherit;
  3295. background-color:rgba(255, 255, 255, 0);
  3296. border:none;
  3297. border-radius:0px;
  3298. -moz-box-shadow:none;
  3299. -webkit-box-shadow:none;
  3300. box-shadow:none;
  3301. }
  3302. #u20134 {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:22px;
  3306. top:0px;
  3307. width:76px;
  3308. height:20px;
  3309. display:flex;
  3310. }
  3311. #u20134 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:2px 2px 2px 3px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u20134_text {
  3319. border-width:0px;
  3320. white-space:nowrap;
  3321. text-transform:none;
  3322. }
  3323. #u20135 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:20px;
  3327. top:40px;
  3328. width:98px;
  3329. height:20px;
  3330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3331. font-weight:400;
  3332. font-style:normal;
  3333. font-size:14px;
  3334. color:#FFFFFF;
  3335. }
  3336. #u20136_div {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:76px;
  3342. height:20px;
  3343. background:inherit;
  3344. background-color:rgba(255, 255, 255, 0);
  3345. border:none;
  3346. border-radius:0px;
  3347. -moz-box-shadow:none;
  3348. -webkit-box-shadow:none;
  3349. box-shadow:none;
  3350. }
  3351. #u20136 {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:22px;
  3355. top:0px;
  3356. width:76px;
  3357. height:20px;
  3358. display:flex;
  3359. }
  3360. #u20136 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 3px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u20136_text {
  3368. border-width:0px;
  3369. white-space:nowrap;
  3370. text-transform:none;
  3371. }
  3372. #u20137 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:180px;
  3377. width:84px;
  3378. height:20px;
  3379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. font-size:14px;
  3383. color:#FFFFFF;
  3384. }
  3385. #u20138_img {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:9px;
  3391. height:9px;
  3392. }
  3393. #u20138 {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:6px;
  3397. top:6px;
  3398. width:9px;
  3399. height:9px;
  3400. display:flex;
  3401. }
  3402. #u20138 .text {
  3403. position:absolute;
  3404. align-self:center;
  3405. padding:2px 2px 2px 2px;
  3406. box-sizing:border-box;
  3407. width:100%;
  3408. }
  3409. #u20138_img.selected {
  3410. }
  3411. #u20138.selected {
  3412. }
  3413. #u20138_text {
  3414. border-width:0px;
  3415. word-wrap:break-word;
  3416. text-transform:none;
  3417. visibility:hidden;
  3418. }
  3419. #u20139_div {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:62px;
  3425. height:20px;
  3426. background:inherit;
  3427. background-color:rgba(255, 255, 255, 0);
  3428. border:none;
  3429. border-radius:0px;
  3430. -moz-box-shadow:none;
  3431. -webkit-box-shadow:none;
  3432. box-shadow:none;
  3433. }
  3434. #u20139 {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:22px;
  3438. top:0px;
  3439. width:62px;
  3440. height:20px;
  3441. display:flex;
  3442. }
  3443. #u20139 .text {
  3444. position:absolute;
  3445. align-self:center;
  3446. padding:2px 2px 2px 3px;
  3447. box-sizing:border-box;
  3448. width:100%;
  3449. }
  3450. #u20139_text {
  3451. border-width:0px;
  3452. white-space:nowrap;
  3453. text-transform:none;
  3454. }
  3455. #u20137_children {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:0px;
  3461. height:0px;
  3462. visibility:hidden;
  3463. }
  3464. #u20140 {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:20px;
  3468. top:20px;
  3469. width:98px;
  3470. height:20px;
  3471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. font-size:14px;
  3475. color:#FFFFFF;
  3476. }
  3477. #u20141_div {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:76px;
  3483. height:20px;
  3484. background:inherit;
  3485. background-color:rgba(255, 255, 255, 0);
  3486. border:none;
  3487. border-radius:0px;
  3488. -moz-box-shadow:none;
  3489. -webkit-box-shadow:none;
  3490. box-shadow:none;
  3491. }
  3492. #u20141 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:22px;
  3496. top:0px;
  3497. width:76px;
  3498. height:20px;
  3499. display:flex;
  3500. }
  3501. #u20141 .text {
  3502. position:absolute;
  3503. align-self:center;
  3504. padding:2px 2px 2px 3px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u20141_text {
  3509. border-width:0px;
  3510. white-space:nowrap;
  3511. text-transform:none;
  3512. }
  3513. #u20142 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:20px;
  3517. top:40px;
  3518. width:84px;
  3519. height:20px;
  3520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3521. font-weight:400;
  3522. font-style:normal;
  3523. font-size:14px;
  3524. color:#FFFFFF;
  3525. }
  3526. #u20143_div {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:62px;
  3532. height:20px;
  3533. background:inherit;
  3534. background-color:rgba(255, 255, 255, 0);
  3535. border:none;
  3536. border-radius:0px;
  3537. -moz-box-shadow:none;
  3538. -webkit-box-shadow:none;
  3539. box-shadow:none;
  3540. }
  3541. #u20143 {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:22px;
  3545. top:0px;
  3546. width:62px;
  3547. height:20px;
  3548. display:flex;
  3549. }
  3550. #u20143 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 2px 2px 3px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u20143_text {
  3558. border-width:0px;
  3559. white-space:nowrap;
  3560. text-transform:none;
  3561. }
  3562. #u20144 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:200px;
  3567. width:84px;
  3568. height:20px;
  3569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3570. font-weight:400;
  3571. font-style:normal;
  3572. font-size:14px;
  3573. color:#FFFFFF;
  3574. }
  3575. #u20145_img {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:9px;
  3581. height:9px;
  3582. }
  3583. #u20145 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:6px;
  3587. top:6px;
  3588. width:9px;
  3589. height:9px;
  3590. display:flex;
  3591. }
  3592. #u20145 .text {
  3593. position:absolute;
  3594. align-self:center;
  3595. padding:2px 2px 2px 2px;
  3596. box-sizing:border-box;
  3597. width:100%;
  3598. }
  3599. #u20145_img.selected {
  3600. }
  3601. #u20145.selected {
  3602. }
  3603. #u20145_text {
  3604. border-width:0px;
  3605. word-wrap:break-word;
  3606. text-transform:none;
  3607. visibility:hidden;
  3608. }
  3609. #u20146_div {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:62px;
  3615. height:20px;
  3616. background:inherit;
  3617. background-color:rgba(255, 255, 255, 0);
  3618. border:none;
  3619. border-radius:0px;
  3620. -moz-box-shadow:none;
  3621. -webkit-box-shadow:none;
  3622. box-shadow:none;
  3623. }
  3624. #u20146 {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:22px;
  3628. top:0px;
  3629. width:62px;
  3630. height:20px;
  3631. display:flex;
  3632. }
  3633. #u20146 .text {
  3634. position:absolute;
  3635. align-self:center;
  3636. padding:2px 2px 2px 3px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u20146_text {
  3641. border-width:0px;
  3642. white-space:nowrap;
  3643. text-transform:none;
  3644. }
  3645. #u20144_children {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:0px;
  3651. height:0px;
  3652. visibility:hidden;
  3653. }
  3654. #u20147 {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:20px;
  3658. top:20px;
  3659. width:84px;
  3660. height:20px;
  3661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. font-size:14px;
  3665. color:#FFFFFF;
  3666. }
  3667. #u20148_div {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:0px;
  3671. top:0px;
  3672. width:62px;
  3673. height:20px;
  3674. background:inherit;
  3675. background-color:rgba(255, 255, 255, 0);
  3676. border:none;
  3677. border-radius:0px;
  3678. -moz-box-shadow:none;
  3679. -webkit-box-shadow:none;
  3680. box-shadow:none;
  3681. }
  3682. #u20148 {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:22px;
  3686. top:0px;
  3687. width:62px;
  3688. height:20px;
  3689. display:flex;
  3690. }
  3691. #u20148 .text {
  3692. position:absolute;
  3693. align-self:center;
  3694. padding:2px 2px 2px 3px;
  3695. box-sizing:border-box;
  3696. width:100%;
  3697. }
  3698. #u20148_text {
  3699. border-width:0px;
  3700. white-space:nowrap;
  3701. text-transform:none;
  3702. }
  3703. #u20149 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:20px;
  3707. top:40px;
  3708. width:84px;
  3709. height:20px;
  3710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3711. font-weight:400;
  3712. font-style:normal;
  3713. font-size:14px;
  3714. color:#FFFFFF;
  3715. }
  3716. #u20150_div {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:62px;
  3722. height:20px;
  3723. background:inherit;
  3724. background-color:rgba(255, 255, 255, 0);
  3725. border:none;
  3726. border-radius:0px;
  3727. -moz-box-shadow:none;
  3728. -webkit-box-shadow:none;
  3729. box-shadow:none;
  3730. }
  3731. #u20150 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:22px;
  3735. top:0px;
  3736. width:62px;
  3737. height:20px;
  3738. display:flex;
  3739. }
  3740. #u20150 .text {
  3741. position:absolute;
  3742. align-self:center;
  3743. padding:2px 2px 2px 3px;
  3744. box-sizing:border-box;
  3745. width:100%;
  3746. }
  3747. #u20150_text {
  3748. border-width:0px;
  3749. white-space:nowrap;
  3750. text-transform:none;
  3751. }
  3752. #u20151 {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:20px;
  3756. top:60px;
  3757. width:84px;
  3758. height:20px;
  3759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3760. font-weight:400;
  3761. font-style:normal;
  3762. font-size:14px;
  3763. color:#FFFFFF;
  3764. }
  3765. #u20152_div {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:0px;
  3769. top:0px;
  3770. width:62px;
  3771. height:20px;
  3772. background:inherit;
  3773. background-color:rgba(255, 255, 255, 0);
  3774. border:none;
  3775. border-radius:0px;
  3776. -moz-box-shadow:none;
  3777. -webkit-box-shadow:none;
  3778. box-shadow:none;
  3779. }
  3780. #u20152 {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:22px;
  3784. top:0px;
  3785. width:62px;
  3786. height:20px;
  3787. display:flex;
  3788. }
  3789. #u20152 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 2px 2px 3px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u20152_text {
  3797. border-width:0px;
  3798. white-space:nowrap;
  3799. text-transform:none;
  3800. }
  3801. #u20153 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:0px;
  3807. height:0px;
  3808. }
  3809. #u20154_input {
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:141px;
  3814. height:22px;
  3815. padding:2px 2px 2px 2px;
  3816. font-family:'ArialMT', 'Arial', sans-serif;
  3817. font-weight:400;
  3818. font-style:normal;
  3819. font-size:14px;
  3820. letter-spacing:normal;
  3821. color:#FFFFFF;
  3822. vertical-align:none;
  3823. text-align:left;
  3824. text-transform:none;
  3825. background-color:transparent;
  3826. border-color:transparent;
  3827. }
  3828. #u20154_input.disabled {
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:141px;
  3833. height:22px;
  3834. padding:2px 2px 2px 2px;
  3835. font-family:'ArialMT', 'Arial', sans-serif;
  3836. font-weight:400;
  3837. font-style:normal;
  3838. font-size:14px;
  3839. letter-spacing:normal;
  3840. color:#FFFFFF;
  3841. vertical-align:none;
  3842. text-align:left;
  3843. text-transform:none;
  3844. background-color:transparent;
  3845. border-color:transparent;
  3846. }
  3847. #u20154_div {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:141px;
  3853. height:22px;
  3854. background:inherit;
  3855. background-color:rgba(255, 255, 255, 0);
  3856. border:none;
  3857. border-radius:0px;
  3858. -moz-box-shadow:none;
  3859. -webkit-box-shadow:none;
  3860. box-shadow:none;
  3861. font-size:14px;
  3862. color:#FFFFFF;
  3863. }
  3864. #u20154 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:243px;
  3868. top:14px;
  3869. width:141px;
  3870. height:22px;
  3871. display:flex;
  3872. font-size:14px;
  3873. color:#FFFFFF;
  3874. }
  3875. #u20154 .text {
  3876. position:absolute;
  3877. align-self:flex-start;
  3878. padding:2px 2px 2px 2px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u20154_div.disabled {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:141px;
  3888. height:22px;
  3889. background:inherit;
  3890. background-color:rgba(240, 240, 240, 1);
  3891. border:none;
  3892. border-radius:0px;
  3893. -moz-box-shadow:none;
  3894. -webkit-box-shadow:none;
  3895. box-shadow:none;
  3896. font-size:14px;
  3897. color:#FFFFFF;
  3898. }
  3899. #u20154.disabled {
  3900. }
  3901. .u20154_input_option {
  3902. font-size:14px;
  3903. }
  3904. #u20155_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:22px;
  3910. height:22px;
  3911. }
  3912. #u20155 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:216px;
  3916. top:15px;
  3917. width:22px;
  3918. height:22px;
  3919. display:flex;
  3920. }
  3921. #u20155 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:2px 2px 2px 2px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u20155_text {
  3929. border-width:0px;
  3930. word-wrap:break-word;
  3931. text-transform:none;
  3932. visibility:hidden;
  3933. }
  3934. #u20156_div {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:136px;
  3940. height:16px;
  3941. background:inherit;
  3942. background-color:rgba(255, 255, 255, 0);
  3943. border:none;
  3944. border-radius:0px;
  3945. -moz-box-shadow:none;
  3946. -webkit-box-shadow:none;
  3947. box-shadow:none;
  3948. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  3949. font-weight:200;
  3950. font-style:normal;
  3951. font-size:11px;
  3952. color:#555555;
  3953. }
  3954. #u20156 {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:208px;
  3958. top:53px;
  3959. width:136px;
  3960. height:16px;
  3961. display:flex;
  3962. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  3963. font-weight:200;
  3964. font-style:normal;
  3965. font-size:11px;
  3966. color:#555555;
  3967. }
  3968. #u20156 .text {
  3969. position:absolute;
  3970. align-self:flex-start;
  3971. padding:0px 0px 0px 0px;
  3972. box-sizing:border-box;
  3973. width:100%;
  3974. }
  3975. #u20156_text {
  3976. border-width:0px;
  3977. white-space:nowrap;
  3978. text-transform:none;
  3979. }
  3980. #u20157_div {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:140px;
  3986. height:24px;
  3987. background:inherit;
  3988. background-color:rgba(242, 242, 242, 0.2);
  3989. border:none;
  3990. border-radius:25px;
  3991. -moz-box-shadow:none;
  3992. -webkit-box-shadow:none;
  3993. box-shadow:none;
  3994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3995. font-weight:400;
  3996. font-style:normal;
  3997. color:#FFFFFF;
  3998. text-align:center;
  3999. }
  4000. #u20157 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:417px;
  4004. top:13px;
  4005. width:140px;
  4006. height:24px;
  4007. display:flex;
  4008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4009. font-weight:400;
  4010. font-style:normal;
  4011. color:#FFFFFF;
  4012. text-align:center;
  4013. }
  4014. #u20157 .text {
  4015. position:absolute;
  4016. align-self:center;
  4017. padding:0px 0px 0px 0px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u20157_text {
  4022. border-width:0px;
  4023. word-wrap:break-word;
  4024. text-transform:none;
  4025. }
  4026. #u20158_div {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:85px;
  4032. height:20px;
  4033. background:inherit;
  4034. background-color:rgba(30, 42, 68, 1);
  4035. border:none;
  4036. border-radius:0px;
  4037. -moz-box-shadow:none;
  4038. -webkit-box-shadow:none;
  4039. box-shadow:none;
  4040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. color:#FFFFFF;
  4044. }
  4045. #u20158 {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:1374px;
  4049. top:15px;
  4050. width:85px;
  4051. height:20px;
  4052. display:flex;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. color:#FFFFFF;
  4057. }
  4058. #u20158 .text {
  4059. position:absolute;
  4060. align-self:flex-start;
  4061. padding:0px 0px 0px 0px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u20158_text {
  4066. border-width:0px;
  4067. white-space:nowrap;
  4068. text-transform:none;
  4069. }
  4070. #u20159_div {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:1381px;
  4076. height:1168px;
  4077. background:inherit;
  4078. background-color:rgba(255, 255, 255, 1);
  4079. border:none;
  4080. border-radius:0px;
  4081. -moz-box-shadow:none;
  4082. -webkit-box-shadow:none;
  4083. box-shadow:none;
  4084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4085. font-weight:400;
  4086. font-style:normal;
  4087. font-size:12px;
  4088. color:#FFFFFF;
  4089. text-align:left;
  4090. }
  4091. #u20159 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:208px;
  4095. top:74px;
  4096. width:1381px;
  4097. height:1168px;
  4098. display:flex;
  4099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4100. font-weight:400;
  4101. font-style:normal;
  4102. font-size:12px;
  4103. color:#FFFFFF;
  4104. text-align:left;
  4105. }
  4106. #u20159 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:2px 2px 2px 50px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u20159_text {
  4114. border-width:0px;
  4115. word-wrap:break-word;
  4116. text-transform:none;
  4117. visibility:hidden;
  4118. }
  4119. #u20160_div {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:0px;
  4123. top:0px;
  4124. width:37px;
  4125. height:50px;
  4126. background:inherit;
  4127. background-color:rgba(255, 255, 255, 0);
  4128. box-sizing:border-box;
  4129. border-width:3px;
  4130. border-style:solid;
  4131. border-color:rgba(24, 144, 255, 1);
  4132. border-left:0px;
  4133. border-top:0px;
  4134. border-right:0px;
  4135. border-radius:0px;
  4136. border-bottom-right-radius:0px;
  4137. border-bottom-left-radius:0px;
  4138. -moz-box-shadow:none;
  4139. -webkit-box-shadow:none;
  4140. box-shadow:none;
  4141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:18px;
  4145. color:#1890FF;
  4146. }
  4147. #u20160 {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:227px;
  4151. top:74px;
  4152. width:37px;
  4153. height:50px;
  4154. display:flex;
  4155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4156. font-weight:400;
  4157. font-style:normal;
  4158. font-size:18px;
  4159. color:#1890FF;
  4160. }
  4161. #u20160 .text {
  4162. position:absolute;
  4163. align-self:center;
  4164. padding:0px 0px 0px 0px;
  4165. box-sizing:border-box;
  4166. width:100%;
  4167. }
  4168. #u20160_text {
  4169. border-width:0px;
  4170. white-space:nowrap;
  4171. text-transform:none;
  4172. }
  4173. #u20161 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:228px;
  4177. top:313px;
  4178. width:1340px;
  4179. height:322px;
  4180. }
  4181. #u20162_img {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:0px;
  4185. top:0px;
  4186. width:113px;
  4187. height:38px;
  4188. }
  4189. #u20162 {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:113px;
  4195. height:38px;
  4196. display:flex;
  4197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4198. font-weight:400;
  4199. font-style:normal;
  4200. font-size:12px;
  4201. color:#FFFFFF;
  4202. }
  4203. #u20162 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 2px 2px 0px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u20162_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. }
  4215. #u20163_img {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:113px;
  4221. height:38px;
  4222. }
  4223. #u20163 {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:113px;
  4227. top:0px;
  4228. width:113px;
  4229. height:38px;
  4230. display:flex;
  4231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4232. font-weight:400;
  4233. font-style:normal;
  4234. font-size:12px;
  4235. color:#FFFFFF;
  4236. }
  4237. #u20163 .text {
  4238. position:absolute;
  4239. align-self:center;
  4240. padding:2px 2px 2px 0px;
  4241. box-sizing:border-box;
  4242. width:100%;
  4243. }
  4244. #u20163_text {
  4245. border-width:0px;
  4246. word-wrap:break-word;
  4247. text-transform:none;
  4248. }
  4249. #u20164_img {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:0px;
  4253. top:0px;
  4254. width:113px;
  4255. height:38px;
  4256. }
  4257. #u20164 {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:226px;
  4261. top:0px;
  4262. width:113px;
  4263. height:38px;
  4264. display:flex;
  4265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4266. font-weight:400;
  4267. font-style:normal;
  4268. font-size:12px;
  4269. color:#FFFFFF;
  4270. }
  4271. #u20164 .text {
  4272. position:absolute;
  4273. align-self:center;
  4274. padding:2px 2px 2px 0px;
  4275. box-sizing:border-box;
  4276. width:100%;
  4277. }
  4278. #u20164_text {
  4279. border-width:0px;
  4280. word-wrap:break-word;
  4281. text-transform:none;
  4282. }
  4283. #u20165_img {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:0px;
  4287. top:0px;
  4288. width:113px;
  4289. height:38px;
  4290. }
  4291. #u20165 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:339px;
  4295. top:0px;
  4296. width:113px;
  4297. height:38px;
  4298. display:flex;
  4299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4300. font-weight:400;
  4301. font-style:normal;
  4302. font-size:12px;
  4303. color:#FFFFFF;
  4304. }
  4305. #u20165 .text {
  4306. position:absolute;
  4307. align-self:center;
  4308. padding:2px 2px 2px 0px;
  4309. box-sizing:border-box;
  4310. width:100%;
  4311. }
  4312. #u20165_text {
  4313. border-width:0px;
  4314. word-wrap:break-word;
  4315. text-transform:none;
  4316. }
  4317. #u20166_img {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:0px;
  4321. top:0px;
  4322. width:135px;
  4323. height:38px;
  4324. }
  4325. #u20166 {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:452px;
  4329. top:0px;
  4330. width:135px;
  4331. height:38px;
  4332. display:flex;
  4333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4334. font-weight:400;
  4335. font-style:normal;
  4336. font-size:12px;
  4337. color:#FFFFFF;
  4338. }
  4339. #u20166 .text {
  4340. position:absolute;
  4341. align-self:center;
  4342. padding:2px 2px 2px 0px;
  4343. box-sizing:border-box;
  4344. width:100%;
  4345. }
  4346. #u20166_text {
  4347. border-width:0px;
  4348. word-wrap:break-word;
  4349. text-transform:none;
  4350. }
  4351. #u20167_img {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:0px;
  4355. top:0px;
  4356. width:135px;
  4357. height:38px;
  4358. }
  4359. #u20167 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:587px;
  4363. top:0px;
  4364. width:135px;
  4365. height:38px;
  4366. display:flex;
  4367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4368. font-weight:400;
  4369. font-style:normal;
  4370. font-size:12px;
  4371. color:#FFFFFF;
  4372. }
  4373. #u20167 .text {
  4374. position:absolute;
  4375. align-self:center;
  4376. padding:2px 2px 2px 0px;
  4377. box-sizing:border-box;
  4378. width:100%;
  4379. }
  4380. #u20167_text {
  4381. border-width:0px;
  4382. word-wrap:break-word;
  4383. text-transform:none;
  4384. }
  4385. #u20168_img {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:131px;
  4391. height:38px;
  4392. }
  4393. #u20168 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:722px;
  4397. top:0px;
  4398. width:131px;
  4399. height:38px;
  4400. display:flex;
  4401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4402. font-weight:400;
  4403. font-style:normal;
  4404. font-size:12px;
  4405. color:#FFFFFF;
  4406. }
  4407. #u20168 .text {
  4408. position:absolute;
  4409. align-self:center;
  4410. padding:2px 2px 2px 0px;
  4411. box-sizing:border-box;
  4412. width:100%;
  4413. }
  4414. #u20168_text {
  4415. border-width:0px;
  4416. word-wrap:break-word;
  4417. text-transform:none;
  4418. }
  4419. #u20169_img {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:0px;
  4423. top:0px;
  4424. width:113px;
  4425. height:38px;
  4426. }
  4427. #u20169 {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:853px;
  4431. top:0px;
  4432. width:113px;
  4433. height:38px;
  4434. display:flex;
  4435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4436. font-weight:400;
  4437. font-style:normal;
  4438. font-size:12px;
  4439. color:#FFFFFF;
  4440. }
  4441. #u20169 .text {
  4442. position:absolute;
  4443. align-self:center;
  4444. padding:2px 2px 2px 0px;
  4445. box-sizing:border-box;
  4446. width:100%;
  4447. }
  4448. #u20169_text {
  4449. border-width:0px;
  4450. word-wrap:break-word;
  4451. text-transform:none;
  4452. }
  4453. #u20170_img {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:0px;
  4457. top:0px;
  4458. width:149px;
  4459. height:38px;
  4460. }
  4461. #u20170 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:966px;
  4465. top:0px;
  4466. width:149px;
  4467. height:38px;
  4468. display:flex;
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. font-size:12px;
  4473. color:#FFFFFF;
  4474. }
  4475. #u20170 .text {
  4476. position:absolute;
  4477. align-self:center;
  4478. padding:2px 2px 2px 0px;
  4479. box-sizing:border-box;
  4480. width:100%;
  4481. }
  4482. #u20170_text {
  4483. border-width:0px;
  4484. word-wrap:break-word;
  4485. text-transform:none;
  4486. }
  4487. #u20171_img {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:130px;
  4493. height:38px;
  4494. }
  4495. #u20171 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:1115px;
  4499. top:0px;
  4500. width:130px;
  4501. height:38px;
  4502. display:flex;
  4503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4504. font-weight:400;
  4505. font-style:normal;
  4506. font-size:12px;
  4507. color:#FFFFFF;
  4508. }
  4509. #u20171 .text {
  4510. position:absolute;
  4511. align-self:center;
  4512. padding:2px 2px 2px 0px;
  4513. box-sizing:border-box;
  4514. width:100%;
  4515. }
  4516. #u20171_text {
  4517. border-width:0px;
  4518. word-wrap:break-word;
  4519. text-transform:none;
  4520. }
  4521. #u20172_img {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:95px;
  4527. height:38px;
  4528. }
  4529. #u20172 {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:1245px;
  4533. top:0px;
  4534. width:95px;
  4535. height:38px;
  4536. display:flex;
  4537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4538. font-weight:400;
  4539. font-style:normal;
  4540. font-size:12px;
  4541. color:#FFFFFF;
  4542. }
  4543. #u20172 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:2px 2px 2px 0px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u20172_text {
  4551. border-width:0px;
  4552. word-wrap:break-word;
  4553. text-transform:none;
  4554. }
  4555. #u20173_img {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:113px;
  4561. height:38px;
  4562. }
  4563. #u20173 {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:0px;
  4567. top:38px;
  4568. width:113px;
  4569. height:38px;
  4570. display:flex;
  4571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4572. font-weight:400;
  4573. font-style:normal;
  4574. font-size:12px;
  4575. color:#333333;
  4576. }
  4577. #u20173 .text {
  4578. position:absolute;
  4579. align-self:center;
  4580. padding:2px 2px 2px 0px;
  4581. box-sizing:border-box;
  4582. width:100%;
  4583. }
  4584. #u20173_text {
  4585. border-width:0px;
  4586. word-wrap:break-word;
  4587. text-transform:none;
  4588. visibility:hidden;
  4589. }
  4590. #u20174_img {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:0px;
  4594. top:0px;
  4595. width:113px;
  4596. height:38px;
  4597. }
  4598. #u20174 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:113px;
  4602. top:38px;
  4603. width:113px;
  4604. height:38px;
  4605. display:flex;
  4606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4607. font-weight:400;
  4608. font-style:normal;
  4609. font-size:12px;
  4610. color:#333333;
  4611. }
  4612. #u20174 .text {
  4613. position:absolute;
  4614. align-self:center;
  4615. padding:2px 2px 2px 0px;
  4616. box-sizing:border-box;
  4617. width:100%;
  4618. }
  4619. #u20174_text {
  4620. border-width:0px;
  4621. word-wrap:break-word;
  4622. text-transform:none;
  4623. visibility:hidden;
  4624. }
  4625. #u20175_img {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:113px;
  4631. height:38px;
  4632. }
  4633. #u20175 {
  4634. border-width:0px;
  4635. position:absolute;
  4636. left:226px;
  4637. top:38px;
  4638. width:113px;
  4639. height:38px;
  4640. display:flex;
  4641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4642. font-weight:400;
  4643. font-style:normal;
  4644. font-size:12px;
  4645. color:#333333;
  4646. }
  4647. #u20175 .text {
  4648. position:absolute;
  4649. align-self:center;
  4650. padding:2px 2px 2px 0px;
  4651. box-sizing:border-box;
  4652. width:100%;
  4653. }
  4654. #u20175_text {
  4655. border-width:0px;
  4656. word-wrap:break-word;
  4657. text-transform:none;
  4658. visibility:hidden;
  4659. }
  4660. #u20176_img {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:0px;
  4664. top:0px;
  4665. width:113px;
  4666. height:38px;
  4667. }
  4668. #u20176 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:339px;
  4672. top:38px;
  4673. width:113px;
  4674. height:38px;
  4675. display:flex;
  4676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4677. font-weight:400;
  4678. font-style:normal;
  4679. font-size:12px;
  4680. color:#333333;
  4681. }
  4682. #u20176 .text {
  4683. position:absolute;
  4684. align-self:center;
  4685. padding:2px 2px 2px 0px;
  4686. box-sizing:border-box;
  4687. width:100%;
  4688. }
  4689. #u20176_text {
  4690. border-width:0px;
  4691. word-wrap:break-word;
  4692. text-transform:none;
  4693. visibility:hidden;
  4694. }
  4695. #u20177_img {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:135px;
  4701. height:38px;
  4702. }
  4703. #u20177 {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:452px;
  4707. top:38px;
  4708. width:135px;
  4709. height:38px;
  4710. display:flex;
  4711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4712. font-weight:400;
  4713. font-style:normal;
  4714. font-size:12px;
  4715. color:#333333;
  4716. }
  4717. #u20177 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:2px 2px 2px 0px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u20177_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. visibility:hidden;
  4729. }
  4730. #u20178_img {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:135px;
  4736. height:38px;
  4737. }
  4738. #u20178 {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:587px;
  4742. top:38px;
  4743. width:135px;
  4744. height:38px;
  4745. display:flex;
  4746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4747. font-weight:400;
  4748. font-style:normal;
  4749. font-size:12px;
  4750. color:#333333;
  4751. }
  4752. #u20178 .text {
  4753. position:absolute;
  4754. align-self:center;
  4755. padding:2px 2px 2px 0px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u20178_text {
  4760. border-width:0px;
  4761. word-wrap:break-word;
  4762. text-transform:none;
  4763. visibility:hidden;
  4764. }
  4765. #u20179_img {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:0px;
  4769. top:0px;
  4770. width:131px;
  4771. height:38px;
  4772. }
  4773. #u20179 {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:722px;
  4777. top:38px;
  4778. width:131px;
  4779. height:38px;
  4780. display:flex;
  4781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4782. font-weight:400;
  4783. font-style:normal;
  4784. font-size:12px;
  4785. color:#333333;
  4786. }
  4787. #u20179 .text {
  4788. position:absolute;
  4789. align-self:center;
  4790. padding:2px 2px 2px 0px;
  4791. box-sizing:border-box;
  4792. width:100%;
  4793. }
  4794. #u20179_text {
  4795. border-width:0px;
  4796. word-wrap:break-word;
  4797. text-transform:none;
  4798. visibility:hidden;
  4799. }
  4800. #u20180_img {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:0px;
  4804. top:0px;
  4805. width:113px;
  4806. height:38px;
  4807. }
  4808. #u20180 {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:853px;
  4812. top:38px;
  4813. width:113px;
  4814. height:38px;
  4815. display:flex;
  4816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4817. font-weight:400;
  4818. font-style:normal;
  4819. font-size:12px;
  4820. color:#333333;
  4821. }
  4822. #u20180 .text {
  4823. position:absolute;
  4824. align-self:center;
  4825. padding:2px 2px 2px 0px;
  4826. box-sizing:border-box;
  4827. width:100%;
  4828. }
  4829. #u20180_text {
  4830. border-width:0px;
  4831. word-wrap:break-word;
  4832. text-transform:none;
  4833. visibility:hidden;
  4834. }
  4835. #u20181_img {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:0px;
  4839. top:0px;
  4840. width:149px;
  4841. height:38px;
  4842. }
  4843. #u20181 {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:966px;
  4847. top:38px;
  4848. width:149px;
  4849. height:38px;
  4850. display:flex;
  4851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4852. font-weight:400;
  4853. font-style:normal;
  4854. font-size:12px;
  4855. color:#333333;
  4856. }
  4857. #u20181 .text {
  4858. position:absolute;
  4859. align-self:center;
  4860. padding:2px 2px 2px 0px;
  4861. box-sizing:border-box;
  4862. width:100%;
  4863. }
  4864. #u20181_text {
  4865. border-width:0px;
  4866. word-wrap:break-word;
  4867. text-transform:none;
  4868. visibility:hidden;
  4869. }
  4870. #u20182_img {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:0px;
  4874. top:0px;
  4875. width:130px;
  4876. height:38px;
  4877. }
  4878. #u20182 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:1115px;
  4882. top:38px;
  4883. width:130px;
  4884. height:38px;
  4885. display:flex;
  4886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4887. font-weight:400;
  4888. font-style:normal;
  4889. font-size:12px;
  4890. color:#333333;
  4891. }
  4892. #u20182 .text {
  4893. position:absolute;
  4894. align-self:center;
  4895. padding:2px 2px 2px 0px;
  4896. box-sizing:border-box;
  4897. width:100%;
  4898. }
  4899. #u20182_text {
  4900. border-width:0px;
  4901. word-wrap:break-word;
  4902. text-transform:none;
  4903. visibility:hidden;
  4904. }
  4905. #u20183_img {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:0px;
  4909. top:0px;
  4910. width:95px;
  4911. height:38px;
  4912. }
  4913. #u20183 {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:1245px;
  4917. top:38px;
  4918. width:95px;
  4919. height:38px;
  4920. display:flex;
  4921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4922. font-weight:400;
  4923. font-style:normal;
  4924. font-size:12px;
  4925. }
  4926. #u20183 .text {
  4927. position:absolute;
  4928. align-self:center;
  4929. padding:2px 2px 2px 0px;
  4930. box-sizing:border-box;
  4931. width:100%;
  4932. }
  4933. #u20183_text {
  4934. border-width:0px;
  4935. word-wrap:break-word;
  4936. text-transform:none;
  4937. }
  4938. #u20184_img {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:0px;
  4942. top:0px;
  4943. width:113px;
  4944. height:38px;
  4945. }
  4946. #u20184 {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:76px;
  4951. width:113px;
  4952. height:38px;
  4953. display:flex;
  4954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4955. font-weight:400;
  4956. font-style:normal;
  4957. font-size:12px;
  4958. color:#333333;
  4959. }
  4960. #u20184 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:2px 2px 2px 0px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u20184_text {
  4968. border-width:0px;
  4969. word-wrap:break-word;
  4970. text-transform:none;
  4971. visibility:hidden;
  4972. }
  4973. #u20185_img {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:0px;
  4977. top:0px;
  4978. width:113px;
  4979. height:38px;
  4980. }
  4981. #u20185 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:113px;
  4985. top:76px;
  4986. width:113px;
  4987. height:38px;
  4988. display:flex;
  4989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:12px;
  4993. color:#333333;
  4994. }
  4995. #u20185 .text {
  4996. position:absolute;
  4997. align-self:center;
  4998. padding:2px 2px 2px 0px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u20185_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. visibility:hidden;
  5007. }
  5008. #u20186_img {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:113px;
  5014. height:38px;
  5015. }
  5016. #u20186 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:226px;
  5020. top:76px;
  5021. width:113px;
  5022. height:38px;
  5023. display:flex;
  5024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5025. font-weight:400;
  5026. font-style:normal;
  5027. font-size:12px;
  5028. color:#333333;
  5029. }
  5030. #u20186 .text {
  5031. position:absolute;
  5032. align-self:center;
  5033. padding:2px 2px 2px 0px;
  5034. box-sizing:border-box;
  5035. width:100%;
  5036. }
  5037. #u20186_text {
  5038. border-width:0px;
  5039. word-wrap:break-word;
  5040. text-transform:none;
  5041. visibility:hidden;
  5042. }
  5043. #u20187_img {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:0px;
  5047. top:0px;
  5048. width:113px;
  5049. height:38px;
  5050. }
  5051. #u20187 {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:339px;
  5055. top:76px;
  5056. width:113px;
  5057. height:38px;
  5058. display:flex;
  5059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5060. font-weight:400;
  5061. font-style:normal;
  5062. font-size:12px;
  5063. color:#333333;
  5064. }
  5065. #u20187 .text {
  5066. position:absolute;
  5067. align-self:center;
  5068. padding:2px 2px 2px 0px;
  5069. box-sizing:border-box;
  5070. width:100%;
  5071. }
  5072. #u20187_text {
  5073. border-width:0px;
  5074. word-wrap:break-word;
  5075. text-transform:none;
  5076. visibility:hidden;
  5077. }
  5078. #u20188_img {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:135px;
  5084. height:38px;
  5085. }
  5086. #u20188 {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:452px;
  5090. top:76px;
  5091. width:135px;
  5092. height:38px;
  5093. display:flex;
  5094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5095. font-weight:400;
  5096. font-style:normal;
  5097. font-size:12px;
  5098. color:#333333;
  5099. }
  5100. #u20188 .text {
  5101. position:absolute;
  5102. align-self:center;
  5103. padding:2px 2px 2px 0px;
  5104. box-sizing:border-box;
  5105. width:100%;
  5106. }
  5107. #u20188_text {
  5108. border-width:0px;
  5109. word-wrap:break-word;
  5110. text-transform:none;
  5111. visibility:hidden;
  5112. }
  5113. #u20189_img {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:135px;
  5119. height:38px;
  5120. }
  5121. #u20189 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:587px;
  5125. top:76px;
  5126. width:135px;
  5127. height:38px;
  5128. display:flex;
  5129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. font-size:12px;
  5133. color:#333333;
  5134. }
  5135. #u20189 .text {
  5136. position:absolute;
  5137. align-self:center;
  5138. padding:2px 2px 2px 0px;
  5139. box-sizing:border-box;
  5140. width:100%;
  5141. }
  5142. #u20189_text {
  5143. border-width:0px;
  5144. word-wrap:break-word;
  5145. text-transform:none;
  5146. visibility:hidden;
  5147. }
  5148. #u20190_img {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:0px;
  5152. top:0px;
  5153. width:131px;
  5154. height:38px;
  5155. }
  5156. #u20190 {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:722px;
  5160. top:76px;
  5161. width:131px;
  5162. height:38px;
  5163. display:flex;
  5164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5165. font-weight:400;
  5166. font-style:normal;
  5167. font-size:12px;
  5168. color:#333333;
  5169. }
  5170. #u20190 .text {
  5171. position:absolute;
  5172. align-self:center;
  5173. padding:2px 2px 2px 0px;
  5174. box-sizing:border-box;
  5175. width:100%;
  5176. }
  5177. #u20190_text {
  5178. border-width:0px;
  5179. word-wrap:break-word;
  5180. text-transform:none;
  5181. visibility:hidden;
  5182. }
  5183. #u20191_img {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:113px;
  5189. height:38px;
  5190. }
  5191. #u20191 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:853px;
  5195. top:76px;
  5196. width:113px;
  5197. height:38px;
  5198. display:flex;
  5199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5200. font-weight:400;
  5201. font-style:normal;
  5202. font-size:12px;
  5203. color:#333333;
  5204. }
  5205. #u20191 .text {
  5206. position:absolute;
  5207. align-self:center;
  5208. padding:2px 2px 2px 0px;
  5209. box-sizing:border-box;
  5210. width:100%;
  5211. }
  5212. #u20191_text {
  5213. border-width:0px;
  5214. word-wrap:break-word;
  5215. text-transform:none;
  5216. visibility:hidden;
  5217. }
  5218. #u20192_img {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:0px;
  5222. top:0px;
  5223. width:149px;
  5224. height:38px;
  5225. }
  5226. #u20192 {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:966px;
  5230. top:76px;
  5231. width:149px;
  5232. height:38px;
  5233. display:flex;
  5234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5235. font-weight:400;
  5236. font-style:normal;
  5237. font-size:12px;
  5238. color:#333333;
  5239. }
  5240. #u20192 .text {
  5241. position:absolute;
  5242. align-self:center;
  5243. padding:2px 2px 2px 0px;
  5244. box-sizing:border-box;
  5245. width:100%;
  5246. }
  5247. #u20192_text {
  5248. border-width:0px;
  5249. word-wrap:break-word;
  5250. text-transform:none;
  5251. visibility:hidden;
  5252. }
  5253. #u20193_img {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:0px;
  5257. top:0px;
  5258. width:130px;
  5259. height:38px;
  5260. }
  5261. #u20193 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:1115px;
  5265. top:76px;
  5266. width:130px;
  5267. height:38px;
  5268. display:flex;
  5269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5270. font-weight:400;
  5271. font-style:normal;
  5272. font-size:12px;
  5273. color:#333333;
  5274. }
  5275. #u20193 .text {
  5276. position:absolute;
  5277. align-self:center;
  5278. padding:2px 2px 2px 0px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u20193_text {
  5283. border-width:0px;
  5284. word-wrap:break-word;
  5285. text-transform:none;
  5286. visibility:hidden;
  5287. }
  5288. #u20194_img {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:0px;
  5292. top:0px;
  5293. width:95px;
  5294. height:38px;
  5295. }
  5296. #u20194 {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:1245px;
  5300. top:76px;
  5301. width:95px;
  5302. height:38px;
  5303. display:flex;
  5304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5305. font-weight:400;
  5306. font-style:normal;
  5307. font-size:12px;
  5308. color:#0089FE;
  5309. }
  5310. #u20194 .text {
  5311. position:absolute;
  5312. align-self:center;
  5313. padding:2px 2px 2px 0px;
  5314. box-sizing:border-box;
  5315. width:100%;
  5316. }
  5317. #u20194_text {
  5318. border-width:0px;
  5319. word-wrap:break-word;
  5320. text-transform:none;
  5321. visibility:hidden;
  5322. }
  5323. #u20195_img {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:113px;
  5329. height:38px;
  5330. }
  5331. #u20195 {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:0px;
  5335. top:114px;
  5336. width:113px;
  5337. height:38px;
  5338. display:flex;
  5339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5340. font-weight:400;
  5341. font-style:normal;
  5342. font-size:12px;
  5343. color:#333333;
  5344. }
  5345. #u20195 .text {
  5346. position:absolute;
  5347. align-self:center;
  5348. padding:2px 2px 2px 0px;
  5349. box-sizing:border-box;
  5350. width:100%;
  5351. }
  5352. #u20195_text {
  5353. border-width:0px;
  5354. word-wrap:break-word;
  5355. text-transform:none;
  5356. visibility:hidden;
  5357. }
  5358. #u20196_img {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:113px;
  5364. height:38px;
  5365. }
  5366. #u20196 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:113px;
  5370. top:114px;
  5371. width:113px;
  5372. height:38px;
  5373. display:flex;
  5374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5375. font-weight:400;
  5376. font-style:normal;
  5377. font-size:12px;
  5378. color:#333333;
  5379. }
  5380. #u20196 .text {
  5381. position:absolute;
  5382. align-self:center;
  5383. padding:2px 2px 2px 0px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u20196_text {
  5388. border-width:0px;
  5389. word-wrap:break-word;
  5390. text-transform:none;
  5391. visibility:hidden;
  5392. }
  5393. #u20197_img {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:0px;
  5397. top:0px;
  5398. width:113px;
  5399. height:38px;
  5400. }
  5401. #u20197 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:226px;
  5405. top:114px;
  5406. width:113px;
  5407. height:38px;
  5408. display:flex;
  5409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. font-size:12px;
  5413. color:#333333;
  5414. }
  5415. #u20197 .text {
  5416. position:absolute;
  5417. align-self:center;
  5418. padding:2px 2px 2px 0px;
  5419. box-sizing:border-box;
  5420. width:100%;
  5421. }
  5422. #u20197_text {
  5423. border-width:0px;
  5424. word-wrap:break-word;
  5425. text-transform:none;
  5426. visibility:hidden;
  5427. }
  5428. #u20198_img {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:113px;
  5434. height:38px;
  5435. }
  5436. #u20198 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:339px;
  5440. top:114px;
  5441. width:113px;
  5442. height:38px;
  5443. display:flex;
  5444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. font-size:12px;
  5448. color:#333333;
  5449. }
  5450. #u20198 .text {
  5451. position:absolute;
  5452. align-self:center;
  5453. padding:2px 2px 2px 0px;
  5454. box-sizing:border-box;
  5455. width:100%;
  5456. }
  5457. #u20198_text {
  5458. border-width:0px;
  5459. word-wrap:break-word;
  5460. text-transform:none;
  5461. visibility:hidden;
  5462. }
  5463. #u20199_img {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:135px;
  5469. height:38px;
  5470. }
  5471. #u20199 {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:452px;
  5475. top:114px;
  5476. width:135px;
  5477. height:38px;
  5478. display:flex;
  5479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5480. font-weight:400;
  5481. font-style:normal;
  5482. font-size:12px;
  5483. color:#333333;
  5484. }
  5485. #u20199 .text {
  5486. position:absolute;
  5487. align-self:center;
  5488. padding:2px 2px 2px 0px;
  5489. box-sizing:border-box;
  5490. width:100%;
  5491. }
  5492. #u20199_text {
  5493. border-width:0px;
  5494. word-wrap:break-word;
  5495. text-transform:none;
  5496. visibility:hidden;
  5497. }
  5498. #u20200_img {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:0px;
  5502. top:0px;
  5503. width:135px;
  5504. height:38px;
  5505. }
  5506. #u20200 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:587px;
  5510. top:114px;
  5511. width:135px;
  5512. height:38px;
  5513. display:flex;
  5514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:12px;
  5518. color:#333333;
  5519. }
  5520. #u20200 .text {
  5521. position:absolute;
  5522. align-self:center;
  5523. padding:2px 2px 2px 0px;
  5524. box-sizing:border-box;
  5525. width:100%;
  5526. }
  5527. #u20200_text {
  5528. border-width:0px;
  5529. word-wrap:break-word;
  5530. text-transform:none;
  5531. visibility:hidden;
  5532. }
  5533. #u20201_img {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:131px;
  5539. height:38px;
  5540. }
  5541. #u20201 {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:722px;
  5545. top:114px;
  5546. width:131px;
  5547. height:38px;
  5548. display:flex;
  5549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5550. font-weight:400;
  5551. font-style:normal;
  5552. font-size:12px;
  5553. color:#333333;
  5554. }
  5555. #u20201 .text {
  5556. position:absolute;
  5557. align-self:center;
  5558. padding:2px 2px 2px 0px;
  5559. box-sizing:border-box;
  5560. width:100%;
  5561. }
  5562. #u20201_text {
  5563. border-width:0px;
  5564. word-wrap:break-word;
  5565. text-transform:none;
  5566. visibility:hidden;
  5567. }
  5568. #u20202_img {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:113px;
  5574. height:38px;
  5575. }
  5576. #u20202 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:853px;
  5580. top:114px;
  5581. width:113px;
  5582. height:38px;
  5583. display:flex;
  5584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:12px;
  5588. color:#333333;
  5589. }
  5590. #u20202 .text {
  5591. position:absolute;
  5592. align-self:center;
  5593. padding:2px 2px 2px 0px;
  5594. box-sizing:border-box;
  5595. width:100%;
  5596. }
  5597. #u20202_text {
  5598. border-width:0px;
  5599. word-wrap:break-word;
  5600. text-transform:none;
  5601. visibility:hidden;
  5602. }
  5603. #u20203_img {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:149px;
  5609. height:38px;
  5610. }
  5611. #u20203 {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:966px;
  5615. top:114px;
  5616. width:149px;
  5617. height:38px;
  5618. display:flex;
  5619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5620. font-weight:400;
  5621. font-style:normal;
  5622. font-size:12px;
  5623. color:#333333;
  5624. }
  5625. #u20203 .text {
  5626. position:absolute;
  5627. align-self:center;
  5628. padding:2px 2px 2px 0px;
  5629. box-sizing:border-box;
  5630. width:100%;
  5631. }
  5632. #u20203_text {
  5633. border-width:0px;
  5634. word-wrap:break-word;
  5635. text-transform:none;
  5636. visibility:hidden;
  5637. }
  5638. #u20204_img {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:130px;
  5644. height:38px;
  5645. }
  5646. #u20204 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:1115px;
  5650. top:114px;
  5651. width:130px;
  5652. height:38px;
  5653. display:flex;
  5654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:12px;
  5658. color:#333333;
  5659. }
  5660. #u20204 .text {
  5661. position:absolute;
  5662. align-self:center;
  5663. padding:2px 2px 2px 0px;
  5664. box-sizing:border-box;
  5665. width:100%;
  5666. }
  5667. #u20204_text {
  5668. border-width:0px;
  5669. word-wrap:break-word;
  5670. text-transform:none;
  5671. visibility:hidden;
  5672. }
  5673. #u20205_img {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:95px;
  5679. height:38px;
  5680. }
  5681. #u20205 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:1245px;
  5685. top:114px;
  5686. width:95px;
  5687. height:38px;
  5688. display:flex;
  5689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5690. font-weight:400;
  5691. font-style:normal;
  5692. font-size:12px;
  5693. color:#0089FE;
  5694. }
  5695. #u20205 .text {
  5696. position:absolute;
  5697. align-self:center;
  5698. padding:2px 2px 2px 0px;
  5699. box-sizing:border-box;
  5700. width:100%;
  5701. }
  5702. #u20205_text {
  5703. border-width:0px;
  5704. word-wrap:break-word;
  5705. text-transform:none;
  5706. visibility:hidden;
  5707. }
  5708. #u20206_img {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:113px;
  5714. height:38px;
  5715. }
  5716. #u20206 {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:0px;
  5720. top:152px;
  5721. width:113px;
  5722. height:38px;
  5723. display:flex;
  5724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. font-size:12px;
  5728. color:#333333;
  5729. }
  5730. #u20206 .text {
  5731. position:absolute;
  5732. align-self:center;
  5733. padding:2px 2px 2px 0px;
  5734. box-sizing:border-box;
  5735. width:100%;
  5736. }
  5737. #u20206_text {
  5738. border-width:0px;
  5739. word-wrap:break-word;
  5740. text-transform:none;
  5741. visibility:hidden;
  5742. }
  5743. #u20207_img {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:113px;
  5749. height:38px;
  5750. }
  5751. #u20207 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:113px;
  5755. top:152px;
  5756. width:113px;
  5757. height:38px;
  5758. display:flex;
  5759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5760. font-weight:400;
  5761. font-style:normal;
  5762. font-size:12px;
  5763. color:#333333;
  5764. }
  5765. #u20207 .text {
  5766. position:absolute;
  5767. align-self:center;
  5768. padding:2px 2px 2px 0px;
  5769. box-sizing:border-box;
  5770. width:100%;
  5771. }
  5772. #u20207_text {
  5773. border-width:0px;
  5774. word-wrap:break-word;
  5775. text-transform:none;
  5776. visibility:hidden;
  5777. }
  5778. #u20208_img {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:113px;
  5784. height:38px;
  5785. }
  5786. #u20208 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:226px;
  5790. top:152px;
  5791. width:113px;
  5792. height:38px;
  5793. display:flex;
  5794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:12px;
  5798. color:#333333;
  5799. }
  5800. #u20208 .text {
  5801. position:absolute;
  5802. align-self:center;
  5803. padding:2px 2px 2px 0px;
  5804. box-sizing:border-box;
  5805. width:100%;
  5806. }
  5807. #u20208_text {
  5808. border-width:0px;
  5809. word-wrap:break-word;
  5810. text-transform:none;
  5811. visibility:hidden;
  5812. }
  5813. #u20209_img {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:0px;
  5817. top:0px;
  5818. width:113px;
  5819. height:38px;
  5820. }
  5821. #u20209 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:339px;
  5825. top:152px;
  5826. width:113px;
  5827. height:38px;
  5828. display:flex;
  5829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:12px;
  5833. color:#333333;
  5834. }
  5835. #u20209 .text {
  5836. position:absolute;
  5837. align-self:center;
  5838. padding:2px 2px 2px 0px;
  5839. box-sizing:border-box;
  5840. width:100%;
  5841. }
  5842. #u20209_text {
  5843. border-width:0px;
  5844. word-wrap:break-word;
  5845. text-transform:none;
  5846. visibility:hidden;
  5847. }
  5848. #u20210_img {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:0px;
  5852. top:0px;
  5853. width:135px;
  5854. height:38px;
  5855. }
  5856. #u20210 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:452px;
  5860. top:152px;
  5861. width:135px;
  5862. height:38px;
  5863. display:flex;
  5864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:12px;
  5868. color:#333333;
  5869. }
  5870. #u20210 .text {
  5871. position:absolute;
  5872. align-self:center;
  5873. padding:2px 2px 2px 0px;
  5874. box-sizing:border-box;
  5875. width:100%;
  5876. }
  5877. #u20210_text {
  5878. border-width:0px;
  5879. word-wrap:break-word;
  5880. text-transform:none;
  5881. visibility:hidden;
  5882. }
  5883. #u20211_img {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:0px;
  5887. top:0px;
  5888. width:135px;
  5889. height:38px;
  5890. }
  5891. #u20211 {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:587px;
  5895. top:152px;
  5896. width:135px;
  5897. height:38px;
  5898. display:flex;
  5899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5900. font-weight:400;
  5901. font-style:normal;
  5902. font-size:12px;
  5903. color:#333333;
  5904. }
  5905. #u20211 .text {
  5906. position:absolute;
  5907. align-self:center;
  5908. padding:2px 2px 2px 0px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u20211_text {
  5913. border-width:0px;
  5914. word-wrap:break-word;
  5915. text-transform:none;
  5916. visibility:hidden;
  5917. }
  5918. #u20212_img {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:131px;
  5924. height:38px;
  5925. }
  5926. #u20212 {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:722px;
  5930. top:152px;
  5931. width:131px;
  5932. height:38px;
  5933. display:flex;
  5934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5935. font-weight:400;
  5936. font-style:normal;
  5937. font-size:12px;
  5938. color:#333333;
  5939. }
  5940. #u20212 .text {
  5941. position:absolute;
  5942. align-self:center;
  5943. padding:2px 2px 2px 0px;
  5944. box-sizing:border-box;
  5945. width:100%;
  5946. }
  5947. #u20212_text {
  5948. border-width:0px;
  5949. word-wrap:break-word;
  5950. text-transform:none;
  5951. visibility:hidden;
  5952. }
  5953. #u20213_img {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:0px;
  5957. top:0px;
  5958. width:113px;
  5959. height:38px;
  5960. }
  5961. #u20213 {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:853px;
  5965. top:152px;
  5966. width:113px;
  5967. height:38px;
  5968. display:flex;
  5969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:12px;
  5973. color:#333333;
  5974. }
  5975. #u20213 .text {
  5976. position:absolute;
  5977. align-self:center;
  5978. padding:2px 2px 2px 0px;
  5979. box-sizing:border-box;
  5980. width:100%;
  5981. }
  5982. #u20213_text {
  5983. border-width:0px;
  5984. word-wrap:break-word;
  5985. text-transform:none;
  5986. visibility:hidden;
  5987. }
  5988. #u20214_img {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:149px;
  5994. height:38px;
  5995. }
  5996. #u20214 {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:966px;
  6000. top:152px;
  6001. width:149px;
  6002. height:38px;
  6003. display:flex;
  6004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:12px;
  6008. color:#333333;
  6009. }
  6010. #u20214 .text {
  6011. position:absolute;
  6012. align-self:center;
  6013. padding:2px 2px 2px 0px;
  6014. box-sizing:border-box;
  6015. width:100%;
  6016. }
  6017. #u20214_text {
  6018. border-width:0px;
  6019. word-wrap:break-word;
  6020. text-transform:none;
  6021. visibility:hidden;
  6022. }
  6023. #u20215_img {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:130px;
  6029. height:38px;
  6030. }
  6031. #u20215 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:1115px;
  6035. top:152px;
  6036. width:130px;
  6037. height:38px;
  6038. display:flex;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:12px;
  6043. color:#333333;
  6044. }
  6045. #u20215 .text {
  6046. position:absolute;
  6047. align-self:center;
  6048. padding:2px 2px 2px 0px;
  6049. box-sizing:border-box;
  6050. width:100%;
  6051. }
  6052. #u20215_text {
  6053. border-width:0px;
  6054. word-wrap:break-word;
  6055. text-transform:none;
  6056. visibility:hidden;
  6057. }
  6058. #u20216_img {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:0px;
  6062. top:0px;
  6063. width:95px;
  6064. height:38px;
  6065. }
  6066. #u20216 {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:1245px;
  6070. top:152px;
  6071. width:95px;
  6072. height:38px;
  6073. display:flex;
  6074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:12px;
  6078. color:#AAAAAA;
  6079. }
  6080. #u20216 .text {
  6081. position:absolute;
  6082. align-self:center;
  6083. padding:2px 2px 2px 0px;
  6084. box-sizing:border-box;
  6085. width:100%;
  6086. }
  6087. #u20216_text {
  6088. border-width:0px;
  6089. word-wrap:break-word;
  6090. text-transform:none;
  6091. visibility:hidden;
  6092. }
  6093. #u20217_img {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:0px;
  6097. top:0px;
  6098. width:113px;
  6099. height:35px;
  6100. }
  6101. #u20217 {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:0px;
  6105. top:190px;
  6106. width:113px;
  6107. height:35px;
  6108. display:flex;
  6109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6110. font-weight:400;
  6111. font-style:normal;
  6112. font-size:12px;
  6113. color:#333333;
  6114. }
  6115. #u20217 .text {
  6116. position:absolute;
  6117. align-self:center;
  6118. padding:2px 2px 2px 0px;
  6119. box-sizing:border-box;
  6120. width:100%;
  6121. }
  6122. #u20217_text {
  6123. border-width:0px;
  6124. word-wrap:break-word;
  6125. text-transform:none;
  6126. visibility:hidden;
  6127. }
  6128. #u20218_img {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:0px;
  6132. top:0px;
  6133. width:113px;
  6134. height:35px;
  6135. }
  6136. #u20218 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:113px;
  6140. top:190px;
  6141. width:113px;
  6142. height:35px;
  6143. display:flex;
  6144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:12px;
  6148. color:#333333;
  6149. }
  6150. #u20218 .text {
  6151. position:absolute;
  6152. align-self:center;
  6153. padding:2px 2px 2px 0px;
  6154. box-sizing:border-box;
  6155. width:100%;
  6156. }
  6157. #u20218_text {
  6158. border-width:0px;
  6159. word-wrap:break-word;
  6160. text-transform:none;
  6161. visibility:hidden;
  6162. }
  6163. #u20219_img {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:113px;
  6169. height:35px;
  6170. }
  6171. #u20219 {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:226px;
  6175. top:190px;
  6176. width:113px;
  6177. height:35px;
  6178. display:flex;
  6179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. font-size:12px;
  6183. color:#333333;
  6184. }
  6185. #u20219 .text {
  6186. position:absolute;
  6187. align-self:center;
  6188. padding:2px 2px 2px 0px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u20219_text {
  6193. border-width:0px;
  6194. word-wrap:break-word;
  6195. text-transform:none;
  6196. visibility:hidden;
  6197. }
  6198. #u20220_img {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:113px;
  6204. height:35px;
  6205. }
  6206. #u20220 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:339px;
  6210. top:190px;
  6211. width:113px;
  6212. height:35px;
  6213. display:flex;
  6214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. font-size:12px;
  6218. color:#333333;
  6219. }
  6220. #u20220 .text {
  6221. position:absolute;
  6222. align-self:center;
  6223. padding:2px 2px 2px 0px;
  6224. box-sizing:border-box;
  6225. width:100%;
  6226. }
  6227. #u20220_text {
  6228. border-width:0px;
  6229. word-wrap:break-word;
  6230. text-transform:none;
  6231. visibility:hidden;
  6232. }
  6233. #u20221_img {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:135px;
  6239. height:35px;
  6240. }
  6241. #u20221 {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:452px;
  6245. top:190px;
  6246. width:135px;
  6247. height:35px;
  6248. display:flex;
  6249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:12px;
  6253. color:#333333;
  6254. }
  6255. #u20221 .text {
  6256. position:absolute;
  6257. align-self:center;
  6258. padding:2px 2px 2px 0px;
  6259. box-sizing:border-box;
  6260. width:100%;
  6261. }
  6262. #u20221_text {
  6263. border-width:0px;
  6264. word-wrap:break-word;
  6265. text-transform:none;
  6266. visibility:hidden;
  6267. }
  6268. #u20222_img {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:135px;
  6274. height:35px;
  6275. }
  6276. #u20222 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:587px;
  6280. top:190px;
  6281. width:135px;
  6282. height:35px;
  6283. display:flex;
  6284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:12px;
  6288. color:#333333;
  6289. }
  6290. #u20222 .text {
  6291. position:absolute;
  6292. align-self:center;
  6293. padding:2px 2px 2px 0px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u20222_text {
  6298. border-width:0px;
  6299. word-wrap:break-word;
  6300. text-transform:none;
  6301. visibility:hidden;
  6302. }
  6303. #u20223_img {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:131px;
  6309. height:35px;
  6310. }
  6311. #u20223 {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:722px;
  6315. top:190px;
  6316. width:131px;
  6317. height:35px;
  6318. display:flex;
  6319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6320. font-weight:400;
  6321. font-style:normal;
  6322. font-size:12px;
  6323. color:#333333;
  6324. }
  6325. #u20223 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:2px 2px 2px 0px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u20223_text {
  6333. border-width:0px;
  6334. word-wrap:break-word;
  6335. text-transform:none;
  6336. visibility:hidden;
  6337. }
  6338. #u20224_img {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:113px;
  6344. height:35px;
  6345. }
  6346. #u20224 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:853px;
  6350. top:190px;
  6351. width:113px;
  6352. height:35px;
  6353. display:flex;
  6354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:12px;
  6358. color:#333333;
  6359. }
  6360. #u20224 .text {
  6361. position:absolute;
  6362. align-self:center;
  6363. padding:2px 2px 2px 0px;
  6364. box-sizing:border-box;
  6365. width:100%;
  6366. }
  6367. #u20224_text {
  6368. border-width:0px;
  6369. word-wrap:break-word;
  6370. text-transform:none;
  6371. visibility:hidden;
  6372. }
  6373. #u20225_img {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:0px;
  6377. top:0px;
  6378. width:149px;
  6379. height:35px;
  6380. }
  6381. #u20225 {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:966px;
  6385. top:190px;
  6386. width:149px;
  6387. height:35px;
  6388. display:flex;
  6389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6390. font-weight:400;
  6391. font-style:normal;
  6392. font-size:12px;
  6393. color:#333333;
  6394. }
  6395. #u20225 .text {
  6396. position:absolute;
  6397. align-self:center;
  6398. padding:2px 2px 2px 0px;
  6399. box-sizing:border-box;
  6400. width:100%;
  6401. }
  6402. #u20225_text {
  6403. border-width:0px;
  6404. word-wrap:break-word;
  6405. text-transform:none;
  6406. visibility:hidden;
  6407. }
  6408. #u20226_img {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:130px;
  6414. height:35px;
  6415. }
  6416. #u20226 {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:1115px;
  6420. top:190px;
  6421. width:130px;
  6422. height:35px;
  6423. display:flex;
  6424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6425. font-weight:400;
  6426. font-style:normal;
  6427. font-size:12px;
  6428. color:#333333;
  6429. }
  6430. #u20226 .text {
  6431. position:absolute;
  6432. align-self:center;
  6433. padding:2px 2px 2px 0px;
  6434. box-sizing:border-box;
  6435. width:100%;
  6436. }
  6437. #u20226_text {
  6438. border-width:0px;
  6439. word-wrap:break-word;
  6440. text-transform:none;
  6441. visibility:hidden;
  6442. }
  6443. #u20227_img {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:95px;
  6449. height:35px;
  6450. }
  6451. #u20227 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:1245px;
  6455. top:190px;
  6456. width:95px;
  6457. height:35px;
  6458. display:flex;
  6459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6460. font-weight:400;
  6461. font-style:normal;
  6462. font-size:12px;
  6463. color:#AAAAAA;
  6464. }
  6465. #u20227 .text {
  6466. position:absolute;
  6467. align-self:center;
  6468. padding:2px 2px 2px 0px;
  6469. box-sizing:border-box;
  6470. width:100%;
  6471. }
  6472. #u20227_text {
  6473. border-width:0px;
  6474. word-wrap:break-word;
  6475. text-transform:none;
  6476. visibility:hidden;
  6477. }
  6478. #u20228_img {
  6479. border-width:0px;
  6480. position:absolute;
  6481. left:0px;
  6482. top:0px;
  6483. width:113px;
  6484. height:35px;
  6485. }
  6486. #u20228 {
  6487. border-width:0px;
  6488. position:absolute;
  6489. left:0px;
  6490. top:225px;
  6491. width:113px;
  6492. height:35px;
  6493. display:flex;
  6494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6495. font-weight:400;
  6496. font-style:normal;
  6497. font-size:12px;
  6498. color:#333333;
  6499. }
  6500. #u20228 .text {
  6501. position:absolute;
  6502. align-self:center;
  6503. padding:2px 2px 2px 0px;
  6504. box-sizing:border-box;
  6505. width:100%;
  6506. }
  6507. #u20228_text {
  6508. border-width:0px;
  6509. word-wrap:break-word;
  6510. text-transform:none;
  6511. visibility:hidden;
  6512. }
  6513. #u20229_img {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:113px;
  6519. height:35px;
  6520. }
  6521. #u20229 {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:113px;
  6525. top:225px;
  6526. width:113px;
  6527. height:35px;
  6528. display:flex;
  6529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6530. font-weight:400;
  6531. font-style:normal;
  6532. font-size:12px;
  6533. color:#333333;
  6534. }
  6535. #u20229 .text {
  6536. position:absolute;
  6537. align-self:center;
  6538. padding:2px 2px 2px 0px;
  6539. box-sizing:border-box;
  6540. width:100%;
  6541. }
  6542. #u20229_text {
  6543. border-width:0px;
  6544. word-wrap:break-word;
  6545. text-transform:none;
  6546. visibility:hidden;
  6547. }
  6548. #u20230_img {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:113px;
  6554. height:35px;
  6555. }
  6556. #u20230 {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:226px;
  6560. top:225px;
  6561. width:113px;
  6562. height:35px;
  6563. display:flex;
  6564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6565. font-weight:400;
  6566. font-style:normal;
  6567. font-size:12px;
  6568. color:#333333;
  6569. }
  6570. #u20230 .text {
  6571. position:absolute;
  6572. align-self:center;
  6573. padding:2px 2px 2px 0px;
  6574. box-sizing:border-box;
  6575. width:100%;
  6576. }
  6577. #u20230_text {
  6578. border-width:0px;
  6579. word-wrap:break-word;
  6580. text-transform:none;
  6581. visibility:hidden;
  6582. }
  6583. #u20231_img {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:0px;
  6588. width:113px;
  6589. height:35px;
  6590. }
  6591. #u20231 {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:339px;
  6595. top:225px;
  6596. width:113px;
  6597. height:35px;
  6598. display:flex;
  6599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:12px;
  6603. color:#333333;
  6604. }
  6605. #u20231 .text {
  6606. position:absolute;
  6607. align-self:center;
  6608. padding:2px 2px 2px 0px;
  6609. box-sizing:border-box;
  6610. width:100%;
  6611. }
  6612. #u20231_text {
  6613. border-width:0px;
  6614. word-wrap:break-word;
  6615. text-transform:none;
  6616. visibility:hidden;
  6617. }
  6618. #u20232_img {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:135px;
  6624. height:35px;
  6625. }
  6626. #u20232 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:452px;
  6630. top:225px;
  6631. width:135px;
  6632. height:35px;
  6633. display:flex;
  6634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:12px;
  6638. color:#333333;
  6639. }
  6640. #u20232 .text {
  6641. position:absolute;
  6642. align-self:center;
  6643. padding:2px 2px 2px 0px;
  6644. box-sizing:border-box;
  6645. width:100%;
  6646. }
  6647. #u20232_text {
  6648. border-width:0px;
  6649. word-wrap:break-word;
  6650. text-transform:none;
  6651. visibility:hidden;
  6652. }
  6653. #u20233_img {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:135px;
  6659. height:35px;
  6660. }
  6661. #u20233 {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:587px;
  6665. top:225px;
  6666. width:135px;
  6667. height:35px;
  6668. display:flex;
  6669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6670. font-weight:400;
  6671. font-style:normal;
  6672. font-size:12px;
  6673. color:#333333;
  6674. }
  6675. #u20233 .text {
  6676. position:absolute;
  6677. align-self:center;
  6678. padding:2px 2px 2px 0px;
  6679. box-sizing:border-box;
  6680. width:100%;
  6681. }
  6682. #u20233_text {
  6683. border-width:0px;
  6684. word-wrap:break-word;
  6685. text-transform:none;
  6686. visibility:hidden;
  6687. }
  6688. #u20234_img {
  6689. border-width:0px;
  6690. position:absolute;
  6691. left:0px;
  6692. top:0px;
  6693. width:131px;
  6694. height:35px;
  6695. }
  6696. #u20234 {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:722px;
  6700. top:225px;
  6701. width:131px;
  6702. height:35px;
  6703. display:flex;
  6704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6705. font-weight:400;
  6706. font-style:normal;
  6707. font-size:12px;
  6708. color:#333333;
  6709. }
  6710. #u20234 .text {
  6711. position:absolute;
  6712. align-self:center;
  6713. padding:2px 2px 2px 0px;
  6714. box-sizing:border-box;
  6715. width:100%;
  6716. }
  6717. #u20234_text {
  6718. border-width:0px;
  6719. word-wrap:break-word;
  6720. text-transform:none;
  6721. visibility:hidden;
  6722. }
  6723. #u20235_img {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:0px;
  6727. top:0px;
  6728. width:113px;
  6729. height:35px;
  6730. }
  6731. #u20235 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:853px;
  6735. top:225px;
  6736. width:113px;
  6737. height:35px;
  6738. display:flex;
  6739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:12px;
  6743. color:#333333;
  6744. }
  6745. #u20235 .text {
  6746. position:absolute;
  6747. align-self:center;
  6748. padding:2px 2px 2px 0px;
  6749. box-sizing:border-box;
  6750. width:100%;
  6751. }
  6752. #u20235_text {
  6753. border-width:0px;
  6754. word-wrap:break-word;
  6755. text-transform:none;
  6756. visibility:hidden;
  6757. }
  6758. #u20236_img {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:0px;
  6762. top:0px;
  6763. width:149px;
  6764. height:35px;
  6765. }
  6766. #u20236 {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:966px;
  6770. top:225px;
  6771. width:149px;
  6772. height:35px;
  6773. display:flex;
  6774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6775. font-weight:400;
  6776. font-style:normal;
  6777. font-size:12px;
  6778. color:#333333;
  6779. }
  6780. #u20236 .text {
  6781. position:absolute;
  6782. align-self:center;
  6783. padding:2px 2px 2px 0px;
  6784. box-sizing:border-box;
  6785. width:100%;
  6786. }
  6787. #u20236_text {
  6788. border-width:0px;
  6789. word-wrap:break-word;
  6790. text-transform:none;
  6791. visibility:hidden;
  6792. }
  6793. #u20237_img {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:130px;
  6799. height:35px;
  6800. }
  6801. #u20237 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:1115px;
  6805. top:225px;
  6806. width:130px;
  6807. height:35px;
  6808. display:flex;
  6809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6810. font-weight:400;
  6811. font-style:normal;
  6812. font-size:12px;
  6813. color:#333333;
  6814. }
  6815. #u20237 .text {
  6816. position:absolute;
  6817. align-self:center;
  6818. padding:2px 2px 2px 0px;
  6819. box-sizing:border-box;
  6820. width:100%;
  6821. }
  6822. #u20237_text {
  6823. border-width:0px;
  6824. word-wrap:break-word;
  6825. text-transform:none;
  6826. visibility:hidden;
  6827. }
  6828. #u20238_img {
  6829. border-width:0px;
  6830. position:absolute;
  6831. left:0px;
  6832. top:0px;
  6833. width:95px;
  6834. height:35px;
  6835. }
  6836. #u20238 {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:1245px;
  6840. top:225px;
  6841. width:95px;
  6842. height:35px;
  6843. display:flex;
  6844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:12px;
  6848. color:#333333;
  6849. }
  6850. #u20238 .text {
  6851. position:absolute;
  6852. align-self:center;
  6853. padding:2px 2px 2px 0px;
  6854. box-sizing:border-box;
  6855. width:100%;
  6856. }
  6857. #u20238_text {
  6858. border-width:0px;
  6859. word-wrap:break-word;
  6860. text-transform:none;
  6861. visibility:hidden;
  6862. }
  6863. #u20239_img {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:0px;
  6867. top:0px;
  6868. width:113px;
  6869. height:32px;
  6870. }
  6871. #u20239 {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:0px;
  6875. top:260px;
  6876. width:113px;
  6877. height:32px;
  6878. display:flex;
  6879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6880. font-weight:400;
  6881. font-style:normal;
  6882. font-size:12px;
  6883. color:#333333;
  6884. }
  6885. #u20239 .text {
  6886. position:absolute;
  6887. align-self:center;
  6888. padding:2px 2px 2px 0px;
  6889. box-sizing:border-box;
  6890. width:100%;
  6891. }
  6892. #u20239_text {
  6893. border-width:0px;
  6894. word-wrap:break-word;
  6895. text-transform:none;
  6896. visibility:hidden;
  6897. }
  6898. #u20240_img {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:0px;
  6902. top:0px;
  6903. width:113px;
  6904. height:32px;
  6905. }
  6906. #u20240 {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:113px;
  6910. top:260px;
  6911. width:113px;
  6912. height:32px;
  6913. display:flex;
  6914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6915. font-weight:400;
  6916. font-style:normal;
  6917. font-size:12px;
  6918. color:#333333;
  6919. }
  6920. #u20240 .text {
  6921. position:absolute;
  6922. align-self:center;
  6923. padding:2px 2px 2px 0px;
  6924. box-sizing:border-box;
  6925. width:100%;
  6926. }
  6927. #u20240_text {
  6928. border-width:0px;
  6929. word-wrap:break-word;
  6930. text-transform:none;
  6931. visibility:hidden;
  6932. }
  6933. #u20241_img {
  6934. border-width:0px;
  6935. position:absolute;
  6936. left:0px;
  6937. top:0px;
  6938. width:113px;
  6939. height:32px;
  6940. }
  6941. #u20241 {
  6942. border-width:0px;
  6943. position:absolute;
  6944. left:226px;
  6945. top:260px;
  6946. width:113px;
  6947. height:32px;
  6948. display:flex;
  6949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6950. font-weight:400;
  6951. font-style:normal;
  6952. font-size:12px;
  6953. color:#333333;
  6954. }
  6955. #u20241 .text {
  6956. position:absolute;
  6957. align-self:center;
  6958. padding:2px 2px 2px 0px;
  6959. box-sizing:border-box;
  6960. width:100%;
  6961. }
  6962. #u20241_text {
  6963. border-width:0px;
  6964. word-wrap:break-word;
  6965. text-transform:none;
  6966. visibility:hidden;
  6967. }
  6968. #u20242_img {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:0px;
  6972. top:0px;
  6973. width:113px;
  6974. height:32px;
  6975. }
  6976. #u20242 {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:339px;
  6980. top:260px;
  6981. width:113px;
  6982. height:32px;
  6983. display:flex;
  6984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6985. font-weight:400;
  6986. font-style:normal;
  6987. font-size:12px;
  6988. color:#333333;
  6989. }
  6990. #u20242 .text {
  6991. position:absolute;
  6992. align-self:center;
  6993. padding:2px 2px 2px 0px;
  6994. box-sizing:border-box;
  6995. width:100%;
  6996. }
  6997. #u20242_text {
  6998. border-width:0px;
  6999. word-wrap:break-word;
  7000. text-transform:none;
  7001. visibility:hidden;
  7002. }
  7003. #u20243_img {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:135px;
  7009. height:32px;
  7010. }
  7011. #u20243 {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:452px;
  7015. top:260px;
  7016. width:135px;
  7017. height:32px;
  7018. display:flex;
  7019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7020. font-weight:400;
  7021. font-style:normal;
  7022. font-size:12px;
  7023. color:#333333;
  7024. }
  7025. #u20243 .text {
  7026. position:absolute;
  7027. align-self:center;
  7028. padding:2px 2px 2px 0px;
  7029. box-sizing:border-box;
  7030. width:100%;
  7031. }
  7032. #u20243_text {
  7033. border-width:0px;
  7034. word-wrap:break-word;
  7035. text-transform:none;
  7036. visibility:hidden;
  7037. }
  7038. #u20244_img {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:135px;
  7044. height:32px;
  7045. }
  7046. #u20244 {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:587px;
  7050. top:260px;
  7051. width:135px;
  7052. height:32px;
  7053. display:flex;
  7054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7055. font-weight:400;
  7056. font-style:normal;
  7057. font-size:12px;
  7058. color:#333333;
  7059. }
  7060. #u20244 .text {
  7061. position:absolute;
  7062. align-self:center;
  7063. padding:2px 2px 2px 0px;
  7064. box-sizing:border-box;
  7065. width:100%;
  7066. }
  7067. #u20244_text {
  7068. border-width:0px;
  7069. word-wrap:break-word;
  7070. text-transform:none;
  7071. visibility:hidden;
  7072. }
  7073. #u20245_img {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:0px;
  7077. top:0px;
  7078. width:131px;
  7079. height:32px;
  7080. }
  7081. #u20245 {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:722px;
  7085. top:260px;
  7086. width:131px;
  7087. height:32px;
  7088. display:flex;
  7089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. font-size:12px;
  7093. color:#333333;
  7094. }
  7095. #u20245 .text {
  7096. position:absolute;
  7097. align-self:center;
  7098. padding:2px 2px 2px 0px;
  7099. box-sizing:border-box;
  7100. width:100%;
  7101. }
  7102. #u20245_text {
  7103. border-width:0px;
  7104. word-wrap:break-word;
  7105. text-transform:none;
  7106. visibility:hidden;
  7107. }
  7108. #u20246_img {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:0px;
  7112. top:0px;
  7113. width:113px;
  7114. height:32px;
  7115. }
  7116. #u20246 {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:853px;
  7120. top:260px;
  7121. width:113px;
  7122. height:32px;
  7123. display:flex;
  7124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:12px;
  7128. color:#333333;
  7129. }
  7130. #u20246 .text {
  7131. position:absolute;
  7132. align-self:center;
  7133. padding:2px 2px 2px 0px;
  7134. box-sizing:border-box;
  7135. width:100%;
  7136. }
  7137. #u20246_text {
  7138. border-width:0px;
  7139. word-wrap:break-word;
  7140. text-transform:none;
  7141. visibility:hidden;
  7142. }
  7143. #u20247_img {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:149px;
  7149. height:32px;
  7150. }
  7151. #u20247 {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:966px;
  7155. top:260px;
  7156. width:149px;
  7157. height:32px;
  7158. display:flex;
  7159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7160. font-weight:400;
  7161. font-style:normal;
  7162. font-size:12px;
  7163. color:#333333;
  7164. }
  7165. #u20247 .text {
  7166. position:absolute;
  7167. align-self:center;
  7168. padding:2px 2px 2px 0px;
  7169. box-sizing:border-box;
  7170. width:100%;
  7171. }
  7172. #u20247_text {
  7173. border-width:0px;
  7174. word-wrap:break-word;
  7175. text-transform:none;
  7176. visibility:hidden;
  7177. }
  7178. #u20248_img {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:130px;
  7184. height:32px;
  7185. }
  7186. #u20248 {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:1115px;
  7190. top:260px;
  7191. width:130px;
  7192. height:32px;
  7193. display:flex;
  7194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7195. font-weight:400;
  7196. font-style:normal;
  7197. font-size:12px;
  7198. color:#333333;
  7199. }
  7200. #u20248 .text {
  7201. position:absolute;
  7202. align-self:center;
  7203. padding:2px 2px 2px 0px;
  7204. box-sizing:border-box;
  7205. width:100%;
  7206. }
  7207. #u20248_text {
  7208. border-width:0px;
  7209. word-wrap:break-word;
  7210. text-transform:none;
  7211. visibility:hidden;
  7212. }
  7213. #u20249_img {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:0px;
  7217. top:0px;
  7218. width:95px;
  7219. height:32px;
  7220. }
  7221. #u20249 {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:1245px;
  7225. top:260px;
  7226. width:95px;
  7227. height:32px;
  7228. display:flex;
  7229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7230. font-weight:400;
  7231. font-style:normal;
  7232. font-size:12px;
  7233. color:#333333;
  7234. }
  7235. #u20249 .text {
  7236. position:absolute;
  7237. align-self:center;
  7238. padding:2px 2px 2px 0px;
  7239. box-sizing:border-box;
  7240. width:100%;
  7241. }
  7242. #u20249_text {
  7243. border-width:0px;
  7244. word-wrap:break-word;
  7245. text-transform:none;
  7246. visibility:hidden;
  7247. }
  7248. #u20250_img {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:0px;
  7252. top:0px;
  7253. width:113px;
  7254. height:30px;
  7255. }
  7256. #u20250 {
  7257. border-width:0px;
  7258. position:absolute;
  7259. left:0px;
  7260. top:292px;
  7261. width:113px;
  7262. height:30px;
  7263. display:flex;
  7264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7265. font-weight:400;
  7266. font-style:normal;
  7267. font-size:12px;
  7268. color:#333333;
  7269. }
  7270. #u20250 .text {
  7271. position:absolute;
  7272. align-self:center;
  7273. padding:2px 2px 2px 0px;
  7274. box-sizing:border-box;
  7275. width:100%;
  7276. }
  7277. #u20250_text {
  7278. border-width:0px;
  7279. word-wrap:break-word;
  7280. text-transform:none;
  7281. visibility:hidden;
  7282. }
  7283. #u20251_img {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:0px;
  7287. top:0px;
  7288. width:113px;
  7289. height:30px;
  7290. }
  7291. #u20251 {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:113px;
  7295. top:292px;
  7296. width:113px;
  7297. height:30px;
  7298. display:flex;
  7299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7300. font-weight:400;
  7301. font-style:normal;
  7302. font-size:12px;
  7303. color:#333333;
  7304. }
  7305. #u20251 .text {
  7306. position:absolute;
  7307. align-self:center;
  7308. padding:2px 2px 2px 0px;
  7309. box-sizing:border-box;
  7310. width:100%;
  7311. }
  7312. #u20251_text {
  7313. border-width:0px;
  7314. word-wrap:break-word;
  7315. text-transform:none;
  7316. visibility:hidden;
  7317. }
  7318. #u20252_img {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:0px;
  7322. top:0px;
  7323. width:113px;
  7324. height:30px;
  7325. }
  7326. #u20252 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:226px;
  7330. top:292px;
  7331. width:113px;
  7332. height:30px;
  7333. display:flex;
  7334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7335. font-weight:400;
  7336. font-style:normal;
  7337. font-size:12px;
  7338. color:#333333;
  7339. }
  7340. #u20252 .text {
  7341. position:absolute;
  7342. align-self:center;
  7343. padding:2px 2px 2px 0px;
  7344. box-sizing:border-box;
  7345. width:100%;
  7346. }
  7347. #u20252_text {
  7348. border-width:0px;
  7349. word-wrap:break-word;
  7350. text-transform:none;
  7351. visibility:hidden;
  7352. }
  7353. #u20253_img {
  7354. border-width:0px;
  7355. position:absolute;
  7356. left:0px;
  7357. top:0px;
  7358. width:113px;
  7359. height:30px;
  7360. }
  7361. #u20253 {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:339px;
  7365. top:292px;
  7366. width:113px;
  7367. height:30px;
  7368. display:flex;
  7369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7370. font-weight:400;
  7371. font-style:normal;
  7372. font-size:12px;
  7373. color:#333333;
  7374. }
  7375. #u20253 .text {
  7376. position:absolute;
  7377. align-self:center;
  7378. padding:2px 2px 2px 0px;
  7379. box-sizing:border-box;
  7380. width:100%;
  7381. }
  7382. #u20253_text {
  7383. border-width:0px;
  7384. word-wrap:break-word;
  7385. text-transform:none;
  7386. visibility:hidden;
  7387. }
  7388. #u20254_img {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:0px;
  7392. top:0px;
  7393. width:135px;
  7394. height:30px;
  7395. }
  7396. #u20254 {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:452px;
  7400. top:292px;
  7401. width:135px;
  7402. height:30px;
  7403. display:flex;
  7404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7405. font-weight:400;
  7406. font-style:normal;
  7407. font-size:12px;
  7408. color:#333333;
  7409. }
  7410. #u20254 .text {
  7411. position:absolute;
  7412. align-self:center;
  7413. padding:2px 2px 2px 0px;
  7414. box-sizing:border-box;
  7415. width:100%;
  7416. }
  7417. #u20254_text {
  7418. border-width:0px;
  7419. word-wrap:break-word;
  7420. text-transform:none;
  7421. visibility:hidden;
  7422. }
  7423. #u20255_img {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:0px;
  7427. top:0px;
  7428. width:135px;
  7429. height:30px;
  7430. }
  7431. #u20255 {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:587px;
  7435. top:292px;
  7436. width:135px;
  7437. height:30px;
  7438. display:flex;
  7439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:12px;
  7443. color:#333333;
  7444. }
  7445. #u20255 .text {
  7446. position:absolute;
  7447. align-self:center;
  7448. padding:2px 2px 2px 0px;
  7449. box-sizing:border-box;
  7450. width:100%;
  7451. }
  7452. #u20255_text {
  7453. border-width:0px;
  7454. word-wrap:break-word;
  7455. text-transform:none;
  7456. visibility:hidden;
  7457. }
  7458. #u20256_img {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:131px;
  7464. height:30px;
  7465. }
  7466. #u20256 {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:722px;
  7470. top:292px;
  7471. width:131px;
  7472. height:30px;
  7473. display:flex;
  7474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7475. font-weight:400;
  7476. font-style:normal;
  7477. font-size:12px;
  7478. color:#333333;
  7479. }
  7480. #u20256 .text {
  7481. position:absolute;
  7482. align-self:center;
  7483. padding:2px 2px 2px 0px;
  7484. box-sizing:border-box;
  7485. width:100%;
  7486. }
  7487. #u20256_text {
  7488. border-width:0px;
  7489. word-wrap:break-word;
  7490. text-transform:none;
  7491. visibility:hidden;
  7492. }
  7493. #u20257_img {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:0px;
  7497. top:0px;
  7498. width:113px;
  7499. height:30px;
  7500. }
  7501. #u20257 {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:853px;
  7505. top:292px;
  7506. width:113px;
  7507. height:30px;
  7508. display:flex;
  7509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7510. font-weight:400;
  7511. font-style:normal;
  7512. font-size:12px;
  7513. color:#333333;
  7514. }
  7515. #u20257 .text {
  7516. position:absolute;
  7517. align-self:center;
  7518. padding:2px 2px 2px 0px;
  7519. box-sizing:border-box;
  7520. width:100%;
  7521. }
  7522. #u20257_text {
  7523. border-width:0px;
  7524. word-wrap:break-word;
  7525. text-transform:none;
  7526. visibility:hidden;
  7527. }
  7528. #u20258_img {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:0px;
  7532. top:0px;
  7533. width:149px;
  7534. height:30px;
  7535. }
  7536. #u20258 {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:966px;
  7540. top:292px;
  7541. width:149px;
  7542. height:30px;
  7543. display:flex;
  7544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7545. font-weight:400;
  7546. font-style:normal;
  7547. font-size:12px;
  7548. color:#333333;
  7549. }
  7550. #u20258 .text {
  7551. position:absolute;
  7552. align-self:center;
  7553. padding:2px 2px 2px 0px;
  7554. box-sizing:border-box;
  7555. width:100%;
  7556. }
  7557. #u20258_text {
  7558. border-width:0px;
  7559. word-wrap:break-word;
  7560. text-transform:none;
  7561. visibility:hidden;
  7562. }
  7563. #u20259_img {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:0px;
  7567. top:0px;
  7568. width:130px;
  7569. height:30px;
  7570. }
  7571. #u20259 {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:1115px;
  7575. top:292px;
  7576. width:130px;
  7577. height:30px;
  7578. display:flex;
  7579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:12px;
  7583. color:#333333;
  7584. }
  7585. #u20259 .text {
  7586. position:absolute;
  7587. align-self:center;
  7588. padding:2px 2px 2px 0px;
  7589. box-sizing:border-box;
  7590. width:100%;
  7591. }
  7592. #u20259_text {
  7593. border-width:0px;
  7594. word-wrap:break-word;
  7595. text-transform:none;
  7596. visibility:hidden;
  7597. }
  7598. #u20260_img {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:0px;
  7602. top:0px;
  7603. width:95px;
  7604. height:30px;
  7605. }
  7606. #u20260 {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:1245px;
  7610. top:292px;
  7611. width:95px;
  7612. height:30px;
  7613. display:flex;
  7614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7615. font-weight:400;
  7616. font-style:normal;
  7617. font-size:12px;
  7618. color:#333333;
  7619. }
  7620. #u20260 .text {
  7621. position:absolute;
  7622. align-self:center;
  7623. padding:2px 2px 2px 0px;
  7624. box-sizing:border-box;
  7625. width:100%;
  7626. }
  7627. #u20260_text {
  7628. border-width:0px;
  7629. word-wrap:break-word;
  7630. text-transform:none;
  7631. visibility:hidden;
  7632. }
  7633. #u20261 {
  7634. border-width:0px;
  7635. position:absolute;
  7636. left:0px;
  7637. top:0px;
  7638. width:0px;
  7639. height:0px;
  7640. }
  7641. #u20262_div {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:0px;
  7645. top:0px;
  7646. width:59px;
  7647. height:30px;
  7648. background:inherit;
  7649. background-color:rgba(24, 144, 255, 1);
  7650. box-sizing:border-box;
  7651. border-width:1px;
  7652. border-style:solid;
  7653. border-color:rgba(0, 153, 255, 1);
  7654. border-radius:4px;
  7655. -moz-box-shadow:none;
  7656. -webkit-box-shadow:none;
  7657. box-shadow:none;
  7658. font-family:'Microsoft YaHei', sans-serif;
  7659. font-weight:400;
  7660. font-style:normal;
  7661. font-size:14px;
  7662. color:#FFFFFF;
  7663. }
  7664. #u20262 {
  7665. border-width:0px;
  7666. position:absolute;
  7667. left:828px;
  7668. top:225px;
  7669. width:59px;
  7670. height:30px;
  7671. display:flex;
  7672. font-family:'Microsoft YaHei', sans-serif;
  7673. font-weight:400;
  7674. font-style:normal;
  7675. font-size:14px;
  7676. color:#FFFFFF;
  7677. }
  7678. #u20262 .text {
  7679. position:absolute;
  7680. align-self:center;
  7681. padding:5px 15px 5px 15px;
  7682. box-sizing:border-box;
  7683. width:100%;
  7684. }
  7685. #u20262_text {
  7686. border-width:0px;
  7687. white-space:nowrap;
  7688. text-transform:none;
  7689. }
  7690. #u20263_div {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:0px;
  7694. top:0px;
  7695. width:55px;
  7696. height:30px;
  7697. background:inherit;
  7698. background-color:rgba(255, 255, 255, 1);
  7699. box-sizing:border-box;
  7700. border-width:1px;
  7701. border-style:solid;
  7702. border-color:rgba(170, 170, 170, 1);
  7703. border-radius:4px;
  7704. -moz-box-shadow:none;
  7705. -webkit-box-shadow:none;
  7706. box-shadow:none;
  7707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7708. font-weight:400;
  7709. font-style:normal;
  7710. font-size:12px;
  7711. color:#555555;
  7712. }
  7713. #u20263 {
  7714. border-width:0px;
  7715. position:absolute;
  7716. left:897px;
  7717. top:225px;
  7718. width:55px;
  7719. height:30px;
  7720. display:flex;
  7721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7722. font-weight:400;
  7723. font-style:normal;
  7724. font-size:12px;
  7725. color:#555555;
  7726. }
  7727. #u20263 .text {
  7728. position:absolute;
  7729. align-self:center;
  7730. padding:5px 15px 5px 15px;
  7731. box-sizing:border-box;
  7732. width:100%;
  7733. }
  7734. #u20263_text {
  7735. border-width:0px;
  7736. white-space:nowrap;
  7737. text-transform:none;
  7738. }
  7739. #u20265 {
  7740. border-width:0px;
  7741. position:absolute;
  7742. left:0px;
  7743. top:0px;
  7744. width:0px;
  7745. height:0px;
  7746. }
  7747. #u20266_div {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:0px;
  7751. top:0px;
  7752. width:30px;
  7753. height:30px;
  7754. background:inherit;
  7755. background-color:rgba(255, 255, 255, 1);
  7756. box-sizing:border-box;
  7757. border-width:1px;
  7758. border-style:solid;
  7759. border-color:rgba(228, 228, 228, 1);
  7760. border-radius:4px;
  7761. -moz-box-shadow:none;
  7762. -webkit-box-shadow:none;
  7763. box-shadow:none;
  7764. font-family:'Microsoft YaHei', sans-serif;
  7765. font-weight:400;
  7766. font-style:normal;
  7767. font-size:14px;
  7768. }
  7769. #u20266 {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:1003px;
  7773. top:646px;
  7774. width:30px;
  7775. height:30px;
  7776. display:flex;
  7777. font-family:'Microsoft YaHei', sans-serif;
  7778. font-weight:400;
  7779. font-style:normal;
  7780. font-size:14px;
  7781. }
  7782. #u20266 .text {
  7783. position:absolute;
  7784. align-self:center;
  7785. padding:2px 2px 2px 2px;
  7786. box-sizing:border-box;
  7787. width:100%;
  7788. }
  7789. #u20266_text {
  7790. border-width:0px;
  7791. word-wrap:break-word;
  7792. text-transform:none;
  7793. }
  7794. #u20267_div {
  7795. border-width:0px;
  7796. position:absolute;
  7797. left:0px;
  7798. top:0px;
  7799. width:49px;
  7800. height:30px;
  7801. background:inherit;
  7802. background-color:rgba(255, 255, 255, 0);
  7803. box-sizing:border-box;
  7804. border-width:1px;
  7805. border-style:solid;
  7806. border-color:rgba(188, 188, 188, 1);
  7807. border-radius:4px;
  7808. -moz-box-shadow:none;
  7809. -webkit-box-shadow:none;
  7810. box-shadow:none;
  7811. font-family:'Microsoft YaHei', sans-serif;
  7812. font-weight:400;
  7813. font-style:normal;
  7814. font-size:14px;
  7815. color:#1E1E1E;
  7816. }
  7817. #u20267 {
  7818. border-width:0px;
  7819. position:absolute;
  7820. left:1519px;
  7821. top:646px;
  7822. width:49px;
  7823. height:30px;
  7824. display:flex;
  7825. font-family:'Microsoft YaHei', sans-serif;
  7826. font-weight:400;
  7827. font-style:normal;
  7828. font-size:14px;
  7829. color:#1E1E1E;
  7830. }
  7831. #u20267 .text {
  7832. position:absolute;
  7833. align-self:center;
  7834. padding:5px 10px 5px 10px;
  7835. box-sizing:border-box;
  7836. width:100%;
  7837. }
  7838. #u20267_text {
  7839. border-width:0px;
  7840. white-space:nowrap;
  7841. text-transform:none;
  7842. }
  7843. #u20268 {
  7844. border-width:0px;
  7845. position:absolute;
  7846. left:0px;
  7847. top:0px;
  7848. width:0px;
  7849. height:0px;
  7850. }
  7851. #u20269_div {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:0px;
  7855. top:0px;
  7856. width:33px;
  7857. height:24px;
  7858. background:inherit;
  7859. background-color:rgba(255, 255, 255, 1);
  7860. border:none;
  7861. border-radius:0px;
  7862. -moz-box-shadow:none;
  7863. -webkit-box-shadow:none;
  7864. box-shadow:none;
  7865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7866. font-weight:400;
  7867. font-style:normal;
  7868. font-size:14px;
  7869. color:#BCBCBC;
  7870. text-align:left;
  7871. }
  7872. #u20269 {
  7873. border-width:0px;
  7874. position:absolute;
  7875. left:1287px;
  7876. top:649px;
  7877. width:33px;
  7878. height:24px;
  7879. display:flex;
  7880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7881. font-weight:400;
  7882. font-style:normal;
  7883. font-size:14px;
  7884. color:#BCBCBC;
  7885. text-align:left;
  7886. }
  7887. #u20269 .text {
  7888. position:absolute;
  7889. align-self:center;
  7890. padding:2px 2px 2px 2px;
  7891. box-sizing:border-box;
  7892. width:100%;
  7893. }
  7894. #u20269_text {
  7895. border-width:0px;
  7896. white-space:nowrap;
  7897. text-transform:none;
  7898. }
  7899. #u20270_div {
  7900. border-width:0px;
  7901. position:absolute;
  7902. left:0px;
  7903. top:0px;
  7904. width:40px;
  7905. height:30px;
  7906. background:inherit;
  7907. background-color:rgba(255, 255, 255, 1);
  7908. box-sizing:border-box;
  7909. border-width:1px;
  7910. border-style:solid;
  7911. border-color:rgba(228, 228, 228, 1);
  7912. border-radius:4px;
  7913. -moz-box-shadow:none;
  7914. -webkit-box-shadow:none;
  7915. box-shadow:none;
  7916. font-family:'Microsoft YaHei', sans-serif;
  7917. font-weight:400;
  7918. font-style:normal;
  7919. font-size:14px;
  7920. }
  7921. #u20270 {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:1322px;
  7925. top:646px;
  7926. width:40px;
  7927. height:30px;
  7928. display:flex;
  7929. font-family:'Microsoft YaHei', sans-serif;
  7930. font-weight:400;
  7931. font-style:normal;
  7932. font-size:14px;
  7933. }
  7934. #u20270 .text {
  7935. position:absolute;
  7936. align-self:center;
  7937. padding:2px 2px 2px 2px;
  7938. box-sizing:border-box;
  7939. width:100%;
  7940. }
  7941. #u20270_text {
  7942. border-width:0px;
  7943. word-wrap:break-word;
  7944. text-transform:none;
  7945. visibility:hidden;
  7946. }
  7947. #u20271_div {
  7948. border-width:0px;
  7949. position:absolute;
  7950. left:0px;
  7951. top:0px;
  7952. width:19px;
  7953. height:24px;
  7954. background:inherit;
  7955. background-color:rgba(255, 255, 255, 1);
  7956. border:none;
  7957. border-radius:0px;
  7958. -moz-box-shadow:none;
  7959. -webkit-box-shadow:none;
  7960. box-shadow:none;
  7961. font-family:'Microsoft YaHei', sans-serif;
  7962. font-weight:400;
  7963. font-style:normal;
  7964. font-size:14px;
  7965. color:#BCBCBC;
  7966. text-align:left;
  7967. }
  7968. #u20271 {
  7969. border-width:0px;
  7970. position:absolute;
  7971. left:1364px;
  7972. top:650px;
  7973. width:19px;
  7974. height:24px;
  7975. display:flex;
  7976. font-family:'Microsoft YaHei', sans-serif;
  7977. font-weight:400;
  7978. font-style:normal;
  7979. font-size:14px;
  7980. color:#BCBCBC;
  7981. text-align:left;
  7982. }
  7983. #u20271 .text {
  7984. position:absolute;
  7985. align-self:center;
  7986. padding:2px 2px 2px 2px;
  7987. box-sizing:border-box;
  7988. width:100%;
  7989. }
  7990. #u20271_text {
  7991. border-width:0px;
  7992. white-space:nowrap;
  7993. text-transform:none;
  7994. }
  7995. #u20272_input {
  7996. position:absolute;
  7997. left:0px;
  7998. top:0px;
  7999. width:34px;
  8000. height:25px;
  8001. padding:2px 2px 2px 2px;
  8002. font-family:'Microsoft YaHei', sans-serif;
  8003. font-weight:400;
  8004. font-style:normal;
  8005. font-size:13px;
  8006. letter-spacing:normal;
  8007. color:#000000;
  8008. vertical-align:none;
  8009. text-align:left;
  8010. text-transform:none;
  8011. background-color:transparent;
  8012. border-color:transparent;
  8013. }
  8014. #u20272_input.disabled {
  8015. position:absolute;
  8016. left:0px;
  8017. top:0px;
  8018. width:34px;
  8019. height:25px;
  8020. padding:2px 2px 2px 2px;
  8021. font-family:'Microsoft YaHei', sans-serif;
  8022. font-weight:400;
  8023. font-style:normal;
  8024. font-size:13px;
  8025. letter-spacing:normal;
  8026. color:#000000;
  8027. vertical-align:none;
  8028. text-align:left;
  8029. text-transform:none;
  8030. background-color:transparent;
  8031. border-color:transparent;
  8032. }
  8033. #u20272_div {
  8034. border-width:0px;
  8035. position:absolute;
  8036. left:0px;
  8037. top:0px;
  8038. width:34px;
  8039. height:25px;
  8040. background:inherit;
  8041. background-color:rgba(255, 255, 255, 1);
  8042. border:none;
  8043. border-radius:0px;
  8044. -moz-box-shadow:none;
  8045. -webkit-box-shadow:none;
  8046. box-shadow:none;
  8047. font-family:'Microsoft YaHei', sans-serif;
  8048. font-weight:400;
  8049. font-style:normal;
  8050. }
  8051. #u20272 {
  8052. border-width:0px;
  8053. position:absolute;
  8054. left:1325px;
  8055. top:648px;
  8056. width:34px;
  8057. height:25px;
  8058. display:flex;
  8059. font-family:'Microsoft YaHei', sans-serif;
  8060. font-weight:400;
  8061. font-style:normal;
  8062. }
  8063. #u20272 .text {
  8064. position:absolute;
  8065. align-self:center;
  8066. padding:2px 2px 2px 2px;
  8067. box-sizing:border-box;
  8068. width:100%;
  8069. }
  8070. #u20272_div.disabled {
  8071. border-width:0px;
  8072. position:absolute;
  8073. left:0px;
  8074. top:0px;
  8075. width:34px;
  8076. height:25px;
  8077. background:inherit;
  8078. background-color:rgba(240, 240, 240, 1);
  8079. border:none;
  8080. border-radius:0px;
  8081. -moz-box-shadow:none;
  8082. -webkit-box-shadow:none;
  8083. box-shadow:none;
  8084. font-family:'Microsoft YaHei', sans-serif;
  8085. font-weight:400;
  8086. font-style:normal;
  8087. }
  8088. #u20272.disabled {
  8089. }
  8090. #u20273_div {
  8091. border-width:0px;
  8092. position:absolute;
  8093. left:0px;
  8094. top:0px;
  8095. width:30px;
  8096. height:30px;
  8097. background:inherit;
  8098. background-color:rgba(41, 143, 255, 1);
  8099. border:none;
  8100. border-radius:4px;
  8101. -moz-box-shadow:none;
  8102. -webkit-box-shadow:none;
  8103. box-shadow:none;
  8104. font-family:'Microsoft YaHei', sans-serif;
  8105. font-weight:400;
  8106. font-style:normal;
  8107. font-size:14px;
  8108. color:#FFFFFF;
  8109. }
  8110. #u20273 {
  8111. border-width:0px;
  8112. position:absolute;
  8113. left:1037px;
  8114. top:646px;
  8115. width:30px;
  8116. height:30px;
  8117. display:flex;
  8118. font-family:'Microsoft YaHei', sans-serif;
  8119. font-weight:400;
  8120. font-style:normal;
  8121. font-size:14px;
  8122. color:#FFFFFF;
  8123. }
  8124. #u20273 .text {
  8125. position:absolute;
  8126. align-self:center;
  8127. padding:2px 2px 2px 2px;
  8128. box-sizing:border-box;
  8129. width:100%;
  8130. }
  8131. #u20273_text {
  8132. border-width:0px;
  8133. word-wrap:break-word;
  8134. text-transform:none;
  8135. }
  8136. #u20274_div {
  8137. border-width:0px;
  8138. position:absolute;
  8139. left:0px;
  8140. top:0px;
  8141. width:30px;
  8142. height:30px;
  8143. background:inherit;
  8144. background-color:rgba(255, 255, 255, 1);
  8145. box-sizing:border-box;
  8146. border-width:1px;
  8147. border-style:solid;
  8148. border-color:rgba(228, 228, 228, 1);
  8149. border-radius:4px;
  8150. -moz-box-shadow:none;
  8151. -webkit-box-shadow:none;
  8152. box-shadow:none;
  8153. font-family:'Microsoft YaHei', sans-serif;
  8154. font-weight:400;
  8155. font-style:normal;
  8156. font-size:14px;
  8157. }
  8158. #u20274 {
  8159. border-width:0px;
  8160. position:absolute;
  8161. left:1071px;
  8162. top:646px;
  8163. width:30px;
  8164. height:30px;
  8165. display:flex;
  8166. font-family:'Microsoft YaHei', sans-serif;
  8167. font-weight:400;
  8168. font-style:normal;
  8169. font-size:14px;
  8170. }
  8171. #u20274 .text {
  8172. position:absolute;
  8173. align-self:center;
  8174. padding:2px 2px 2px 2px;
  8175. box-sizing:border-box;
  8176. width:100%;
  8177. }
  8178. #u20274_text {
  8179. border-width:0px;
  8180. word-wrap:break-word;
  8181. text-transform:none;
  8182. }
  8183. #u20275_div {
  8184. border-width:0px;
  8185. position:absolute;
  8186. left:0px;
  8187. top:0px;
  8188. width:30px;
  8189. height:30px;
  8190. background:inherit;
  8191. background-color:rgba(255, 255, 255, 1);
  8192. box-sizing:border-box;
  8193. border-width:1px;
  8194. border-style:solid;
  8195. border-color:rgba(228, 228, 228, 1);
  8196. border-radius:4px;
  8197. -moz-box-shadow:none;
  8198. -webkit-box-shadow:none;
  8199. box-shadow:none;
  8200. font-family:'Microsoft YaHei', sans-serif;
  8201. font-weight:400;
  8202. font-style:normal;
  8203. font-size:14px;
  8204. }
  8205. #u20275 {
  8206. border-width:0px;
  8207. position:absolute;
  8208. left:1105px;
  8209. top:646px;
  8210. width:30px;
  8211. height:30px;
  8212. display:flex;
  8213. font-family:'Microsoft YaHei', sans-serif;
  8214. font-weight:400;
  8215. font-style:normal;
  8216. font-size:14px;
  8217. }
  8218. #u20275 .text {
  8219. position:absolute;
  8220. align-self:center;
  8221. padding:2px 2px 2px 2px;
  8222. box-sizing:border-box;
  8223. width:100%;
  8224. }
  8225. #u20275_text {
  8226. border-width:0px;
  8227. word-wrap:break-word;
  8228. text-transform:none;
  8229. }
  8230. #u20276_div {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:0px;
  8234. top:0px;
  8235. width:30px;
  8236. height:30px;
  8237. background:inherit;
  8238. background-color:rgba(255, 255, 255, 1);
  8239. border:none;
  8240. border-radius:4px;
  8241. -moz-box-shadow:none;
  8242. -webkit-box-shadow:none;
  8243. box-shadow:none;
  8244. font-family:'Microsoft YaHei', sans-serif;
  8245. font-weight:400;
  8246. font-style:normal;
  8247. font-size:14px;
  8248. }
  8249. #u20276 {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:1135px;
  8253. top:646px;
  8254. width:30px;
  8255. height:30px;
  8256. display:flex;
  8257. font-family:'Microsoft YaHei', sans-serif;
  8258. font-weight:400;
  8259. font-style:normal;
  8260. font-size:14px;
  8261. }
  8262. #u20276 .text {
  8263. position:absolute;
  8264. align-self:center;
  8265. padding:2px 2px 2px 2px;
  8266. box-sizing:border-box;
  8267. width:100%;
  8268. }
  8269. #u20276_text {
  8270. border-width:0px;
  8271. word-wrap:break-word;
  8272. text-transform:none;
  8273. }
  8274. #u20277_div {
  8275. border-width:0px;
  8276. position:absolute;
  8277. left:0px;
  8278. top:0px;
  8279. width:30px;
  8280. height:30px;
  8281. background:inherit;
  8282. background-color:rgba(255, 255, 255, 1);
  8283. box-sizing:border-box;
  8284. border-width:1px;
  8285. border-style:solid;
  8286. border-color:rgba(228, 228, 228, 1);
  8287. border-radius:4px;
  8288. -moz-box-shadow:none;
  8289. -webkit-box-shadow:none;
  8290. box-shadow:none;
  8291. font-family:'Microsoft YaHei', sans-serif;
  8292. font-weight:400;
  8293. font-style:normal;
  8294. font-size:14px;
  8295. }
  8296. #u20277 {
  8297. border-width:0px;
  8298. position:absolute;
  8299. left:1169px;
  8300. top:646px;
  8301. width:30px;
  8302. height:30px;
  8303. display:flex;
  8304. font-family:'Microsoft YaHei', sans-serif;
  8305. font-weight:400;
  8306. font-style:normal;
  8307. font-size:14px;
  8308. }
  8309. #u20277 .text {
  8310. position:absolute;
  8311. align-self:center;
  8312. padding:2px 2px 2px 2px;
  8313. box-sizing:border-box;
  8314. width:100%;
  8315. }
  8316. #u20277_text {
  8317. border-width:0px;
  8318. word-wrap:break-word;
  8319. text-transform:none;
  8320. }
  8321. #u20278_div {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:0px;
  8325. top:0px;
  8326. width:32px;
  8327. height:21px;
  8328. background:inherit;
  8329. background-color:rgba(255, 255, 255, 1);
  8330. border:none;
  8331. border-radius:15px;
  8332. -moz-box-shadow:none;
  8333. -webkit-box-shadow:none;
  8334. box-shadow:none;
  8335. font-family:'Microsoft YaHei', sans-serif;
  8336. font-weight:400;
  8337. font-style:normal;
  8338. font-size:14px;
  8339. color:#1E1E1E;
  8340. }
  8341. #u20278 {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:1243px;
  8345. top:651px;
  8346. width:32px;
  8347. height:21px;
  8348. display:flex;
  8349. font-family:'Microsoft YaHei', sans-serif;
  8350. font-weight:400;
  8351. font-style:normal;
  8352. font-size:14px;
  8353. color:#1E1E1E;
  8354. }
  8355. #u20278 .text {
  8356. position:absolute;
  8357. align-self:center;
  8358. padding:2px 2px 2px 2px;
  8359. box-sizing:border-box;
  8360. width:100%;
  8361. }
  8362. #u20278_text {
  8363. border-width:0px;
  8364. white-space:nowrap;
  8365. text-transform:none;
  8366. }
  8367. #u20279 {
  8368. border-width:0px;
  8369. position:absolute;
  8370. left:0px;
  8371. top:0px;
  8372. width:0px;
  8373. height:0px;
  8374. }
  8375. #u20280_div {
  8376. border-width:0px;
  8377. position:absolute;
  8378. left:0px;
  8379. top:0px;
  8380. width:31px;
  8381. height:30px;
  8382. background:inherit;
  8383. background-color:rgba(255, 255, 255, 1);
  8384. box-sizing:border-box;
  8385. border-width:1px;
  8386. border-style:solid;
  8387. border-color:rgba(228, 228, 228, 1);
  8388. border-radius:4px;
  8389. -moz-box-shadow:none;
  8390. -webkit-box-shadow:none;
  8391. box-shadow:none;
  8392. font-family:'Microsoft YaHei', sans-serif;
  8393. font-weight:400;
  8394. font-style:normal;
  8395. font-size:12px;
  8396. }
  8397. #u20280 {
  8398. border-width:0px;
  8399. position:absolute;
  8400. left:968px;
  8401. top:646px;
  8402. width:31px;
  8403. height:30px;
  8404. display:flex;
  8405. font-family:'Microsoft YaHei', sans-serif;
  8406. font-weight:400;
  8407. font-style:normal;
  8408. font-size:12px;
  8409. }
  8410. #u20280 .text {
  8411. position:absolute;
  8412. align-self:center;
  8413. padding:2px 2px 2px 2px;
  8414. box-sizing:border-box;
  8415. width:100%;
  8416. }
  8417. #u20280_text {
  8418. border-width:0px;
  8419. word-wrap:break-word;
  8420. text-transform:none;
  8421. visibility:hidden;
  8422. }
  8423. #u20281_img {
  8424. border-width:0px;
  8425. position:absolute;
  8426. left:0px;
  8427. top:0px;
  8428. width:8px;
  8429. height:14px;
  8430. }
  8431. #u20281 {
  8432. border-width:0px;
  8433. position:absolute;
  8434. left:980px;
  8435. top:654px;
  8436. width:8px;
  8437. height:14px;
  8438. display:flex;
  8439. font-family:'Microsoft YaHei', sans-serif;
  8440. font-weight:400;
  8441. font-style:normal;
  8442. font-size:12px;
  8443. }
  8444. #u20281 .text {
  8445. position:absolute;
  8446. align-self:center;
  8447. padding:2px 2px 2px 2px;
  8448. box-sizing:border-box;
  8449. width:100%;
  8450. }
  8451. #u20281_text {
  8452. border-width:0px;
  8453. word-wrap:break-word;
  8454. text-transform:none;
  8455. visibility:hidden;
  8456. }
  8457. #u20282 {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:0px;
  8461. top:0px;
  8462. width:0px;
  8463. height:0px;
  8464. }
  8465. #u20283_div {
  8466. border-width:0px;
  8467. position:absolute;
  8468. left:0px;
  8469. top:0px;
  8470. width:31px;
  8471. height:30px;
  8472. background:inherit;
  8473. background-color:rgba(255, 255, 255, 1);
  8474. box-sizing:border-box;
  8475. border-width:1px;
  8476. border-style:solid;
  8477. border-color:rgba(228, 228, 228, 1);
  8478. border-radius:4px;
  8479. -moz-box-shadow:none;
  8480. -webkit-box-shadow:none;
  8481. box-shadow:none;
  8482. font-family:'Microsoft YaHei', sans-serif;
  8483. font-weight:400;
  8484. font-style:normal;
  8485. font-size:12px;
  8486. }
  8487. #u20283 {
  8488. border-width:0px;
  8489. position:absolute;
  8490. left:1202px;
  8491. top:646px;
  8492. width:31px;
  8493. height:30px;
  8494. display:flex;
  8495. font-family:'Microsoft YaHei', sans-serif;
  8496. font-weight:400;
  8497. font-style:normal;
  8498. font-size:12px;
  8499. }
  8500. #u20283 .text {
  8501. position:absolute;
  8502. align-self:center;
  8503. padding:2px 2px 2px 2px;
  8504. box-sizing:border-box;
  8505. width:100%;
  8506. }
  8507. #u20283_text {
  8508. border-width:0px;
  8509. word-wrap:break-word;
  8510. text-transform:none;
  8511. visibility:hidden;
  8512. }
  8513. #u20284_img {
  8514. border-width:0px;
  8515. position:absolute;
  8516. left:0px;
  8517. top:0px;
  8518. width:8px;
  8519. height:14px;
  8520. }
  8521. #u20284 {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:1215px;
  8525. top:654px;
  8526. width:8px;
  8527. height:14px;
  8528. display:flex;
  8529. font-family:'Microsoft YaHei', sans-serif;
  8530. font-weight:400;
  8531. font-style:normal;
  8532. font-size:12px;
  8533. }
  8534. #u20284 .text {
  8535. position:absolute;
  8536. align-self:center;
  8537. padding:2px 2px 2px 2px;
  8538. box-sizing:border-box;
  8539. width:100%;
  8540. }
  8541. #u20284_text {
  8542. border-width:0px;
  8543. word-wrap:break-word;
  8544. text-transform:none;
  8545. visibility:hidden;
  8546. }
  8547. #u20285 {
  8548. border-width:0px;
  8549. position:absolute;
  8550. left:0px;
  8551. top:0px;
  8552. width:0px;
  8553. height:0px;
  8554. }
  8555. #u20286_div {
  8556. border-width:0px;
  8557. position:absolute;
  8558. left:0px;
  8559. top:0px;
  8560. width:33px;
  8561. height:24px;
  8562. background:inherit;
  8563. background-color:rgba(255, 255, 255, 1);
  8564. border:none;
  8565. border-radius:0px;
  8566. -moz-box-shadow:none;
  8567. -webkit-box-shadow:none;
  8568. box-shadow:none;
  8569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8570. font-weight:400;
  8571. font-style:normal;
  8572. font-size:14px;
  8573. color:#BCBCBC;
  8574. text-align:left;
  8575. }
  8576. #u20286 {
  8577. border-width:0px;
  8578. position:absolute;
  8579. left:1403px;
  8580. top:649px;
  8581. width:33px;
  8582. height:24px;
  8583. display:flex;
  8584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8585. font-weight:400;
  8586. font-style:normal;
  8587. font-size:14px;
  8588. color:#BCBCBC;
  8589. text-align:left;
  8590. }
  8591. #u20286 .text {
  8592. position:absolute;
  8593. align-self:center;
  8594. padding:2px 2px 2px 2px;
  8595. box-sizing:border-box;
  8596. width:100%;
  8597. }
  8598. #u20286_text {
  8599. border-width:0px;
  8600. white-space:nowrap;
  8601. text-transform:none;
  8602. }
  8603. #u20287_div {
  8604. border-width:0px;
  8605. position:absolute;
  8606. left:0px;
  8607. top:0px;
  8608. width:40px;
  8609. height:30px;
  8610. background:inherit;
  8611. background-color:rgba(255, 255, 255, 1);
  8612. box-sizing:border-box;
  8613. border-width:1px;
  8614. border-style:solid;
  8615. border-color:rgba(228, 228, 228, 1);
  8616. border-radius:4px;
  8617. -moz-box-shadow:none;
  8618. -webkit-box-shadow:none;
  8619. box-shadow:none;
  8620. font-family:'Microsoft YaHei', sans-serif;
  8621. font-weight:400;
  8622. font-style:normal;
  8623. font-size:14px;
  8624. }
  8625. #u20287 {
  8626. border-width:0px;
  8627. position:absolute;
  8628. left:1438px;
  8629. top:646px;
  8630. width:40px;
  8631. height:30px;
  8632. display:flex;
  8633. font-family:'Microsoft YaHei', sans-serif;
  8634. font-weight:400;
  8635. font-style:normal;
  8636. font-size:14px;
  8637. }
  8638. #u20287 .text {
  8639. position:absolute;
  8640. align-self:center;
  8641. padding:2px 2px 2px 2px;
  8642. box-sizing:border-box;
  8643. width:100%;
  8644. }
  8645. #u20287_text {
  8646. border-width:0px;
  8647. word-wrap:break-word;
  8648. text-transform:none;
  8649. visibility:hidden;
  8650. }
  8651. #u20288_div {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:19px;
  8657. height:24px;
  8658. background:inherit;
  8659. background-color:rgba(255, 255, 255, 1);
  8660. border:none;
  8661. border-radius:0px;
  8662. -moz-box-shadow:none;
  8663. -webkit-box-shadow:none;
  8664. box-shadow:none;
  8665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8666. font-weight:400;
  8667. font-style:normal;
  8668. font-size:14px;
  8669. color:#BCBCBC;
  8670. text-align:left;
  8671. }
  8672. #u20288 {
  8673. border-width:0px;
  8674. position:absolute;
  8675. left:1480px;
  8676. top:650px;
  8677. width:19px;
  8678. height:24px;
  8679. display:flex;
  8680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8681. font-weight:400;
  8682. font-style:normal;
  8683. font-size:14px;
  8684. color:#BCBCBC;
  8685. text-align:left;
  8686. }
  8687. #u20288 .text {
  8688. position:absolute;
  8689. align-self:center;
  8690. padding:2px 2px 2px 2px;
  8691. box-sizing:border-box;
  8692. width:100%;
  8693. }
  8694. #u20288_text {
  8695. border-width:0px;
  8696. white-space:nowrap;
  8697. text-transform:none;
  8698. }
  8699. #u20289_input {
  8700. position:absolute;
  8701. left:0px;
  8702. top:0px;
  8703. width:34px;
  8704. height:25px;
  8705. padding:2px 2px 2px 2px;
  8706. font-family:'Microsoft YaHei', sans-serif;
  8707. font-weight:400;
  8708. font-style:normal;
  8709. font-size:13px;
  8710. letter-spacing:normal;
  8711. color:#000000;
  8712. vertical-align:none;
  8713. text-align:left;
  8714. text-transform:none;
  8715. background-color:transparent;
  8716. border-color:transparent;
  8717. }
  8718. #u20289_input.disabled {
  8719. position:absolute;
  8720. left:0px;
  8721. top:0px;
  8722. width:34px;
  8723. height:25px;
  8724. padding:2px 2px 2px 2px;
  8725. font-family:'Microsoft YaHei', sans-serif;
  8726. font-weight:400;
  8727. font-style:normal;
  8728. font-size:13px;
  8729. letter-spacing:normal;
  8730. color:#000000;
  8731. vertical-align:none;
  8732. text-align:left;
  8733. text-transform:none;
  8734. background-color:transparent;
  8735. border-color:transparent;
  8736. }
  8737. #u20289_div {
  8738. border-width:0px;
  8739. position:absolute;
  8740. left:0px;
  8741. top:0px;
  8742. width:34px;
  8743. height:25px;
  8744. background:inherit;
  8745. background-color:rgba(255, 255, 255, 1);
  8746. border:none;
  8747. border-radius:0px;
  8748. -moz-box-shadow:none;
  8749. -webkit-box-shadow:none;
  8750. box-shadow:none;
  8751. font-family:'Microsoft YaHei', sans-serif;
  8752. font-weight:400;
  8753. font-style:normal;
  8754. }
  8755. #u20289 {
  8756. border-width:0px;
  8757. position:absolute;
  8758. left:1441px;
  8759. top:648px;
  8760. width:34px;
  8761. height:25px;
  8762. display:flex;
  8763. font-family:'Microsoft YaHei', sans-serif;
  8764. font-weight:400;
  8765. font-style:normal;
  8766. }
  8767. #u20289 .text {
  8768. position:absolute;
  8769. align-self:center;
  8770. padding:2px 2px 2px 2px;
  8771. box-sizing:border-box;
  8772. width:100%;
  8773. }
  8774. #u20289_div.disabled {
  8775. border-width:0px;
  8776. position:absolute;
  8777. left:0px;
  8778. top:0px;
  8779. width:34px;
  8780. height:25px;
  8781. background:inherit;
  8782. background-color:rgba(240, 240, 240, 1);
  8783. border:none;
  8784. border-radius:0px;
  8785. -moz-box-shadow:none;
  8786. -webkit-box-shadow:none;
  8787. box-shadow:none;
  8788. font-family:'Microsoft YaHei', sans-serif;
  8789. font-weight:400;
  8790. font-style:normal;
  8791. }
  8792. #u20289.disabled {
  8793. }
  8794. #u20290 {
  8795. border-width:0px;
  8796. position:absolute;
  8797. left:0px;
  8798. top:0px;
  8799. width:0px;
  8800. height:0px;
  8801. }
  8802. #u20291_div {
  8803. border-width:0px;
  8804. position:absolute;
  8805. left:0px;
  8806. top:0px;
  8807. width:140px;
  8808. height:28px;
  8809. background:inherit;
  8810. background-color:rgba(255, 255, 255, 1);
  8811. box-sizing:border-box;
  8812. border-width:1px;
  8813. border-style:solid;
  8814. border-color:rgba(201, 201, 201, 1);
  8815. border-radius:4px;
  8816. -moz-box-shadow:none;
  8817. -webkit-box-shadow:none;
  8818. box-shadow:none;
  8819. font-family:'Microsoft YaHei', sans-serif;
  8820. font-weight:400;
  8821. font-style:normal;
  8822. font-size:14px;
  8823. color:#CCCCCC;
  8824. text-align:left;
  8825. }
  8826. #u20291 {
  8827. border-width:0px;
  8828. position:absolute;
  8829. left:528px;
  8830. top:145px;
  8831. width:140px;
  8832. height:28px;
  8833. display:flex;
  8834. font-family:'Microsoft YaHei', sans-serif;
  8835. font-weight:400;
  8836. font-style:normal;
  8837. font-size:14px;
  8838. color:#CCCCCC;
  8839. text-align:left;
  8840. }
  8841. #u20291 .text {
  8842. position:absolute;
  8843. align-self:center;
  8844. padding:2px 8px 2px 8px;
  8845. box-sizing:border-box;
  8846. width:100%;
  8847. }
  8848. #u20291_text {
  8849. border-width:0px;
  8850. word-wrap:break-word;
  8851. text-transform:none;
  8852. visibility:hidden;
  8853. }
  8854. #u20292_input {
  8855. position:absolute;
  8856. left:0px;
  8857. top:0px;
  8858. width:114px;
  8859. height:26px;
  8860. padding:2px 2px 2px 2px;
  8861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8862. font-weight:400;
  8863. font-style:normal;
  8864. font-size:14px;
  8865. letter-spacing:normal;
  8866. color:#000000;
  8867. vertical-align:none;
  8868. text-align:left;
  8869. text-transform:none;
  8870. background-color:transparent;
  8871. border-color:transparent;
  8872. }
  8873. #u20292_input.disabled {
  8874. position:absolute;
  8875. left:0px;
  8876. top:0px;
  8877. width:114px;
  8878. height:26px;
  8879. padding:2px 2px 2px 2px;
  8880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8881. font-weight:400;
  8882. font-style:normal;
  8883. font-size:14px;
  8884. letter-spacing:normal;
  8885. color:#000000;
  8886. vertical-align:none;
  8887. text-align:left;
  8888. text-transform:none;
  8889. background-color:transparent;
  8890. border-color:transparent;
  8891. }
  8892. #u20292_div {
  8893. border-width:0px;
  8894. position:absolute;
  8895. left:0px;
  8896. top:0px;
  8897. width:114px;
  8898. height:26px;
  8899. background:inherit;
  8900. background-color:rgba(255, 255, 255, 1);
  8901. border:none;
  8902. border-radius:0px;
  8903. -moz-box-shadow:none;
  8904. -webkit-box-shadow:none;
  8905. box-shadow:none;
  8906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8907. font-weight:400;
  8908. font-style:normal;
  8909. font-size:14px;
  8910. }
  8911. #u20292 {
  8912. border-width:0px;
  8913. position:absolute;
  8914. left:534px;
  8915. top:146px;
  8916. width:114px;
  8917. height:26px;
  8918. display:flex;
  8919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8920. font-weight:400;
  8921. font-style:normal;
  8922. font-size:14px;
  8923. }
  8924. #u20292 .text {
  8925. position:absolute;
  8926. align-self:center;
  8927. padding:2px 2px 2px 2px;
  8928. box-sizing:border-box;
  8929. width:100%;
  8930. }
  8931. #u20292_div.disabled {
  8932. border-width:0px;
  8933. position:absolute;
  8934. left:0px;
  8935. top:0px;
  8936. width:114px;
  8937. height:26px;
  8938. background:inherit;
  8939. background-color:rgba(240, 240, 240, 1);
  8940. border:none;
  8941. border-radius:0px;
  8942. -moz-box-shadow:none;
  8943. -webkit-box-shadow:none;
  8944. box-shadow:none;
  8945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8946. font-weight:400;
  8947. font-style:normal;
  8948. font-size:14px;
  8949. }
  8950. #u20292.disabled {
  8951. }
  8952. #u20293_img {
  8953. border-width:0px;
  8954. position:absolute;
  8955. left:0px;
  8956. top:0px;
  8957. width:13px;
  8958. height:15px;
  8959. }
  8960. #u20293 {
  8961. border-width:0px;
  8962. position:absolute;
  8963. left:648px;
  8964. top:152px;
  8965. width:13px;
  8966. height:15px;
  8967. display:flex;
  8968. }
  8969. #u20293 .text {
  8970. position:absolute;
  8971. align-self:center;
  8972. padding:2px 2px 2px 2px;
  8973. box-sizing:border-box;
  8974. width:100%;
  8975. }
  8976. #u20293_text {
  8977. border-width:0px;
  8978. word-wrap:break-word;
  8979. text-transform:none;
  8980. visibility:hidden;
  8981. }
  8982. #u20294 {
  8983. border-width:0px;
  8984. position:absolute;
  8985. left:0px;
  8986. top:0px;
  8987. width:0px;
  8988. height:0px;
  8989. }
  8990. #u20295_div {
  8991. border-width:0px;
  8992. position:absolute;
  8993. left:0px;
  8994. top:0px;
  8995. width:140px;
  8996. height:30px;
  8997. background:inherit;
  8998. background-color:rgba(255, 255, 255, 1);
  8999. box-sizing:border-box;
  9000. border-width:1px;
  9001. border-style:solid;
  9002. border-color:rgba(201, 201, 201, 1);
  9003. border-radius:4px;
  9004. -moz-box-shadow:none;
  9005. -webkit-box-shadow:none;
  9006. box-shadow:none;
  9007. font-family:'Microsoft YaHei', sans-serif;
  9008. font-weight:400;
  9009. font-style:normal;
  9010. font-size:14px;
  9011. color:#CCCCCC;
  9012. text-align:left;
  9013. }
  9014. #u20295 {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:378px;
  9018. top:144px;
  9019. width:140px;
  9020. height:30px;
  9021. display:flex;
  9022. font-family:'Microsoft YaHei', sans-serif;
  9023. font-weight:400;
  9024. font-style:normal;
  9025. font-size:14px;
  9026. color:#CCCCCC;
  9027. text-align:left;
  9028. }
  9029. #u20295 .text {
  9030. position:absolute;
  9031. align-self:center;
  9032. padding:2px 8px 2px 8px;
  9033. box-sizing:border-box;
  9034. width:100%;
  9035. }
  9036. #u20295_text {
  9037. border-width:0px;
  9038. word-wrap:break-word;
  9039. text-transform:none;
  9040. visibility:hidden;
  9041. }
  9042. #u20296_input {
  9043. position:absolute;
  9044. left:0px;
  9045. top:0px;
  9046. width:127px;
  9047. height:25px;
  9048. padding:2px 2px 2px 2px;
  9049. font-family:'Microsoft YaHei', sans-serif;
  9050. font-weight:400;
  9051. font-style:normal;
  9052. font-size:10px;
  9053. letter-spacing:normal;
  9054. color:#000000;
  9055. vertical-align:none;
  9056. text-align:left;
  9057. text-transform:none;
  9058. background-color:transparent;
  9059. border-color:transparent;
  9060. }
  9061. #u20296_input.disabled {
  9062. position:absolute;
  9063. left:0px;
  9064. top:0px;
  9065. width:127px;
  9066. height:25px;
  9067. padding:2px 2px 2px 2px;
  9068. font-family:'Microsoft YaHei', sans-serif;
  9069. font-weight:400;
  9070. font-style:normal;
  9071. font-size:10px;
  9072. letter-spacing:normal;
  9073. color:#000000;
  9074. vertical-align:none;
  9075. text-align:left;
  9076. text-transform:none;
  9077. background-color:transparent;
  9078. border-color:transparent;
  9079. }
  9080. #u20296_div {
  9081. border-width:0px;
  9082. position:absolute;
  9083. left:0px;
  9084. top:0px;
  9085. width:127px;
  9086. height:25px;
  9087. background:inherit;
  9088. background-color:rgba(255, 255, 255, 1);
  9089. border:none;
  9090. border-radius:0px;
  9091. -moz-box-shadow:none;
  9092. -webkit-box-shadow:none;
  9093. box-shadow:none;
  9094. font-family:'Microsoft YaHei', sans-serif;
  9095. font-weight:400;
  9096. font-style:normal;
  9097. font-size:10px;
  9098. }
  9099. #u20296 {
  9100. border-width:0px;
  9101. position:absolute;
  9102. left:386px;
  9103. top:145px;
  9104. width:127px;
  9105. height:25px;
  9106. display:flex;
  9107. font-family:'Microsoft YaHei', sans-serif;
  9108. font-weight:400;
  9109. font-style:normal;
  9110. font-size:10px;
  9111. }
  9112. #u20296 .text {
  9113. position:absolute;
  9114. align-self:center;
  9115. padding:2px 2px 2px 2px;
  9116. box-sizing:border-box;
  9117. width:100%;
  9118. }
  9119. #u20296_div.disabled {
  9120. border-width:0px;
  9121. position:absolute;
  9122. left:0px;
  9123. top:0px;
  9124. width:127px;
  9125. height:25px;
  9126. background:inherit;
  9127. background-color:rgba(240, 240, 240, 1);
  9128. border:none;
  9129. border-radius:0px;
  9130. -moz-box-shadow:none;
  9131. -webkit-box-shadow:none;
  9132. box-shadow:none;
  9133. font-family:'Microsoft YaHei', sans-serif;
  9134. font-weight:400;
  9135. font-style:normal;
  9136. font-size:10px;
  9137. }
  9138. #u20296.disabled {
  9139. }
  9140. #u20297 {
  9141. border-width:0px;
  9142. position:absolute;
  9143. left:0px;
  9144. top:0px;
  9145. width:0px;
  9146. height:0px;
  9147. }
  9148. #u20298_div {
  9149. border-width:0px;
  9150. position:absolute;
  9151. left:0px;
  9152. top:0px;
  9153. width:140px;
  9154. height:30px;
  9155. background:inherit;
  9156. background-color:rgba(255, 255, 255, 1);
  9157. box-sizing:border-box;
  9158. border-width:1px;
  9159. border-style:solid;
  9160. border-color:rgba(215, 215, 215, 1);
  9161. border-radius:4px;
  9162. -moz-box-shadow:none;
  9163. -webkit-box-shadow:none;
  9164. box-shadow:none;
  9165. font-size:11px;
  9166. }
  9167. #u20298 {
  9168. border-width:0px;
  9169. position:absolute;
  9170. left:228px;
  9171. top:145px;
  9172. width:140px;
  9173. height:30px;
  9174. display:flex;
  9175. font-size:11px;
  9176. }
  9177. #u20298 .text {
  9178. position:absolute;
  9179. align-self:center;
  9180. padding:2px 2px 2px 2px;
  9181. box-sizing:border-box;
  9182. width:100%;
  9183. }
  9184. #u20298_text {
  9185. border-width:0px;
  9186. word-wrap:break-word;
  9187. text-transform:none;
  9188. visibility:hidden;
  9189. }
  9190. #u20299_input {
  9191. position:absolute;
  9192. left:0px;
  9193. top:0px;
  9194. width:126px;
  9195. height:23px;
  9196. padding:2px 2px 2px 2px;
  9197. font-family:'ArialMT', 'Arial', sans-serif;
  9198. font-weight:400;
  9199. font-style:normal;
  9200. font-size:11px;
  9201. letter-spacing:normal;
  9202. color:#AAAAAA;
  9203. vertical-align:none;
  9204. text-align:left;
  9205. text-transform:none;
  9206. background-color:transparent;
  9207. border-color:transparent;
  9208. }
  9209. #u20299_input.disabled {
  9210. position:absolute;
  9211. left:0px;
  9212. top:0px;
  9213. width:126px;
  9214. height:23px;
  9215. padding:2px 2px 2px 2px;
  9216. font-family:'ArialMT', 'Arial', sans-serif;
  9217. font-weight:400;
  9218. font-style:normal;
  9219. font-size:11px;
  9220. letter-spacing:normal;
  9221. color:#AAAAAA;
  9222. vertical-align:none;
  9223. text-align:left;
  9224. text-transform:none;
  9225. background-color:transparent;
  9226. border-color:transparent;
  9227. }
  9228. #u20299_div {
  9229. border-width:0px;
  9230. position:absolute;
  9231. left:0px;
  9232. top:0px;
  9233. width:126px;
  9234. height:23px;
  9235. background:inherit;
  9236. background-color:rgba(255, 255, 255, 1);
  9237. border:none;
  9238. border-radius:0px;
  9239. -moz-box-shadow:none;
  9240. -webkit-box-shadow:none;
  9241. box-shadow:none;
  9242. font-size:11px;
  9243. color:#AAAAAA;
  9244. }
  9245. #u20299 {
  9246. border-width:0px;
  9247. position:absolute;
  9248. left:235px;
  9249. top:147px;
  9250. width:126px;
  9251. height:23px;
  9252. display:flex;
  9253. font-size:11px;
  9254. color:#AAAAAA;
  9255. }
  9256. #u20299 .text {
  9257. position:absolute;
  9258. align-self:flex-start;
  9259. padding:2px 2px 2px 2px;
  9260. box-sizing:border-box;
  9261. width:100%;
  9262. }
  9263. #u20299_div.disabled {
  9264. border-width:0px;
  9265. position:absolute;
  9266. left:0px;
  9267. top:0px;
  9268. width:126px;
  9269. height:23px;
  9270. background:inherit;
  9271. background-color:rgba(240, 240, 240, 1);
  9272. border:none;
  9273. border-radius:0px;
  9274. -moz-box-shadow:none;
  9275. -webkit-box-shadow:none;
  9276. box-shadow:none;
  9277. font-size:11px;
  9278. color:#AAAAAA;
  9279. }
  9280. #u20299.disabled {
  9281. }
  9282. .u20299_input_option {
  9283. font-size:11px;
  9284. }
  9285. #u20300 {
  9286. border-width:0px;
  9287. position:absolute;
  9288. left:0px;
  9289. top:0px;
  9290. width:0px;
  9291. height:0px;
  9292. }
  9293. #u20301_div {
  9294. border-width:0px;
  9295. position:absolute;
  9296. left:0px;
  9297. top:0px;
  9298. width:140px;
  9299. height:30px;
  9300. background:inherit;
  9301. background-color:rgba(255, 255, 255, 1);
  9302. box-sizing:border-box;
  9303. border-width:1px;
  9304. border-style:solid;
  9305. border-color:rgba(201, 201, 201, 1);
  9306. border-radius:4px;
  9307. -moz-box-shadow:none;
  9308. -webkit-box-shadow:none;
  9309. box-shadow:none;
  9310. font-family:'Microsoft YaHei', sans-serif;
  9311. font-weight:400;
  9312. font-style:normal;
  9313. font-size:14px;
  9314. color:#CCCCCC;
  9315. text-align:left;
  9316. }
  9317. #u20301 {
  9318. border-width:0px;
  9319. position:absolute;
  9320. left:678px;
  9321. top:144px;
  9322. width:140px;
  9323. height:30px;
  9324. display:flex;
  9325. font-family:'Microsoft YaHei', sans-serif;
  9326. font-weight:400;
  9327. font-style:normal;
  9328. font-size:14px;
  9329. color:#CCCCCC;
  9330. text-align:left;
  9331. }
  9332. #u20301 .text {
  9333. position:absolute;
  9334. align-self:center;
  9335. padding:2px 8px 2px 8px;
  9336. box-sizing:border-box;
  9337. width:100%;
  9338. }
  9339. #u20301_text {
  9340. border-width:0px;
  9341. word-wrap:break-word;
  9342. text-transform:none;
  9343. visibility:hidden;
  9344. }
  9345. #u20302_input {
  9346. position:absolute;
  9347. left:0px;
  9348. top:0px;
  9349. width:127px;
  9350. height:25px;
  9351. padding:2px 2px 2px 2px;
  9352. font-family:'Microsoft YaHei', sans-serif;
  9353. font-weight:400;
  9354. font-style:normal;
  9355. font-size:10px;
  9356. letter-spacing:normal;
  9357. color:#000000;
  9358. vertical-align:none;
  9359. text-align:left;
  9360. text-transform:none;
  9361. background-color:transparent;
  9362. border-color:transparent;
  9363. }
  9364. #u20302_input.disabled {
  9365. position:absolute;
  9366. left:0px;
  9367. top:0px;
  9368. width:127px;
  9369. height:25px;
  9370. padding:2px 2px 2px 2px;
  9371. font-family:'Microsoft YaHei', sans-serif;
  9372. font-weight:400;
  9373. font-style:normal;
  9374. font-size:10px;
  9375. letter-spacing:normal;
  9376. color:#000000;
  9377. vertical-align:none;
  9378. text-align:left;
  9379. text-transform:none;
  9380. background-color:transparent;
  9381. border-color:transparent;
  9382. }
  9383. #u20302_div {
  9384. border-width:0px;
  9385. position:absolute;
  9386. left:0px;
  9387. top:0px;
  9388. width:127px;
  9389. height:25px;
  9390. background:inherit;
  9391. background-color:rgba(255, 255, 255, 1);
  9392. border:none;
  9393. border-radius:0px;
  9394. -moz-box-shadow:none;
  9395. -webkit-box-shadow:none;
  9396. box-shadow:none;
  9397. font-family:'Microsoft YaHei', sans-serif;
  9398. font-weight:400;
  9399. font-style:normal;
  9400. font-size:10px;
  9401. }
  9402. #u20302 {
  9403. border-width:0px;
  9404. position:absolute;
  9405. left:686px;
  9406. top:145px;
  9407. width:127px;
  9408. height:25px;
  9409. display:flex;
  9410. font-family:'Microsoft YaHei', sans-serif;
  9411. font-weight:400;
  9412. font-style:normal;
  9413. font-size:10px;
  9414. }
  9415. #u20302 .text {
  9416. position:absolute;
  9417. align-self:center;
  9418. padding:2px 2px 2px 2px;
  9419. box-sizing:border-box;
  9420. width:100%;
  9421. }
  9422. #u20302_div.disabled {
  9423. border-width:0px;
  9424. position:absolute;
  9425. left:0px;
  9426. top:0px;
  9427. width:127px;
  9428. height:25px;
  9429. background:inherit;
  9430. background-color:rgba(240, 240, 240, 1);
  9431. border:none;
  9432. border-radius:0px;
  9433. -moz-box-shadow:none;
  9434. -webkit-box-shadow:none;
  9435. box-shadow:none;
  9436. font-family:'Microsoft YaHei', sans-serif;
  9437. font-weight:400;
  9438. font-style:normal;
  9439. font-size:10px;
  9440. }
  9441. #u20302.disabled {
  9442. }
  9443. #u20303 {
  9444. border-width:0px;
  9445. position:absolute;
  9446. left:0px;
  9447. top:0px;
  9448. width:0px;
  9449. height:0px;
  9450. }
  9451. #u20304_div {
  9452. border-width:0px;
  9453. position:absolute;
  9454. left:0px;
  9455. top:0px;
  9456. width:140px;
  9457. height:30px;
  9458. background:inherit;
  9459. background-color:rgba(255, 255, 255, 1);
  9460. box-sizing:border-box;
  9461. border-width:1px;
  9462. border-style:solid;
  9463. border-color:rgba(201, 201, 201, 1);
  9464. border-radius:4px;
  9465. -moz-box-shadow:none;
  9466. -webkit-box-shadow:none;
  9467. box-shadow:none;
  9468. font-family:'Microsoft YaHei', sans-serif;
  9469. font-weight:400;
  9470. font-style:normal;
  9471. font-size:14px;
  9472. color:#CCCCCC;
  9473. text-align:left;
  9474. }
  9475. #u20304 {
  9476. border-width:0px;
  9477. position:absolute;
  9478. left:228px;
  9479. top:184px;
  9480. width:140px;
  9481. height:30px;
  9482. display:flex;
  9483. font-family:'Microsoft YaHei', sans-serif;
  9484. font-weight:400;
  9485. font-style:normal;
  9486. font-size:14px;
  9487. color:#CCCCCC;
  9488. text-align:left;
  9489. }
  9490. #u20304 .text {
  9491. position:absolute;
  9492. align-self:center;
  9493. padding:2px 8px 2px 8px;
  9494. box-sizing:border-box;
  9495. width:100%;
  9496. }
  9497. #u20304_text {
  9498. border-width:0px;
  9499. word-wrap:break-word;
  9500. text-transform:none;
  9501. visibility:hidden;
  9502. }
  9503. #u20305_input {
  9504. position:absolute;
  9505. left:0px;
  9506. top:0px;
  9507. width:127px;
  9508. height:25px;
  9509. padding:2px 2px 2px 2px;
  9510. font-family:'Microsoft YaHei', sans-serif;
  9511. font-weight:400;
  9512. font-style:normal;
  9513. font-size:10px;
  9514. letter-spacing:normal;
  9515. color:#000000;
  9516. vertical-align:none;
  9517. text-align:left;
  9518. text-transform:none;
  9519. background-color:transparent;
  9520. border-color:transparent;
  9521. }
  9522. #u20305_input.disabled {
  9523. position:absolute;
  9524. left:0px;
  9525. top:0px;
  9526. width:127px;
  9527. height:25px;
  9528. padding:2px 2px 2px 2px;
  9529. font-family:'Microsoft YaHei', sans-serif;
  9530. font-weight:400;
  9531. font-style:normal;
  9532. font-size:10px;
  9533. letter-spacing:normal;
  9534. color:#000000;
  9535. vertical-align:none;
  9536. text-align:left;
  9537. text-transform:none;
  9538. background-color:transparent;
  9539. border-color:transparent;
  9540. }
  9541. #u20305_div {
  9542. border-width:0px;
  9543. position:absolute;
  9544. left:0px;
  9545. top:0px;
  9546. width:127px;
  9547. height:25px;
  9548. background:inherit;
  9549. background-color:rgba(255, 255, 255, 1);
  9550. border:none;
  9551. border-radius:0px;
  9552. -moz-box-shadow:none;
  9553. -webkit-box-shadow:none;
  9554. box-shadow:none;
  9555. font-family:'Microsoft YaHei', sans-serif;
  9556. font-weight:400;
  9557. font-style:normal;
  9558. font-size:10px;
  9559. }
  9560. #u20305 {
  9561. border-width:0px;
  9562. position:absolute;
  9563. left:236px;
  9564. top:185px;
  9565. width:127px;
  9566. height:25px;
  9567. display:flex;
  9568. font-family:'Microsoft YaHei', sans-serif;
  9569. font-weight:400;
  9570. font-style:normal;
  9571. font-size:10px;
  9572. }
  9573. #u20305 .text {
  9574. position:absolute;
  9575. align-self:center;
  9576. padding:2px 2px 2px 2px;
  9577. box-sizing:border-box;
  9578. width:100%;
  9579. }
  9580. #u20305_div.disabled {
  9581. border-width:0px;
  9582. position:absolute;
  9583. left:0px;
  9584. top:0px;
  9585. width:127px;
  9586. height:25px;
  9587. background:inherit;
  9588. background-color:rgba(240, 240, 240, 1);
  9589. border:none;
  9590. border-radius:0px;
  9591. -moz-box-shadow:none;
  9592. -webkit-box-shadow:none;
  9593. box-shadow:none;
  9594. font-family:'Microsoft YaHei', sans-serif;
  9595. font-weight:400;
  9596. font-style:normal;
  9597. font-size:10px;
  9598. }
  9599. #u20305.disabled {
  9600. }
  9601. #u20306 {
  9602. border-width:0px;
  9603. position:absolute;
  9604. left:0px;
  9605. top:0px;
  9606. width:0px;
  9607. height:0px;
  9608. }
  9609. #u20307_div {
  9610. border-width:0px;
  9611. position:absolute;
  9612. left:0px;
  9613. top:0px;
  9614. width:140px;
  9615. height:30px;
  9616. background:inherit;
  9617. background-color:rgba(255, 255, 255, 1);
  9618. box-sizing:border-box;
  9619. border-width:1px;
  9620. border-style:solid;
  9621. border-color:rgba(201, 201, 201, 1);
  9622. border-radius:4px;
  9623. -moz-box-shadow:none;
  9624. -webkit-box-shadow:none;
  9625. box-shadow:none;
  9626. font-family:'Microsoft YaHei', sans-serif;
  9627. font-weight:400;
  9628. font-style:normal;
  9629. font-size:14px;
  9630. color:#CCCCCC;
  9631. text-align:left;
  9632. }
  9633. #u20307 {
  9634. border-width:0px;
  9635. position:absolute;
  9636. left:378px;
  9637. top:185px;
  9638. width:140px;
  9639. height:30px;
  9640. display:flex;
  9641. font-family:'Microsoft YaHei', sans-serif;
  9642. font-weight:400;
  9643. font-style:normal;
  9644. font-size:14px;
  9645. color:#CCCCCC;
  9646. text-align:left;
  9647. }
  9648. #u20307 .text {
  9649. position:absolute;
  9650. align-self:center;
  9651. padding:2px 8px 2px 8px;
  9652. box-sizing:border-box;
  9653. width:100%;
  9654. }
  9655. #u20307_text {
  9656. border-width:0px;
  9657. word-wrap:break-word;
  9658. text-transform:none;
  9659. visibility:hidden;
  9660. }
  9661. #u20308_input {
  9662. position:absolute;
  9663. left:0px;
  9664. top:0px;
  9665. width:127px;
  9666. height:25px;
  9667. padding:2px 2px 2px 2px;
  9668. font-family:'Microsoft YaHei', sans-serif;
  9669. font-weight:400;
  9670. font-style:normal;
  9671. font-size:10px;
  9672. letter-spacing:normal;
  9673. color:#000000;
  9674. vertical-align:none;
  9675. text-align:left;
  9676. text-transform:none;
  9677. background-color:transparent;
  9678. border-color:transparent;
  9679. }
  9680. #u20308_input.disabled {
  9681. position:absolute;
  9682. left:0px;
  9683. top:0px;
  9684. width:127px;
  9685. height:25px;
  9686. padding:2px 2px 2px 2px;
  9687. font-family:'Microsoft YaHei', sans-serif;
  9688. font-weight:400;
  9689. font-style:normal;
  9690. font-size:10px;
  9691. letter-spacing:normal;
  9692. color:#000000;
  9693. vertical-align:none;
  9694. text-align:left;
  9695. text-transform:none;
  9696. background-color:transparent;
  9697. border-color:transparent;
  9698. }
  9699. #u20308_div {
  9700. border-width:0px;
  9701. position:absolute;
  9702. left:0px;
  9703. top:0px;
  9704. width:127px;
  9705. height:25px;
  9706. background:inherit;
  9707. background-color:rgba(255, 255, 255, 1);
  9708. border:none;
  9709. border-radius:0px;
  9710. -moz-box-shadow:none;
  9711. -webkit-box-shadow:none;
  9712. box-shadow:none;
  9713. font-family:'Microsoft YaHei', sans-serif;
  9714. font-weight:400;
  9715. font-style:normal;
  9716. font-size:10px;
  9717. }
  9718. #u20308 {
  9719. border-width:0px;
  9720. position:absolute;
  9721. left:386px;
  9722. top:186px;
  9723. width:127px;
  9724. height:25px;
  9725. display:flex;
  9726. font-family:'Microsoft YaHei', sans-serif;
  9727. font-weight:400;
  9728. font-style:normal;
  9729. font-size:10px;
  9730. }
  9731. #u20308 .text {
  9732. position:absolute;
  9733. align-self:center;
  9734. padding:2px 2px 2px 2px;
  9735. box-sizing:border-box;
  9736. width:100%;
  9737. }
  9738. #u20308_div.disabled {
  9739. border-width:0px;
  9740. position:absolute;
  9741. left:0px;
  9742. top:0px;
  9743. width:127px;
  9744. height:25px;
  9745. background:inherit;
  9746. background-color:rgba(240, 240, 240, 1);
  9747. border:none;
  9748. border-radius:0px;
  9749. -moz-box-shadow:none;
  9750. -webkit-box-shadow:none;
  9751. box-shadow:none;
  9752. font-family:'Microsoft YaHei', sans-serif;
  9753. font-weight:400;
  9754. font-style:normal;
  9755. font-size:10px;
  9756. }
  9757. #u20308.disabled {
  9758. }
  9759. #u20309 {
  9760. border-width:0px;
  9761. position:absolute;
  9762. left:0px;
  9763. top:0px;
  9764. width:0px;
  9765. height:0px;
  9766. }
  9767. #u20310_div {
  9768. border-width:0px;
  9769. position:absolute;
  9770. left:0px;
  9771. top:0px;
  9772. width:140px;
  9773. height:30px;
  9774. background:inherit;
  9775. background-color:rgba(255, 255, 255, 1);
  9776. box-sizing:border-box;
  9777. border-width:1px;
  9778. border-style:solid;
  9779. border-color:rgba(215, 215, 215, 1);
  9780. border-radius:4px;
  9781. -moz-box-shadow:none;
  9782. -webkit-box-shadow:none;
  9783. box-shadow:none;
  9784. font-size:11px;
  9785. }
  9786. #u20310 {
  9787. border-width:0px;
  9788. position:absolute;
  9789. left:528px;
  9790. top:184px;
  9791. width:140px;
  9792. height:30px;
  9793. display:flex;
  9794. font-size:11px;
  9795. }
  9796. #u20310 .text {
  9797. position:absolute;
  9798. align-self:center;
  9799. padding:2px 2px 2px 2px;
  9800. box-sizing:border-box;
  9801. width:100%;
  9802. }
  9803. #u20310_text {
  9804. border-width:0px;
  9805. word-wrap:break-word;
  9806. text-transform:none;
  9807. visibility:hidden;
  9808. }
  9809. #u20311_input {
  9810. position:absolute;
  9811. left:0px;
  9812. top:0px;
  9813. width:126px;
  9814. height:23px;
  9815. padding:2px 2px 2px 2px;
  9816. font-family:'ArialMT', 'Arial', sans-serif;
  9817. font-weight:400;
  9818. font-style:normal;
  9819. font-size:11px;
  9820. letter-spacing:normal;
  9821. color:#AAAAAA;
  9822. vertical-align:none;
  9823. text-align:left;
  9824. text-transform:none;
  9825. background-color:transparent;
  9826. border-color:transparent;
  9827. }
  9828. #u20311_input.disabled {
  9829. position:absolute;
  9830. left:0px;
  9831. top:0px;
  9832. width:126px;
  9833. height:23px;
  9834. padding:2px 2px 2px 2px;
  9835. font-family:'ArialMT', 'Arial', sans-serif;
  9836. font-weight:400;
  9837. font-style:normal;
  9838. font-size:11px;
  9839. letter-spacing:normal;
  9840. color:#AAAAAA;
  9841. vertical-align:none;
  9842. text-align:left;
  9843. text-transform:none;
  9844. background-color:transparent;
  9845. border-color:transparent;
  9846. }
  9847. #u20311_div {
  9848. border-width:0px;
  9849. position:absolute;
  9850. left:0px;
  9851. top:0px;
  9852. width:126px;
  9853. height:23px;
  9854. background:inherit;
  9855. background-color:rgba(255, 255, 255, 1);
  9856. border:none;
  9857. border-radius:0px;
  9858. -moz-box-shadow:none;
  9859. -webkit-box-shadow:none;
  9860. box-shadow:none;
  9861. font-size:11px;
  9862. color:#AAAAAA;
  9863. }
  9864. #u20311 {
  9865. border-width:0px;
  9866. position:absolute;
  9867. left:535px;
  9868. top:186px;
  9869. width:126px;
  9870. height:23px;
  9871. display:flex;
  9872. font-size:11px;
  9873. color:#AAAAAA;
  9874. }
  9875. #u20311 .text {
  9876. position:absolute;
  9877. align-self:flex-start;
  9878. padding:2px 2px 2px 2px;
  9879. box-sizing:border-box;
  9880. width:100%;
  9881. }
  9882. #u20311_div.disabled {
  9883. border-width:0px;
  9884. position:absolute;
  9885. left:0px;
  9886. top:0px;
  9887. width:126px;
  9888. height:23px;
  9889. background:inherit;
  9890. background-color:rgba(240, 240, 240, 1);
  9891. border:none;
  9892. border-radius:0px;
  9893. -moz-box-shadow:none;
  9894. -webkit-box-shadow:none;
  9895. box-shadow:none;
  9896. font-size:11px;
  9897. color:#AAAAAA;
  9898. }
  9899. #u20311.disabled {
  9900. }
  9901. .u20311_input_option {
  9902. font-size:11px;
  9903. }
  9904. #u20312 {
  9905. border-width:0px;
  9906. position:absolute;
  9907. left:0px;
  9908. top:0px;
  9909. width:0px;
  9910. height:0px;
  9911. }
  9912. #u20313_div {
  9913. border-width:0px;
  9914. position:absolute;
  9915. left:0px;
  9916. top:0px;
  9917. width:140px;
  9918. height:30px;
  9919. background:inherit;
  9920. background-color:rgba(255, 255, 255, 1);
  9921. box-sizing:border-box;
  9922. border-width:1px;
  9923. border-style:solid;
  9924. border-color:rgba(215, 215, 215, 1);
  9925. border-radius:4px;
  9926. -moz-box-shadow:none;
  9927. -webkit-box-shadow:none;
  9928. box-shadow:none;
  9929. font-size:11px;
  9930. }
  9931. #u20313 {
  9932. border-width:0px;
  9933. position:absolute;
  9934. left:1428px;
  9935. top:145px;
  9936. width:140px;
  9937. height:30px;
  9938. display:flex;
  9939. font-size:11px;
  9940. }
  9941. #u20313 .text {
  9942. position:absolute;
  9943. align-self:center;
  9944. padding:2px 2px 2px 2px;
  9945. box-sizing:border-box;
  9946. width:100%;
  9947. }
  9948. #u20313_text {
  9949. border-width:0px;
  9950. word-wrap:break-word;
  9951. text-transform:none;
  9952. visibility:hidden;
  9953. }
  9954. #u20314_input {
  9955. position:absolute;
  9956. left:0px;
  9957. top:0px;
  9958. width:126px;
  9959. height:23px;
  9960. padding:2px 2px 2px 2px;
  9961. font-family:'ArialMT', 'Arial', sans-serif;
  9962. font-weight:400;
  9963. font-style:normal;
  9964. font-size:11px;
  9965. letter-spacing:normal;
  9966. color:#AAAAAA;
  9967. vertical-align:none;
  9968. text-align:left;
  9969. text-transform:none;
  9970. background-color:transparent;
  9971. border-color:transparent;
  9972. }
  9973. #u20314_input.disabled {
  9974. position:absolute;
  9975. left:0px;
  9976. top:0px;
  9977. width:126px;
  9978. height:23px;
  9979. padding:2px 2px 2px 2px;
  9980. font-family:'ArialMT', 'Arial', sans-serif;
  9981. font-weight:400;
  9982. font-style:normal;
  9983. font-size:11px;
  9984. letter-spacing:normal;
  9985. color:#AAAAAA;
  9986. vertical-align:none;
  9987. text-align:left;
  9988. text-transform:none;
  9989. background-color:transparent;
  9990. border-color:transparent;
  9991. }
  9992. #u20314_div {
  9993. border-width:0px;
  9994. position:absolute;
  9995. left:0px;
  9996. top:0px;
  9997. width:126px;
  9998. height:23px;
  9999. background:inherit;
  10000. background-color:rgba(255, 255, 255, 1);
  10001. border:none;
  10002. border-radius:0px;
  10003. -moz-box-shadow:none;
  10004. -webkit-box-shadow:none;
  10005. box-shadow:none;
  10006. font-size:11px;
  10007. color:#AAAAAA;
  10008. }
  10009. #u20314 {
  10010. border-width:0px;
  10011. position:absolute;
  10012. left:1435px;
  10013. top:147px;
  10014. width:126px;
  10015. height:23px;
  10016. display:flex;
  10017. font-size:11px;
  10018. color:#AAAAAA;
  10019. }
  10020. #u20314 .text {
  10021. position:absolute;
  10022. align-self:flex-start;
  10023. padding:2px 2px 2px 2px;
  10024. box-sizing:border-box;
  10025. width:100%;
  10026. }
  10027. #u20314_div.disabled {
  10028. border-width:0px;
  10029. position:absolute;
  10030. left:0px;
  10031. top:0px;
  10032. width:126px;
  10033. height:23px;
  10034. background:inherit;
  10035. background-color:rgba(240, 240, 240, 1);
  10036. border:none;
  10037. border-radius:0px;
  10038. -moz-box-shadow:none;
  10039. -webkit-box-shadow:none;
  10040. box-shadow:none;
  10041. font-size:11px;
  10042. color:#AAAAAA;
  10043. }
  10044. #u20314.disabled {
  10045. }
  10046. .u20314_input_option {
  10047. font-size:11px;
  10048. }
  10049. #u20315 {
  10050. border-width:0px;
  10051. position:absolute;
  10052. left:0px;
  10053. top:0px;
  10054. width:0px;
  10055. height:0px;
  10056. }
  10057. #u20316_div {
  10058. border-width:0px;
  10059. position:absolute;
  10060. left:0px;
  10061. top:0px;
  10062. width:140px;
  10063. height:30px;
  10064. background:inherit;
  10065. background-color:rgba(255, 255, 255, 1);
  10066. box-sizing:border-box;
  10067. border-width:1px;
  10068. border-style:solid;
  10069. border-color:rgba(215, 215, 215, 1);
  10070. border-radius:4px;
  10071. -moz-box-shadow:none;
  10072. -webkit-box-shadow:none;
  10073. box-shadow:none;
  10074. font-size:11px;
  10075. }
  10076. #u20316 {
  10077. border-width:0px;
  10078. position:absolute;
  10079. left:378px;
  10080. top:225px;
  10081. width:140px;
  10082. height:30px;
  10083. display:flex;
  10084. font-size:11px;
  10085. }
  10086. #u20316 .text {
  10087. position:absolute;
  10088. align-self:center;
  10089. padding:2px 2px 2px 2px;
  10090. box-sizing:border-box;
  10091. width:100%;
  10092. }
  10093. #u20316_text {
  10094. border-width:0px;
  10095. word-wrap:break-word;
  10096. text-transform:none;
  10097. visibility:hidden;
  10098. }
  10099. #u20317_input {
  10100. position:absolute;
  10101. left:0px;
  10102. top:0px;
  10103. width:126px;
  10104. height:23px;
  10105. padding:2px 2px 2px 2px;
  10106. font-family:'ArialMT', 'Arial', sans-serif;
  10107. font-weight:400;
  10108. font-style:normal;
  10109. font-size:11px;
  10110. letter-spacing:normal;
  10111. color:#AAAAAA;
  10112. vertical-align:none;
  10113. text-align:left;
  10114. text-transform:none;
  10115. background-color:transparent;
  10116. border-color:transparent;
  10117. }
  10118. #u20317_input.disabled {
  10119. position:absolute;
  10120. left:0px;
  10121. top:0px;
  10122. width:126px;
  10123. height:23px;
  10124. padding:2px 2px 2px 2px;
  10125. font-family:'ArialMT', 'Arial', sans-serif;
  10126. font-weight:400;
  10127. font-style:normal;
  10128. font-size:11px;
  10129. letter-spacing:normal;
  10130. color:#AAAAAA;
  10131. vertical-align:none;
  10132. text-align:left;
  10133. text-transform:none;
  10134. background-color:transparent;
  10135. border-color:transparent;
  10136. }
  10137. #u20317_div {
  10138. border-width:0px;
  10139. position:absolute;
  10140. left:0px;
  10141. top:0px;
  10142. width:126px;
  10143. height:23px;
  10144. background:inherit;
  10145. background-color:rgba(255, 255, 255, 1);
  10146. border:none;
  10147. border-radius:0px;
  10148. -moz-box-shadow:none;
  10149. -webkit-box-shadow:none;
  10150. box-shadow:none;
  10151. font-size:11px;
  10152. color:#AAAAAA;
  10153. }
  10154. #u20317 {
  10155. border-width:0px;
  10156. position:absolute;
  10157. left:385px;
  10158. top:227px;
  10159. width:126px;
  10160. height:23px;
  10161. display:flex;
  10162. font-size:11px;
  10163. color:#AAAAAA;
  10164. }
  10165. #u20317 .text {
  10166. position:absolute;
  10167. align-self:flex-start;
  10168. padding:2px 2px 2px 2px;
  10169. box-sizing:border-box;
  10170. width:100%;
  10171. }
  10172. #u20317_div.disabled {
  10173. border-width:0px;
  10174. position:absolute;
  10175. left:0px;
  10176. top:0px;
  10177. width:126px;
  10178. height:23px;
  10179. background:inherit;
  10180. background-color:rgba(240, 240, 240, 1);
  10181. border:none;
  10182. border-radius:0px;
  10183. -moz-box-shadow:none;
  10184. -webkit-box-shadow:none;
  10185. box-shadow:none;
  10186. font-size:11px;
  10187. color:#AAAAAA;
  10188. }
  10189. #u20317.disabled {
  10190. }
  10191. .u20317_input_option {
  10192. font-size:11px;
  10193. }
  10194. #u20318 {
  10195. border-width:0px;
  10196. position:absolute;
  10197. left:0px;
  10198. top:0px;
  10199. width:0px;
  10200. height:0px;
  10201. }
  10202. #u20319_div {
  10203. border-width:0px;
  10204. position:absolute;
  10205. left:0px;
  10206. top:0px;
  10207. width:140px;
  10208. height:30px;
  10209. background:inherit;
  10210. background-color:rgba(255, 255, 255, 1);
  10211. box-sizing:border-box;
  10212. border-width:1px;
  10213. border-style:solid;
  10214. border-color:rgba(215, 215, 215, 1);
  10215. border-radius:4px;
  10216. -moz-box-shadow:none;
  10217. -webkit-box-shadow:none;
  10218. box-shadow:none;
  10219. font-size:11px;
  10220. }
  10221. #u20319 {
  10222. border-width:0px;
  10223. position:absolute;
  10224. left:1128px;
  10225. top:145px;
  10226. width:140px;
  10227. height:30px;
  10228. display:flex;
  10229. font-size:11px;
  10230. }
  10231. #u20319 .text {
  10232. position:absolute;
  10233. align-self:center;
  10234. padding:2px 2px 2px 2px;
  10235. box-sizing:border-box;
  10236. width:100%;
  10237. }
  10238. #u20319_text {
  10239. border-width:0px;
  10240. word-wrap:break-word;
  10241. text-transform:none;
  10242. visibility:hidden;
  10243. }
  10244. #u20320_input {
  10245. position:absolute;
  10246. left:0px;
  10247. top:0px;
  10248. width:126px;
  10249. height:23px;
  10250. padding:2px 2px 2px 2px;
  10251. font-family:'ArialMT', 'Arial', sans-serif;
  10252. font-weight:400;
  10253. font-style:normal;
  10254. font-size:11px;
  10255. letter-spacing:normal;
  10256. color:#AAAAAA;
  10257. vertical-align:none;
  10258. text-align:left;
  10259. text-transform:none;
  10260. background-color:transparent;
  10261. border-color:transparent;
  10262. }
  10263. #u20320_input.disabled {
  10264. position:absolute;
  10265. left:0px;
  10266. top:0px;
  10267. width:126px;
  10268. height:23px;
  10269. padding:2px 2px 2px 2px;
  10270. font-family:'ArialMT', 'Arial', sans-serif;
  10271. font-weight:400;
  10272. font-style:normal;
  10273. font-size:11px;
  10274. letter-spacing:normal;
  10275. color:#AAAAAA;
  10276. vertical-align:none;
  10277. text-align:left;
  10278. text-transform:none;
  10279. background-color:transparent;
  10280. border-color:transparent;
  10281. }
  10282. #u20320_div {
  10283. border-width:0px;
  10284. position:absolute;
  10285. left:0px;
  10286. top:0px;
  10287. width:126px;
  10288. height:23px;
  10289. background:inherit;
  10290. background-color:rgba(255, 255, 255, 1);
  10291. border:none;
  10292. border-radius:0px;
  10293. -moz-box-shadow:none;
  10294. -webkit-box-shadow:none;
  10295. box-shadow:none;
  10296. font-size:11px;
  10297. color:#AAAAAA;
  10298. }
  10299. #u20320 {
  10300. border-width:0px;
  10301. position:absolute;
  10302. left:1135px;
  10303. top:147px;
  10304. width:126px;
  10305. height:23px;
  10306. display:flex;
  10307. font-size:11px;
  10308. color:#AAAAAA;
  10309. }
  10310. #u20320 .text {
  10311. position:absolute;
  10312. align-self:flex-start;
  10313. padding:2px 2px 2px 2px;
  10314. box-sizing:border-box;
  10315. width:100%;
  10316. }
  10317. #u20320_div.disabled {
  10318. border-width:0px;
  10319. position:absolute;
  10320. left:0px;
  10321. top:0px;
  10322. width:126px;
  10323. height:23px;
  10324. background:inherit;
  10325. background-color:rgba(240, 240, 240, 1);
  10326. border:none;
  10327. border-radius:0px;
  10328. -moz-box-shadow:none;
  10329. -webkit-box-shadow:none;
  10330. box-shadow:none;
  10331. font-size:11px;
  10332. color:#AAAAAA;
  10333. }
  10334. #u20320.disabled {
  10335. }
  10336. .u20320_input_option {
  10337. font-size:11px;
  10338. }
  10339. #u20321 {
  10340. border-width:0px;
  10341. position:absolute;
  10342. left:0px;
  10343. top:0px;
  10344. width:0px;
  10345. height:0px;
  10346. }
  10347. #u20322_div {
  10348. border-width:0px;
  10349. position:absolute;
  10350. left:0px;
  10351. top:0px;
  10352. width:140px;
  10353. height:30px;
  10354. background:inherit;
  10355. background-color:rgba(255, 255, 255, 1);
  10356. box-sizing:border-box;
  10357. border-width:1px;
  10358. border-style:solid;
  10359. border-color:rgba(215, 215, 215, 1);
  10360. border-radius:4px;
  10361. -moz-box-shadow:none;
  10362. -webkit-box-shadow:none;
  10363. box-shadow:none;
  10364. font-size:11px;
  10365. }
  10366. #u20322 {
  10367. border-width:0px;
  10368. position:absolute;
  10369. left:1278px;
  10370. top:145px;
  10371. width:140px;
  10372. height:30px;
  10373. display:flex;
  10374. font-size:11px;
  10375. }
  10376. #u20322 .text {
  10377. position:absolute;
  10378. align-self:center;
  10379. padding:2px 2px 2px 2px;
  10380. box-sizing:border-box;
  10381. width:100%;
  10382. }
  10383. #u20322_text {
  10384. border-width:0px;
  10385. word-wrap:break-word;
  10386. text-transform:none;
  10387. visibility:hidden;
  10388. }
  10389. #u20323_input {
  10390. position:absolute;
  10391. left:0px;
  10392. top:0px;
  10393. width:126px;
  10394. height:23px;
  10395. padding:2px 2px 2px 2px;
  10396. font-family:'ArialMT', 'Arial', sans-serif;
  10397. font-weight:400;
  10398. font-style:normal;
  10399. font-size:11px;
  10400. letter-spacing:normal;
  10401. color:#AAAAAA;
  10402. vertical-align:none;
  10403. text-align:left;
  10404. text-transform:none;
  10405. background-color:transparent;
  10406. border-color:transparent;
  10407. }
  10408. #u20323_input.disabled {
  10409. position:absolute;
  10410. left:0px;
  10411. top:0px;
  10412. width:126px;
  10413. height:23px;
  10414. padding:2px 2px 2px 2px;
  10415. font-family:'ArialMT', 'Arial', sans-serif;
  10416. font-weight:400;
  10417. font-style:normal;
  10418. font-size:11px;
  10419. letter-spacing:normal;
  10420. color:#AAAAAA;
  10421. vertical-align:none;
  10422. text-align:left;
  10423. text-transform:none;
  10424. background-color:transparent;
  10425. border-color:transparent;
  10426. }
  10427. #u20323_div {
  10428. border-width:0px;
  10429. position:absolute;
  10430. left:0px;
  10431. top:0px;
  10432. width:126px;
  10433. height:23px;
  10434. background:inherit;
  10435. background-color:rgba(255, 255, 255, 1);
  10436. border:none;
  10437. border-radius:0px;
  10438. -moz-box-shadow:none;
  10439. -webkit-box-shadow:none;
  10440. box-shadow:none;
  10441. font-size:11px;
  10442. color:#AAAAAA;
  10443. }
  10444. #u20323 {
  10445. border-width:0px;
  10446. position:absolute;
  10447. left:1285px;
  10448. top:147px;
  10449. width:126px;
  10450. height:23px;
  10451. display:flex;
  10452. font-size:11px;
  10453. color:#AAAAAA;
  10454. }
  10455. #u20323 .text {
  10456. position:absolute;
  10457. align-self:flex-start;
  10458. padding:2px 2px 2px 2px;
  10459. box-sizing:border-box;
  10460. width:100%;
  10461. }
  10462. #u20323_div.disabled {
  10463. border-width:0px;
  10464. position:absolute;
  10465. left:0px;
  10466. top:0px;
  10467. width:126px;
  10468. height:23px;
  10469. background:inherit;
  10470. background-color:rgba(240, 240, 240, 1);
  10471. border:none;
  10472. border-radius:0px;
  10473. -moz-box-shadow:none;
  10474. -webkit-box-shadow:none;
  10475. box-shadow:none;
  10476. font-size:11px;
  10477. color:#AAAAAA;
  10478. }
  10479. #u20323.disabled {
  10480. }
  10481. .u20323_input_option {
  10482. font-size:11px;
  10483. }
  10484. #u20324_div {
  10485. border-width:0px;
  10486. position:absolute;
  10487. left:0px;
  10488. top:0px;
  10489. width:55px;
  10490. height:30px;
  10491. background:inherit;
  10492. background-color:rgba(255, 255, 255, 1);
  10493. box-sizing:border-box;
  10494. border-width:1px;
  10495. border-style:solid;
  10496. border-color:rgba(170, 170, 170, 1);
  10497. border-radius:4px;
  10498. -moz-box-shadow:none;
  10499. -webkit-box-shadow:none;
  10500. box-shadow:none;
  10501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10502. font-weight:400;
  10503. font-style:normal;
  10504. font-size:12px;
  10505. color:#555555;
  10506. }
  10507. #u20324 {
  10508. border-width:0px;
  10509. position:absolute;
  10510. left:341px;
  10511. top:275px;
  10512. width:55px;
  10513. height:30px;
  10514. display:flex;
  10515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10516. font-weight:400;
  10517. font-style:normal;
  10518. font-size:12px;
  10519. color:#555555;
  10520. }
  10521. #u20324 .text {
  10522. position:absolute;
  10523. align-self:center;
  10524. padding:5px 15px 5px 15px;
  10525. box-sizing:border-box;
  10526. width:100%;
  10527. }
  10528. #u20324_text {
  10529. border-width:0px;
  10530. white-space:nowrap;
  10531. text-transform:none;
  10532. }
  10533. #u20325 {
  10534. border-width:0px;
  10535. position:absolute;
  10536. left:0px;
  10537. top:0px;
  10538. width:0px;
  10539. height:0px;
  10540. }
  10541. #u20326_div {
  10542. border-width:0px;
  10543. position:absolute;
  10544. left:0px;
  10545. top:0px;
  10546. width:140px;
  10547. height:30px;
  10548. background:inherit;
  10549. background-color:rgba(255, 255, 255, 1);
  10550. box-sizing:border-box;
  10551. border-width:1px;
  10552. border-style:solid;
  10553. border-color:rgba(201, 201, 201, 1);
  10554. border-radius:4px;
  10555. -moz-box-shadow:none;
  10556. -webkit-box-shadow:none;
  10557. box-shadow:none;
  10558. font-family:'Microsoft YaHei', sans-serif;
  10559. font-weight:400;
  10560. font-style:normal;
  10561. font-size:14px;
  10562. color:#CCCCCC;
  10563. text-align:left;
  10564. }
  10565. #u20326 {
  10566. border-width:0px;
  10567. position:absolute;
  10568. left:678px;
  10569. top:183px;
  10570. width:140px;
  10571. height:30px;
  10572. display:flex;
  10573. font-family:'Microsoft YaHei', sans-serif;
  10574. font-weight:400;
  10575. font-style:normal;
  10576. font-size:14px;
  10577. color:#CCCCCC;
  10578. text-align:left;
  10579. }
  10580. #u20326 .text {
  10581. position:absolute;
  10582. align-self:center;
  10583. padding:2px 8px 2px 8px;
  10584. box-sizing:border-box;
  10585. width:100%;
  10586. }
  10587. #u20326_text {
  10588. border-width:0px;
  10589. word-wrap:break-word;
  10590. text-transform:none;
  10591. visibility:hidden;
  10592. }
  10593. #u20327_input {
  10594. position:absolute;
  10595. left:0px;
  10596. top:0px;
  10597. width:127px;
  10598. height:25px;
  10599. padding:2px 2px 2px 2px;
  10600. font-family:'Microsoft YaHei', sans-serif;
  10601. font-weight:400;
  10602. font-style:normal;
  10603. font-size:10px;
  10604. letter-spacing:normal;
  10605. color:#000000;
  10606. vertical-align:none;
  10607. text-align:left;
  10608. text-transform:none;
  10609. background-color:transparent;
  10610. border-color:transparent;
  10611. }
  10612. #u20327_input.disabled {
  10613. position:absolute;
  10614. left:0px;
  10615. top:0px;
  10616. width:127px;
  10617. height:25px;
  10618. padding:2px 2px 2px 2px;
  10619. font-family:'Microsoft YaHei', sans-serif;
  10620. font-weight:400;
  10621. font-style:normal;
  10622. font-size:10px;
  10623. letter-spacing:normal;
  10624. color:#000000;
  10625. vertical-align:none;
  10626. text-align:left;
  10627. text-transform:none;
  10628. background-color:transparent;
  10629. border-color:transparent;
  10630. }
  10631. #u20327_div {
  10632. border-width:0px;
  10633. position:absolute;
  10634. left:0px;
  10635. top:0px;
  10636. width:127px;
  10637. height:25px;
  10638. background:inherit;
  10639. background-color:rgba(255, 255, 255, 1);
  10640. border:none;
  10641. border-radius:0px;
  10642. -moz-box-shadow:none;
  10643. -webkit-box-shadow:none;
  10644. box-shadow:none;
  10645. font-family:'Microsoft YaHei', sans-serif;
  10646. font-weight:400;
  10647. font-style:normal;
  10648. font-size:10px;
  10649. }
  10650. #u20327 {
  10651. border-width:0px;
  10652. position:absolute;
  10653. left:686px;
  10654. top:184px;
  10655. width:127px;
  10656. height:25px;
  10657. display:flex;
  10658. font-family:'Microsoft YaHei', sans-serif;
  10659. font-weight:400;
  10660. font-style:normal;
  10661. font-size:10px;
  10662. }
  10663. #u20327 .text {
  10664. position:absolute;
  10665. align-self:center;
  10666. padding:2px 2px 2px 2px;
  10667. box-sizing:border-box;
  10668. width:100%;
  10669. }
  10670. #u20327_div.disabled {
  10671. border-width:0px;
  10672. position:absolute;
  10673. left:0px;
  10674. top:0px;
  10675. width:127px;
  10676. height:25px;
  10677. background:inherit;
  10678. background-color:rgba(240, 240, 240, 1);
  10679. border:none;
  10680. border-radius:0px;
  10681. -moz-box-shadow:none;
  10682. -webkit-box-shadow:none;
  10683. box-shadow:none;
  10684. font-family:'Microsoft YaHei', sans-serif;
  10685. font-weight:400;
  10686. font-style:normal;
  10687. font-size:10px;
  10688. }
  10689. #u20327.disabled {
  10690. }
  10691. #u20328 {
  10692. border-width:0px;
  10693. position:absolute;
  10694. left:0px;
  10695. top:0px;
  10696. width:0px;
  10697. height:0px;
  10698. }
  10699. #u20329_div {
  10700. border-width:0px;
  10701. position:absolute;
  10702. left:0px;
  10703. top:0px;
  10704. width:140px;
  10705. height:30px;
  10706. background:inherit;
  10707. background-color:rgba(255, 255, 255, 1);
  10708. box-sizing:border-box;
  10709. border-width:1px;
  10710. border-style:solid;
  10711. border-color:rgba(201, 201, 201, 1);
  10712. border-radius:4px;
  10713. -moz-box-shadow:none;
  10714. -webkit-box-shadow:none;
  10715. box-shadow:none;
  10716. font-family:'Microsoft YaHei', sans-serif;
  10717. font-weight:400;
  10718. font-style:normal;
  10719. font-size:14px;
  10720. color:#CCCCCC;
  10721. text-align:left;
  10722. }
  10723. #u20329 {
  10724. border-width:0px;
  10725. position:absolute;
  10726. left:828px;
  10727. top:183px;
  10728. width:140px;
  10729. height:30px;
  10730. display:flex;
  10731. font-family:'Microsoft YaHei', sans-serif;
  10732. font-weight:400;
  10733. font-style:normal;
  10734. font-size:14px;
  10735. color:#CCCCCC;
  10736. text-align:left;
  10737. }
  10738. #u20329 .text {
  10739. position:absolute;
  10740. align-self:center;
  10741. padding:2px 8px 2px 8px;
  10742. box-sizing:border-box;
  10743. width:100%;
  10744. }
  10745. #u20329_text {
  10746. border-width:0px;
  10747. word-wrap:break-word;
  10748. text-transform:none;
  10749. visibility:hidden;
  10750. }
  10751. #u20330_input {
  10752. position:absolute;
  10753. left:0px;
  10754. top:0px;
  10755. width:127px;
  10756. height:25px;
  10757. padding:2px 2px 2px 2px;
  10758. font-family:'Microsoft YaHei', sans-serif;
  10759. font-weight:400;
  10760. font-style:normal;
  10761. font-size:10px;
  10762. letter-spacing:normal;
  10763. color:#000000;
  10764. vertical-align:none;
  10765. text-align:left;
  10766. text-transform:none;
  10767. background-color:transparent;
  10768. border-color:transparent;
  10769. }
  10770. #u20330_input.disabled {
  10771. position:absolute;
  10772. left:0px;
  10773. top:0px;
  10774. width:127px;
  10775. height:25px;
  10776. padding:2px 2px 2px 2px;
  10777. font-family:'Microsoft YaHei', sans-serif;
  10778. font-weight:400;
  10779. font-style:normal;
  10780. font-size:10px;
  10781. letter-spacing:normal;
  10782. color:#000000;
  10783. vertical-align:none;
  10784. text-align:left;
  10785. text-transform:none;
  10786. background-color:transparent;
  10787. border-color:transparent;
  10788. }
  10789. #u20330_div {
  10790. border-width:0px;
  10791. position:absolute;
  10792. left:0px;
  10793. top:0px;
  10794. width:127px;
  10795. height:25px;
  10796. background:inherit;
  10797. background-color:rgba(255, 255, 255, 1);
  10798. border:none;
  10799. border-radius:0px;
  10800. -moz-box-shadow:none;
  10801. -webkit-box-shadow:none;
  10802. box-shadow:none;
  10803. font-family:'Microsoft YaHei', sans-serif;
  10804. font-weight:400;
  10805. font-style:normal;
  10806. font-size:10px;
  10807. }
  10808. #u20330 {
  10809. border-width:0px;
  10810. position:absolute;
  10811. left:836px;
  10812. top:184px;
  10813. width:127px;
  10814. height:25px;
  10815. display:flex;
  10816. font-family:'Microsoft YaHei', sans-serif;
  10817. font-weight:400;
  10818. font-style:normal;
  10819. font-size:10px;
  10820. }
  10821. #u20330 .text {
  10822. position:absolute;
  10823. align-self:center;
  10824. padding:2px 2px 2px 2px;
  10825. box-sizing:border-box;
  10826. width:100%;
  10827. }
  10828. #u20330_div.disabled {
  10829. border-width:0px;
  10830. position:absolute;
  10831. left:0px;
  10832. top:0px;
  10833. width:127px;
  10834. height:25px;
  10835. background:inherit;
  10836. background-color:rgba(240, 240, 240, 1);
  10837. border:none;
  10838. border-radius:0px;
  10839. -moz-box-shadow:none;
  10840. -webkit-box-shadow:none;
  10841. box-shadow:none;
  10842. font-family:'Microsoft YaHei', sans-serif;
  10843. font-weight:400;
  10844. font-style:normal;
  10845. font-size:10px;
  10846. }
  10847. #u20330.disabled {
  10848. }
  10849. #u20331 {
  10850. border-width:0px;
  10851. position:absolute;
  10852. left:0px;
  10853. top:0px;
  10854. width:0px;
  10855. height:0px;
  10856. }
  10857. #u20332_div {
  10858. border-width:0px;
  10859. position:absolute;
  10860. left:0px;
  10861. top:0px;
  10862. width:140px;
  10863. height:30px;
  10864. background:inherit;
  10865. background-color:rgba(255, 255, 255, 1);
  10866. box-sizing:border-box;
  10867. border-width:1px;
  10868. border-style:solid;
  10869. border-color:rgba(201, 201, 201, 1);
  10870. border-radius:4px;
  10871. -moz-box-shadow:none;
  10872. -webkit-box-shadow:none;
  10873. box-shadow:none;
  10874. font-family:'Microsoft YaHei', sans-serif;
  10875. font-weight:400;
  10876. font-style:normal;
  10877. font-size:14px;
  10878. color:#CCCCCC;
  10879. text-align:left;
  10880. }
  10881. #u20332 {
  10882. border-width:0px;
  10883. position:absolute;
  10884. left:978px;
  10885. top:183px;
  10886. width:140px;
  10887. height:30px;
  10888. display:flex;
  10889. font-family:'Microsoft YaHei', sans-serif;
  10890. font-weight:400;
  10891. font-style:normal;
  10892. font-size:14px;
  10893. color:#CCCCCC;
  10894. text-align:left;
  10895. }
  10896. #u20332 .text {
  10897. position:absolute;
  10898. align-self:center;
  10899. padding:2px 8px 2px 8px;
  10900. box-sizing:border-box;
  10901. width:100%;
  10902. }
  10903. #u20332_text {
  10904. border-width:0px;
  10905. word-wrap:break-word;
  10906. text-transform:none;
  10907. visibility:hidden;
  10908. }
  10909. #u20333_input {
  10910. position:absolute;
  10911. left:0px;
  10912. top:0px;
  10913. width:127px;
  10914. height:25px;
  10915. padding:2px 2px 2px 2px;
  10916. font-family:'Microsoft YaHei', sans-serif;
  10917. font-weight:400;
  10918. font-style:normal;
  10919. font-size:10px;
  10920. letter-spacing:normal;
  10921. color:#000000;
  10922. vertical-align:none;
  10923. text-align:left;
  10924. text-transform:none;
  10925. background-color:transparent;
  10926. border-color:transparent;
  10927. }
  10928. #u20333_input.disabled {
  10929. position:absolute;
  10930. left:0px;
  10931. top:0px;
  10932. width:127px;
  10933. height:25px;
  10934. padding:2px 2px 2px 2px;
  10935. font-family:'Microsoft YaHei', sans-serif;
  10936. font-weight:400;
  10937. font-style:normal;
  10938. font-size:10px;
  10939. letter-spacing:normal;
  10940. color:#000000;
  10941. vertical-align:none;
  10942. text-align:left;
  10943. text-transform:none;
  10944. background-color:transparent;
  10945. border-color:transparent;
  10946. }
  10947. #u20333_div {
  10948. border-width:0px;
  10949. position:absolute;
  10950. left:0px;
  10951. top:0px;
  10952. width:127px;
  10953. height:25px;
  10954. background:inherit;
  10955. background-color:rgba(255, 255, 255, 1);
  10956. border:none;
  10957. border-radius:0px;
  10958. -moz-box-shadow:none;
  10959. -webkit-box-shadow:none;
  10960. box-shadow:none;
  10961. font-family:'Microsoft YaHei', sans-serif;
  10962. font-weight:400;
  10963. font-style:normal;
  10964. font-size:10px;
  10965. }
  10966. #u20333 {
  10967. border-width:0px;
  10968. position:absolute;
  10969. left:986px;
  10970. top:184px;
  10971. width:127px;
  10972. height:25px;
  10973. display:flex;
  10974. font-family:'Microsoft YaHei', sans-serif;
  10975. font-weight:400;
  10976. font-style:normal;
  10977. font-size:10px;
  10978. }
  10979. #u20333 .text {
  10980. position:absolute;
  10981. align-self:center;
  10982. padding:2px 2px 2px 2px;
  10983. box-sizing:border-box;
  10984. width:100%;
  10985. }
  10986. #u20333_div.disabled {
  10987. border-width:0px;
  10988. position:absolute;
  10989. left:0px;
  10990. top:0px;
  10991. width:127px;
  10992. height:25px;
  10993. background:inherit;
  10994. background-color:rgba(240, 240, 240, 1);
  10995. border:none;
  10996. border-radius:0px;
  10997. -moz-box-shadow:none;
  10998. -webkit-box-shadow:none;
  10999. box-shadow:none;
  11000. font-family:'Microsoft YaHei', sans-serif;
  11001. font-weight:400;
  11002. font-style:normal;
  11003. font-size:10px;
  11004. }
  11005. #u20333.disabled {
  11006. }
  11007. #u20334 {
  11008. border-width:0px;
  11009. position:absolute;
  11010. left:0px;
  11011. top:0px;
  11012. width:0px;
  11013. height:0px;
  11014. }
  11015. #u20335_div {
  11016. border-width:0px;
  11017. position:absolute;
  11018. left:0px;
  11019. top:0px;
  11020. width:140px;
  11021. height:30px;
  11022. background:inherit;
  11023. background-color:rgba(255, 255, 255, 1);
  11024. box-sizing:border-box;
  11025. border-width:1px;
  11026. border-style:solid;
  11027. border-color:rgba(201, 201, 201, 1);
  11028. border-radius:4px;
  11029. -moz-box-shadow:none;
  11030. -webkit-box-shadow:none;
  11031. box-shadow:none;
  11032. font-family:'Microsoft YaHei', sans-serif;
  11033. font-weight:400;
  11034. font-style:normal;
  11035. font-size:14px;
  11036. color:#CCCCCC;
  11037. text-align:left;
  11038. }
  11039. #u20335 {
  11040. border-width:0px;
  11041. position:absolute;
  11042. left:1278px;
  11043. top:183px;
  11044. width:140px;
  11045. height:30px;
  11046. display:flex;
  11047. font-family:'Microsoft YaHei', sans-serif;
  11048. font-weight:400;
  11049. font-style:normal;
  11050. font-size:14px;
  11051. color:#CCCCCC;
  11052. text-align:left;
  11053. }
  11054. #u20335 .text {
  11055. position:absolute;
  11056. align-self:center;
  11057. padding:2px 8px 2px 8px;
  11058. box-sizing:border-box;
  11059. width:100%;
  11060. }
  11061. #u20335_text {
  11062. border-width:0px;
  11063. word-wrap:break-word;
  11064. text-transform:none;
  11065. visibility:hidden;
  11066. }
  11067. #u20336_input {
  11068. position:absolute;
  11069. left:0px;
  11070. top:0px;
  11071. width:127px;
  11072. height:25px;
  11073. padding:2px 2px 2px 2px;
  11074. font-family:'Microsoft YaHei', sans-serif;
  11075. font-weight:400;
  11076. font-style:normal;
  11077. font-size:10px;
  11078. letter-spacing:normal;
  11079. color:#000000;
  11080. vertical-align:none;
  11081. text-align:left;
  11082. text-transform:none;
  11083. background-color:transparent;
  11084. border-color:transparent;
  11085. }
  11086. #u20336_input.disabled {
  11087. position:absolute;
  11088. left:0px;
  11089. top:0px;
  11090. width:127px;
  11091. height:25px;
  11092. padding:2px 2px 2px 2px;
  11093. font-family:'Microsoft YaHei', sans-serif;
  11094. font-weight:400;
  11095. font-style:normal;
  11096. font-size:10px;
  11097. letter-spacing:normal;
  11098. color:#000000;
  11099. vertical-align:none;
  11100. text-align:left;
  11101. text-transform:none;
  11102. background-color:transparent;
  11103. border-color:transparent;
  11104. }
  11105. #u20336_div {
  11106. border-width:0px;
  11107. position:absolute;
  11108. left:0px;
  11109. top:0px;
  11110. width:127px;
  11111. height:25px;
  11112. background:inherit;
  11113. background-color:rgba(255, 255, 255, 1);
  11114. border:none;
  11115. border-radius:0px;
  11116. -moz-box-shadow:none;
  11117. -webkit-box-shadow:none;
  11118. box-shadow:none;
  11119. font-family:'Microsoft YaHei', sans-serif;
  11120. font-weight:400;
  11121. font-style:normal;
  11122. font-size:10px;
  11123. }
  11124. #u20336 {
  11125. border-width:0px;
  11126. position:absolute;
  11127. left:1286px;
  11128. top:184px;
  11129. width:127px;
  11130. height:25px;
  11131. display:flex;
  11132. font-family:'Microsoft YaHei', sans-serif;
  11133. font-weight:400;
  11134. font-style:normal;
  11135. font-size:10px;
  11136. }
  11137. #u20336 .text {
  11138. position:absolute;
  11139. align-self:center;
  11140. padding:2px 2px 2px 2px;
  11141. box-sizing:border-box;
  11142. width:100%;
  11143. }
  11144. #u20336_div.disabled {
  11145. border-width:0px;
  11146. position:absolute;
  11147. left:0px;
  11148. top:0px;
  11149. width:127px;
  11150. height:25px;
  11151. background:inherit;
  11152. background-color:rgba(240, 240, 240, 1);
  11153. border:none;
  11154. border-radius:0px;
  11155. -moz-box-shadow:none;
  11156. -webkit-box-shadow:none;
  11157. box-shadow:none;
  11158. font-family:'Microsoft YaHei', sans-serif;
  11159. font-weight:400;
  11160. font-style:normal;
  11161. font-size:10px;
  11162. }
  11163. #u20336.disabled {
  11164. }
  11165. #u20337 {
  11166. border-width:0px;
  11167. position:absolute;
  11168. left:0px;
  11169. top:0px;
  11170. width:0px;
  11171. height:0px;
  11172. }
  11173. #u20338_div {
  11174. border-width:0px;
  11175. position:absolute;
  11176. left:0px;
  11177. top:0px;
  11178. width:140px;
  11179. height:30px;
  11180. background:inherit;
  11181. background-color:rgba(255, 255, 255, 1);
  11182. box-sizing:border-box;
  11183. border-width:1px;
  11184. border-style:solid;
  11185. border-color:rgba(201, 201, 201, 1);
  11186. border-radius:4px;
  11187. -moz-box-shadow:none;
  11188. -webkit-box-shadow:none;
  11189. box-shadow:none;
  11190. font-family:'Microsoft YaHei', sans-serif;
  11191. font-weight:400;
  11192. font-style:normal;
  11193. font-size:14px;
  11194. color:#CCCCCC;
  11195. text-align:left;
  11196. }
  11197. #u20338 {
  11198. border-width:0px;
  11199. position:absolute;
  11200. left:1128px;
  11201. top:183px;
  11202. width:140px;
  11203. height:30px;
  11204. display:flex;
  11205. font-family:'Microsoft YaHei', sans-serif;
  11206. font-weight:400;
  11207. font-style:normal;
  11208. font-size:14px;
  11209. color:#CCCCCC;
  11210. text-align:left;
  11211. }
  11212. #u20338 .text {
  11213. position:absolute;
  11214. align-self:center;
  11215. padding:2px 8px 2px 8px;
  11216. box-sizing:border-box;
  11217. width:100%;
  11218. }
  11219. #u20338_text {
  11220. border-width:0px;
  11221. word-wrap:break-word;
  11222. text-transform:none;
  11223. visibility:hidden;
  11224. }
  11225. #u20339_input {
  11226. position:absolute;
  11227. left:0px;
  11228. top:0px;
  11229. width:127px;
  11230. height:25px;
  11231. padding:2px 2px 2px 2px;
  11232. font-family:'Microsoft YaHei', sans-serif;
  11233. font-weight:400;
  11234. font-style:normal;
  11235. font-size:10px;
  11236. letter-spacing:normal;
  11237. color:#000000;
  11238. vertical-align:none;
  11239. text-align:left;
  11240. text-transform:none;
  11241. background-color:transparent;
  11242. border-color:transparent;
  11243. }
  11244. #u20339_input.disabled {
  11245. position:absolute;
  11246. left:0px;
  11247. top:0px;
  11248. width:127px;
  11249. height:25px;
  11250. padding:2px 2px 2px 2px;
  11251. font-family:'Microsoft YaHei', sans-serif;
  11252. font-weight:400;
  11253. font-style:normal;
  11254. font-size:10px;
  11255. letter-spacing:normal;
  11256. color:#000000;
  11257. vertical-align:none;
  11258. text-align:left;
  11259. text-transform:none;
  11260. background-color:transparent;
  11261. border-color:transparent;
  11262. }
  11263. #u20339_div {
  11264. border-width:0px;
  11265. position:absolute;
  11266. left:0px;
  11267. top:0px;
  11268. width:127px;
  11269. height:25px;
  11270. background:inherit;
  11271. background-color:rgba(255, 255, 255, 1);
  11272. border:none;
  11273. border-radius:0px;
  11274. -moz-box-shadow:none;
  11275. -webkit-box-shadow:none;
  11276. box-shadow:none;
  11277. font-family:'Microsoft YaHei', sans-serif;
  11278. font-weight:400;
  11279. font-style:normal;
  11280. font-size:10px;
  11281. }
  11282. #u20339 {
  11283. border-width:0px;
  11284. position:absolute;
  11285. left:1136px;
  11286. top:184px;
  11287. width:127px;
  11288. height:25px;
  11289. display:flex;
  11290. font-family:'Microsoft YaHei', sans-serif;
  11291. font-weight:400;
  11292. font-style:normal;
  11293. font-size:10px;
  11294. }
  11295. #u20339 .text {
  11296. position:absolute;
  11297. align-self:center;
  11298. padding:2px 2px 2px 2px;
  11299. box-sizing:border-box;
  11300. width:100%;
  11301. }
  11302. #u20339_div.disabled {
  11303. border-width:0px;
  11304. position:absolute;
  11305. left:0px;
  11306. top:0px;
  11307. width:127px;
  11308. height:25px;
  11309. background:inherit;
  11310. background-color:rgba(240, 240, 240, 1);
  11311. border:none;
  11312. border-radius:0px;
  11313. -moz-box-shadow:none;
  11314. -webkit-box-shadow:none;
  11315. box-shadow:none;
  11316. font-family:'Microsoft YaHei', sans-serif;
  11317. font-weight:400;
  11318. font-style:normal;
  11319. font-size:10px;
  11320. }
  11321. #u20339.disabled {
  11322. }
  11323. #u20340_div {
  11324. border-width:0px;
  11325. position:absolute;
  11326. left:0px;
  11327. top:0px;
  11328. width:37px;
  11329. height:50px;
  11330. background:inherit;
  11331. background-color:rgba(255, 255, 255, 0);
  11332. border:none;
  11333. border-left:0px;
  11334. border-top:0px;
  11335. border-right:0px;
  11336. border-radius:0px;
  11337. border-bottom-right-radius:0px;
  11338. border-bottom-left-radius:0px;
  11339. -moz-box-shadow:none;
  11340. -webkit-box-shadow:none;
  11341. box-shadow:none;
  11342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11343. font-weight:400;
  11344. font-style:normal;
  11345. font-size:18px;
  11346. }
  11347. #u20340 {
  11348. border-width:0px;
  11349. position:absolute;
  11350. left:294px;
  11351. top:74px;
  11352. width:37px;
  11353. height:50px;
  11354. display:flex;
  11355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11356. font-weight:400;
  11357. font-style:normal;
  11358. font-size:18px;
  11359. }
  11360. #u20340 .text {
  11361. position:absolute;
  11362. align-self:center;
  11363. padding:0px 0px 0px 0px;
  11364. box-sizing:border-box;
  11365. width:100%;
  11366. }
  11367. #u20340_text {
  11368. border-width:0px;
  11369. white-space:nowrap;
  11370. text-transform:none;
  11371. }
  11372. #u20341 {
  11373. border-width:0px;
  11374. position:absolute;
  11375. left:0px;
  11376. top:0px;
  11377. width:0px;
  11378. height:0px;
  11379. }
  11380. #u20342_div {
  11381. border-width:0px;
  11382. position:absolute;
  11383. left:0px;
  11384. top:0px;
  11385. width:140px;
  11386. height:30px;
  11387. background:inherit;
  11388. background-color:rgba(255, 255, 255, 1);
  11389. box-sizing:border-box;
  11390. border-width:1px;
  11391. border-style:solid;
  11392. border-color:rgba(201, 201, 201, 1);
  11393. border-radius:4px;
  11394. -moz-box-shadow:none;
  11395. -webkit-box-shadow:none;
  11396. box-shadow:none;
  11397. font-family:'Microsoft YaHei', sans-serif;
  11398. font-weight:400;
  11399. font-style:normal;
  11400. font-size:14px;
  11401. color:#CCCCCC;
  11402. text-align:left;
  11403. }
  11404. #u20342 {
  11405. border-width:0px;
  11406. position:absolute;
  11407. left:828px;
  11408. top:144px;
  11409. width:140px;
  11410. height:30px;
  11411. display:flex;
  11412. font-family:'Microsoft YaHei', sans-serif;
  11413. font-weight:400;
  11414. font-style:normal;
  11415. font-size:14px;
  11416. color:#CCCCCC;
  11417. text-align:left;
  11418. }
  11419. #u20342 .text {
  11420. position:absolute;
  11421. align-self:center;
  11422. padding:2px 8px 2px 8px;
  11423. box-sizing:border-box;
  11424. width:100%;
  11425. }
  11426. #u20342_text {
  11427. border-width:0px;
  11428. word-wrap:break-word;
  11429. text-transform:none;
  11430. visibility:hidden;
  11431. }
  11432. #u20343_input {
  11433. position:absolute;
  11434. left:0px;
  11435. top:0px;
  11436. width:127px;
  11437. height:25px;
  11438. padding:2px 2px 2px 2px;
  11439. font-family:'Microsoft YaHei', sans-serif;
  11440. font-weight:400;
  11441. font-style:normal;
  11442. font-size:10px;
  11443. letter-spacing:normal;
  11444. color:#000000;
  11445. vertical-align:none;
  11446. text-align:left;
  11447. text-transform:none;
  11448. background-color:transparent;
  11449. border-color:transparent;
  11450. }
  11451. #u20343_input.disabled {
  11452. position:absolute;
  11453. left:0px;
  11454. top:0px;
  11455. width:127px;
  11456. height:25px;
  11457. padding:2px 2px 2px 2px;
  11458. font-family:'Microsoft YaHei', sans-serif;
  11459. font-weight:400;
  11460. font-style:normal;
  11461. font-size:10px;
  11462. letter-spacing:normal;
  11463. color:#000000;
  11464. vertical-align:none;
  11465. text-align:left;
  11466. text-transform:none;
  11467. background-color:transparent;
  11468. border-color:transparent;
  11469. }
  11470. #u20343_div {
  11471. border-width:0px;
  11472. position:absolute;
  11473. left:0px;
  11474. top:0px;
  11475. width:127px;
  11476. height:25px;
  11477. background:inherit;
  11478. background-color:rgba(255, 255, 255, 1);
  11479. border:none;
  11480. border-radius:0px;
  11481. -moz-box-shadow:none;
  11482. -webkit-box-shadow:none;
  11483. box-shadow:none;
  11484. font-family:'Microsoft YaHei', sans-serif;
  11485. font-weight:400;
  11486. font-style:normal;
  11487. font-size:10px;
  11488. }
  11489. #u20343 {
  11490. border-width:0px;
  11491. position:absolute;
  11492. left:836px;
  11493. top:145px;
  11494. width:127px;
  11495. height:25px;
  11496. display:flex;
  11497. font-family:'Microsoft YaHei', sans-serif;
  11498. font-weight:400;
  11499. font-style:normal;
  11500. font-size:10px;
  11501. }
  11502. #u20343 .text {
  11503. position:absolute;
  11504. align-self:center;
  11505. padding:2px 2px 2px 2px;
  11506. box-sizing:border-box;
  11507. width:100%;
  11508. }
  11509. #u20343_div.disabled {
  11510. border-width:0px;
  11511. position:absolute;
  11512. left:0px;
  11513. top:0px;
  11514. width:127px;
  11515. height:25px;
  11516. background:inherit;
  11517. background-color:rgba(240, 240, 240, 1);
  11518. border:none;
  11519. border-radius:0px;
  11520. -moz-box-shadow:none;
  11521. -webkit-box-shadow:none;
  11522. box-shadow:none;
  11523. font-family:'Microsoft YaHei', sans-serif;
  11524. font-weight:400;
  11525. font-style:normal;
  11526. font-size:10px;
  11527. }
  11528. #u20343.disabled {
  11529. }
  11530. #u20344 {
  11531. border-width:0px;
  11532. position:absolute;
  11533. left:0px;
  11534. top:0px;
  11535. width:0px;
  11536. height:0px;
  11537. }
  11538. #u20345_div {
  11539. border-width:0px;
  11540. position:absolute;
  11541. left:0px;
  11542. top:0px;
  11543. width:140px;
  11544. height:28px;
  11545. background:inherit;
  11546. background-color:rgba(255, 255, 255, 1);
  11547. box-sizing:border-box;
  11548. border-width:1px;
  11549. border-style:solid;
  11550. border-color:rgba(201, 201, 201, 1);
  11551. border-radius:4px;
  11552. -moz-box-shadow:none;
  11553. -webkit-box-shadow:none;
  11554. box-shadow:none;
  11555. font-family:'Microsoft YaHei', sans-serif;
  11556. font-weight:400;
  11557. font-style:normal;
  11558. font-size:14px;
  11559. color:#CCCCCC;
  11560. text-align:left;
  11561. }
  11562. #u20345 {
  11563. border-width:0px;
  11564. position:absolute;
  11565. left:978px;
  11566. top:145px;
  11567. width:140px;
  11568. height:28px;
  11569. display:flex;
  11570. font-family:'Microsoft YaHei', sans-serif;
  11571. font-weight:400;
  11572. font-style:normal;
  11573. font-size:14px;
  11574. color:#CCCCCC;
  11575. text-align:left;
  11576. }
  11577. #u20345 .text {
  11578. position:absolute;
  11579. align-self:center;
  11580. padding:2px 8px 2px 8px;
  11581. box-sizing:border-box;
  11582. width:100%;
  11583. }
  11584. #u20345_text {
  11585. border-width:0px;
  11586. word-wrap:break-word;
  11587. text-transform:none;
  11588. visibility:hidden;
  11589. }
  11590. #u20346_input {
  11591. position:absolute;
  11592. left:0px;
  11593. top:0px;
  11594. width:114px;
  11595. height:26px;
  11596. padding:2px 2px 2px 2px;
  11597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11598. font-weight:400;
  11599. font-style:normal;
  11600. font-size:14px;
  11601. letter-spacing:normal;
  11602. color:#000000;
  11603. vertical-align:none;
  11604. text-align:left;
  11605. text-transform:none;
  11606. background-color:transparent;
  11607. border-color:transparent;
  11608. }
  11609. #u20346_input.disabled {
  11610. position:absolute;
  11611. left:0px;
  11612. top:0px;
  11613. width:114px;
  11614. height:26px;
  11615. padding:2px 2px 2px 2px;
  11616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11617. font-weight:400;
  11618. font-style:normal;
  11619. font-size:14px;
  11620. letter-spacing:normal;
  11621. color:#000000;
  11622. vertical-align:none;
  11623. text-align:left;
  11624. text-transform:none;
  11625. background-color:transparent;
  11626. border-color:transparent;
  11627. }
  11628. #u20346_div {
  11629. border-width:0px;
  11630. position:absolute;
  11631. left:0px;
  11632. top:0px;
  11633. width:114px;
  11634. height:26px;
  11635. background:inherit;
  11636. background-color:rgba(255, 255, 255, 1);
  11637. border:none;
  11638. border-radius:0px;
  11639. -moz-box-shadow:none;
  11640. -webkit-box-shadow:none;
  11641. box-shadow:none;
  11642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11643. font-weight:400;
  11644. font-style:normal;
  11645. font-size:14px;
  11646. }
  11647. #u20346 {
  11648. border-width:0px;
  11649. position:absolute;
  11650. left:984px;
  11651. top:146px;
  11652. width:114px;
  11653. height:26px;
  11654. display:flex;
  11655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11656. font-weight:400;
  11657. font-style:normal;
  11658. font-size:14px;
  11659. }
  11660. #u20346 .text {
  11661. position:absolute;
  11662. align-self:center;
  11663. padding:2px 2px 2px 2px;
  11664. box-sizing:border-box;
  11665. width:100%;
  11666. }
  11667. #u20346_div.disabled {
  11668. border-width:0px;
  11669. position:absolute;
  11670. left:0px;
  11671. top:0px;
  11672. width:114px;
  11673. height:26px;
  11674. background:inherit;
  11675. background-color:rgba(240, 240, 240, 1);
  11676. border:none;
  11677. border-radius:0px;
  11678. -moz-box-shadow:none;
  11679. -webkit-box-shadow:none;
  11680. box-shadow:none;
  11681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11682. font-weight:400;
  11683. font-style:normal;
  11684. font-size:14px;
  11685. }
  11686. #u20346.disabled {
  11687. }
  11688. #u20347_img {
  11689. border-width:0px;
  11690. position:absolute;
  11691. left:0px;
  11692. top:0px;
  11693. width:13px;
  11694. height:15px;
  11695. }
  11696. #u20347 {
  11697. border-width:0px;
  11698. position:absolute;
  11699. left:1098px;
  11700. top:152px;
  11701. width:13px;
  11702. height:15px;
  11703. display:flex;
  11704. }
  11705. #u20347 .text {
  11706. position:absolute;
  11707. align-self:center;
  11708. padding:2px 2px 2px 2px;
  11709. box-sizing:border-box;
  11710. width:100%;
  11711. }
  11712. #u20347_text {
  11713. border-width:0px;
  11714. word-wrap:break-word;
  11715. text-transform:none;
  11716. visibility:hidden;
  11717. }
  11718. #u20348 {
  11719. border-width:0px;
  11720. position:absolute;
  11721. left:0px;
  11722. top:0px;
  11723. width:0px;
  11724. height:0px;
  11725. }
  11726. #u20349_div {
  11727. border-width:0px;
  11728. position:absolute;
  11729. left:0px;
  11730. top:0px;
  11731. width:140px;
  11732. height:30px;
  11733. background:inherit;
  11734. background-color:rgba(255, 255, 255, 1);
  11735. box-sizing:border-box;
  11736. border-width:1px;
  11737. border-style:solid;
  11738. border-color:rgba(201, 201, 201, 1);
  11739. border-radius:4px;
  11740. -moz-box-shadow:none;
  11741. -webkit-box-shadow:none;
  11742. box-shadow:none;
  11743. font-family:'Microsoft YaHei', sans-serif;
  11744. font-weight:400;
  11745. font-style:normal;
  11746. font-size:14px;
  11747. color:#CCCCCC;
  11748. text-align:left;
  11749. }
  11750. #u20349 {
  11751. border-width:0px;
  11752. position:absolute;
  11753. left:1428px;
  11754. top:183px;
  11755. width:140px;
  11756. height:30px;
  11757. display:flex;
  11758. font-family:'Microsoft YaHei', sans-serif;
  11759. font-weight:400;
  11760. font-style:normal;
  11761. font-size:14px;
  11762. color:#CCCCCC;
  11763. text-align:left;
  11764. }
  11765. #u20349 .text {
  11766. position:absolute;
  11767. align-self:center;
  11768. padding:2px 8px 2px 8px;
  11769. box-sizing:border-box;
  11770. width:100%;
  11771. }
  11772. #u20349_text {
  11773. border-width:0px;
  11774. word-wrap:break-word;
  11775. text-transform:none;
  11776. visibility:hidden;
  11777. }
  11778. #u20350_input {
  11779. position:absolute;
  11780. left:0px;
  11781. top:0px;
  11782. width:127px;
  11783. height:25px;
  11784. padding:2px 2px 2px 2px;
  11785. font-family:'Microsoft YaHei', sans-serif;
  11786. font-weight:400;
  11787. font-style:normal;
  11788. font-size:10px;
  11789. letter-spacing:normal;
  11790. color:#000000;
  11791. vertical-align:none;
  11792. text-align:left;
  11793. text-transform:none;
  11794. background-color:transparent;
  11795. border-color:transparent;
  11796. }
  11797. #u20350_input.disabled {
  11798. position:absolute;
  11799. left:0px;
  11800. top:0px;
  11801. width:127px;
  11802. height:25px;
  11803. padding:2px 2px 2px 2px;
  11804. font-family:'Microsoft YaHei', sans-serif;
  11805. font-weight:400;
  11806. font-style:normal;
  11807. font-size:10px;
  11808. letter-spacing:normal;
  11809. color:#000000;
  11810. vertical-align:none;
  11811. text-align:left;
  11812. text-transform:none;
  11813. background-color:transparent;
  11814. border-color:transparent;
  11815. }
  11816. #u20350_div {
  11817. border-width:0px;
  11818. position:absolute;
  11819. left:0px;
  11820. top:0px;
  11821. width:127px;
  11822. height:25px;
  11823. background:inherit;
  11824. background-color:rgba(255, 255, 255, 1);
  11825. border:none;
  11826. border-radius:0px;
  11827. -moz-box-shadow:none;
  11828. -webkit-box-shadow:none;
  11829. box-shadow:none;
  11830. font-family:'Microsoft YaHei', sans-serif;
  11831. font-weight:400;
  11832. font-style:normal;
  11833. font-size:10px;
  11834. }
  11835. #u20350 {
  11836. border-width:0px;
  11837. position:absolute;
  11838. left:1436px;
  11839. top:184px;
  11840. width:127px;
  11841. height:25px;
  11842. display:flex;
  11843. font-family:'Microsoft YaHei', sans-serif;
  11844. font-weight:400;
  11845. font-style:normal;
  11846. font-size:10px;
  11847. }
  11848. #u20350 .text {
  11849. position:absolute;
  11850. align-self:center;
  11851. padding:2px 2px 2px 2px;
  11852. box-sizing:border-box;
  11853. width:100%;
  11854. }
  11855. #u20350_div.disabled {
  11856. border-width:0px;
  11857. position:absolute;
  11858. left:0px;
  11859. top:0px;
  11860. width:127px;
  11861. height:25px;
  11862. background:inherit;
  11863. background-color:rgba(240, 240, 240, 1);
  11864. border:none;
  11865. border-radius:0px;
  11866. -moz-box-shadow:none;
  11867. -webkit-box-shadow:none;
  11868. box-shadow:none;
  11869. font-family:'Microsoft YaHei', sans-serif;
  11870. font-weight:400;
  11871. font-style:normal;
  11872. font-size:10px;
  11873. }
  11874. #u20350.disabled {
  11875. }
  11876. #u20351 {
  11877. border-width:0px;
  11878. position:absolute;
  11879. left:0px;
  11880. top:0px;
  11881. width:0px;
  11882. height:0px;
  11883. }
  11884. #u20352_div {
  11885. border-width:0px;
  11886. position:absolute;
  11887. left:0px;
  11888. top:0px;
  11889. width:140px;
  11890. height:30px;
  11891. background:inherit;
  11892. background-color:rgba(255, 255, 255, 1);
  11893. box-sizing:border-box;
  11894. border-width:1px;
  11895. border-style:solid;
  11896. border-color:rgba(215, 215, 215, 1);
  11897. border-radius:4px;
  11898. -moz-box-shadow:none;
  11899. -webkit-box-shadow:none;
  11900. box-shadow:none;
  11901. font-size:11px;
  11902. }
  11903. #u20352 {
  11904. border-width:0px;
  11905. position:absolute;
  11906. left:228px;
  11907. top:224px;
  11908. width:140px;
  11909. height:30px;
  11910. display:flex;
  11911. font-size:11px;
  11912. }
  11913. #u20352 .text {
  11914. position:absolute;
  11915. align-self:center;
  11916. padding:2px 2px 2px 2px;
  11917. box-sizing:border-box;
  11918. width:100%;
  11919. }
  11920. #u20352_text {
  11921. border-width:0px;
  11922. word-wrap:break-word;
  11923. text-transform:none;
  11924. visibility:hidden;
  11925. }
  11926. #u20353_input {
  11927. position:absolute;
  11928. left:0px;
  11929. top:0px;
  11930. width:126px;
  11931. height:23px;
  11932. padding:2px 2px 2px 2px;
  11933. font-family:'ArialMT', 'Arial', sans-serif;
  11934. font-weight:400;
  11935. font-style:normal;
  11936. font-size:11px;
  11937. letter-spacing:normal;
  11938. color:#AAAAAA;
  11939. vertical-align:none;
  11940. text-align:left;
  11941. text-transform:none;
  11942. background-color:transparent;
  11943. border-color:transparent;
  11944. }
  11945. #u20353_input.disabled {
  11946. position:absolute;
  11947. left:0px;
  11948. top:0px;
  11949. width:126px;
  11950. height:23px;
  11951. padding:2px 2px 2px 2px;
  11952. font-family:'ArialMT', 'Arial', sans-serif;
  11953. font-weight:400;
  11954. font-style:normal;
  11955. font-size:11px;
  11956. letter-spacing:normal;
  11957. color:#AAAAAA;
  11958. vertical-align:none;
  11959. text-align:left;
  11960. text-transform:none;
  11961. background-color:transparent;
  11962. border-color:transparent;
  11963. }
  11964. #u20353_div {
  11965. border-width:0px;
  11966. position:absolute;
  11967. left:0px;
  11968. top:0px;
  11969. width:126px;
  11970. height:23px;
  11971. background:inherit;
  11972. background-color:rgba(255, 255, 255, 1);
  11973. border:none;
  11974. border-radius:0px;
  11975. -moz-box-shadow:none;
  11976. -webkit-box-shadow:none;
  11977. box-shadow:none;
  11978. font-size:11px;
  11979. color:#AAAAAA;
  11980. }
  11981. #u20353 {
  11982. border-width:0px;
  11983. position:absolute;
  11984. left:235px;
  11985. top:226px;
  11986. width:126px;
  11987. height:23px;
  11988. display:flex;
  11989. font-size:11px;
  11990. color:#AAAAAA;
  11991. }
  11992. #u20353 .text {
  11993. position:absolute;
  11994. align-self:flex-start;
  11995. padding:2px 2px 2px 2px;
  11996. box-sizing:border-box;
  11997. width:100%;
  11998. }
  11999. #u20353_div.disabled {
  12000. border-width:0px;
  12001. position:absolute;
  12002. left:0px;
  12003. top:0px;
  12004. width:126px;
  12005. height:23px;
  12006. background:inherit;
  12007. background-color:rgba(240, 240, 240, 1);
  12008. border:none;
  12009. border-radius:0px;
  12010. -moz-box-shadow:none;
  12011. -webkit-box-shadow:none;
  12012. box-shadow:none;
  12013. font-size:11px;
  12014. color:#AAAAAA;
  12015. }
  12016. #u20353.disabled {
  12017. }
  12018. .u20353_input_option {
  12019. font-size:11px;
  12020. }
  12021. #u20354 {
  12022. border-width:0px;
  12023. position:absolute;
  12024. left:0px;
  12025. top:0px;
  12026. width:0px;
  12027. height:0px;
  12028. }
  12029. #u20355_div {
  12030. border-width:0px;
  12031. position:absolute;
  12032. left:0px;
  12033. top:0px;
  12034. width:140px;
  12035. height:30px;
  12036. background:inherit;
  12037. background-color:rgba(255, 255, 255, 1);
  12038. box-sizing:border-box;
  12039. border-width:1px;
  12040. border-style:solid;
  12041. border-color:rgba(215, 215, 215, 1);
  12042. border-radius:4px;
  12043. -moz-box-shadow:none;
  12044. -webkit-box-shadow:none;
  12045. box-shadow:none;
  12046. font-size:11px;
  12047. }
  12048. #u20355 {
  12049. border-width:0px;
  12050. position:absolute;
  12051. left:528px;
  12052. top:225px;
  12053. width:140px;
  12054. height:30px;
  12055. display:flex;
  12056. font-size:11px;
  12057. }
  12058. #u20355 .text {
  12059. position:absolute;
  12060. align-self:center;
  12061. padding:2px 2px 2px 2px;
  12062. box-sizing:border-box;
  12063. width:100%;
  12064. }
  12065. #u20355_text {
  12066. border-width:0px;
  12067. word-wrap:break-word;
  12068. text-transform:none;
  12069. visibility:hidden;
  12070. }
  12071. #u20356_input {
  12072. position:absolute;
  12073. left:0px;
  12074. top:0px;
  12075. width:126px;
  12076. height:23px;
  12077. padding:2px 2px 2px 2px;
  12078. font-family:'ArialMT', 'Arial', sans-serif;
  12079. font-weight:400;
  12080. font-style:normal;
  12081. font-size:11px;
  12082. letter-spacing:normal;
  12083. color:#AAAAAA;
  12084. vertical-align:none;
  12085. text-align:left;
  12086. text-transform:none;
  12087. background-color:transparent;
  12088. border-color:transparent;
  12089. }
  12090. #u20356_input.disabled {
  12091. position:absolute;
  12092. left:0px;
  12093. top:0px;
  12094. width:126px;
  12095. height:23px;
  12096. padding:2px 2px 2px 2px;
  12097. font-family:'ArialMT', 'Arial', sans-serif;
  12098. font-weight:400;
  12099. font-style:normal;
  12100. font-size:11px;
  12101. letter-spacing:normal;
  12102. color:#AAAAAA;
  12103. vertical-align:none;
  12104. text-align:left;
  12105. text-transform:none;
  12106. background-color:transparent;
  12107. border-color:transparent;
  12108. }
  12109. #u20356_div {
  12110. border-width:0px;
  12111. position:absolute;
  12112. left:0px;
  12113. top:0px;
  12114. width:126px;
  12115. height:23px;
  12116. background:inherit;
  12117. background-color:rgba(255, 255, 255, 1);
  12118. border:none;
  12119. border-radius:0px;
  12120. -moz-box-shadow:none;
  12121. -webkit-box-shadow:none;
  12122. box-shadow:none;
  12123. font-size:11px;
  12124. color:#AAAAAA;
  12125. }
  12126. #u20356 {
  12127. border-width:0px;
  12128. position:absolute;
  12129. left:535px;
  12130. top:227px;
  12131. width:126px;
  12132. height:23px;
  12133. display:flex;
  12134. font-size:11px;
  12135. color:#AAAAAA;
  12136. }
  12137. #u20356 .text {
  12138. position:absolute;
  12139. align-self:flex-start;
  12140. padding:2px 2px 2px 2px;
  12141. box-sizing:border-box;
  12142. width:100%;
  12143. }
  12144. #u20356_div.disabled {
  12145. border-width:0px;
  12146. position:absolute;
  12147. left:0px;
  12148. top:0px;
  12149. width:126px;
  12150. height:23px;
  12151. background:inherit;
  12152. background-color:rgba(240, 240, 240, 1);
  12153. border:none;
  12154. border-radius:0px;
  12155. -moz-box-shadow:none;
  12156. -webkit-box-shadow:none;
  12157. box-shadow:none;
  12158. font-size:11px;
  12159. color:#AAAAAA;
  12160. }
  12161. #u20356.disabled {
  12162. }
  12163. .u20356_input_option {
  12164. font-size:11px;
  12165. }
  12166. #u20357 {
  12167. border-width:0px;
  12168. position:absolute;
  12169. left:0px;
  12170. top:0px;
  12171. width:0px;
  12172. height:0px;
  12173. }
  12174. #u20358_div {
  12175. border-width:0px;
  12176. position:absolute;
  12177. left:0px;
  12178. top:0px;
  12179. width:140px;
  12180. height:30px;
  12181. background:inherit;
  12182. background-color:rgba(255, 255, 255, 1);
  12183. box-sizing:border-box;
  12184. border-width:1px;
  12185. border-style:solid;
  12186. border-color:rgba(215, 215, 215, 1);
  12187. border-radius:4px;
  12188. -moz-box-shadow:none;
  12189. -webkit-box-shadow:none;
  12190. box-shadow:none;
  12191. font-size:11px;
  12192. }
  12193. #u20358 {
  12194. border-width:0px;
  12195. position:absolute;
  12196. left:678px;
  12197. top:225px;
  12198. width:140px;
  12199. height:30px;
  12200. display:flex;
  12201. font-size:11px;
  12202. }
  12203. #u20358 .text {
  12204. position:absolute;
  12205. align-self:center;
  12206. padding:2px 2px 2px 2px;
  12207. box-sizing:border-box;
  12208. width:100%;
  12209. }
  12210. #u20358_text {
  12211. border-width:0px;
  12212. word-wrap:break-word;
  12213. text-transform:none;
  12214. visibility:hidden;
  12215. }
  12216. #u20359_input {
  12217. position:absolute;
  12218. left:0px;
  12219. top:0px;
  12220. width:126px;
  12221. height:23px;
  12222. padding:2px 2px 2px 2px;
  12223. font-family:'ArialMT', 'Arial', sans-serif;
  12224. font-weight:400;
  12225. font-style:normal;
  12226. font-size:11px;
  12227. letter-spacing:normal;
  12228. color:#AAAAAA;
  12229. vertical-align:none;
  12230. text-align:left;
  12231. text-transform:none;
  12232. background-color:transparent;
  12233. border-color:transparent;
  12234. }
  12235. #u20359_input.disabled {
  12236. position:absolute;
  12237. left:0px;
  12238. top:0px;
  12239. width:126px;
  12240. height:23px;
  12241. padding:2px 2px 2px 2px;
  12242. font-family:'ArialMT', 'Arial', sans-serif;
  12243. font-weight:400;
  12244. font-style:normal;
  12245. font-size:11px;
  12246. letter-spacing:normal;
  12247. color:#AAAAAA;
  12248. vertical-align:none;
  12249. text-align:left;
  12250. text-transform:none;
  12251. background-color:transparent;
  12252. border-color:transparent;
  12253. }
  12254. #u20359_div {
  12255. border-width:0px;
  12256. position:absolute;
  12257. left:0px;
  12258. top:0px;
  12259. width:126px;
  12260. height:23px;
  12261. background:inherit;
  12262. background-color:rgba(255, 255, 255, 1);
  12263. border:none;
  12264. border-radius:0px;
  12265. -moz-box-shadow:none;
  12266. -webkit-box-shadow:none;
  12267. box-shadow:none;
  12268. font-size:11px;
  12269. color:#AAAAAA;
  12270. }
  12271. #u20359 {
  12272. border-width:0px;
  12273. position:absolute;
  12274. left:685px;
  12275. top:227px;
  12276. width:126px;
  12277. height:23px;
  12278. display:flex;
  12279. font-size:11px;
  12280. color:#AAAAAA;
  12281. }
  12282. #u20359 .text {
  12283. position:absolute;
  12284. align-self:flex-start;
  12285. padding:2px 2px 2px 2px;
  12286. box-sizing:border-box;
  12287. width:100%;
  12288. }
  12289. #u20359_div.disabled {
  12290. border-width:0px;
  12291. position:absolute;
  12292. left:0px;
  12293. top:0px;
  12294. width:126px;
  12295. height:23px;
  12296. background:inherit;
  12297. background-color:rgba(240, 240, 240, 1);
  12298. border:none;
  12299. border-radius:0px;
  12300. -moz-box-shadow:none;
  12301. -webkit-box-shadow:none;
  12302. box-shadow:none;
  12303. font-size:11px;
  12304. color:#AAAAAA;
  12305. }
  12306. #u20359.disabled {
  12307. }
  12308. .u20359_input_option {
  12309. font-size:11px;
  12310. }
  12311. #u20360 {
  12312. border-width:0px;
  12313. position:absolute;
  12314. left:0px;
  12315. top:0px;
  12316. width:0px;
  12317. height:0px;
  12318. }
  12319. #u20361_div {
  12320. border-width:0px;
  12321. position:absolute;
  12322. left:0px;
  12323. top:0px;
  12324. width:100px;
  12325. height:30px;
  12326. background:inherit;
  12327. background-color:rgba(24, 144, 255, 1);
  12328. box-sizing:border-box;
  12329. border-width:1px;
  12330. border-style:solid;
  12331. border-color:rgba(0, 153, 255, 1);
  12332. border-radius:4px;
  12333. -moz-box-shadow:none;
  12334. -webkit-box-shadow:none;
  12335. box-shadow:none;
  12336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12337. font-weight:400;
  12338. font-style:normal;
  12339. font-size:14px;
  12340. color:#FFFFFF;
  12341. }
  12342. #u20361 {
  12343. border-width:0px;
  12344. position:absolute;
  12345. left:231px;
  12346. top:275px;
  12347. width:100px;
  12348. height:30px;
  12349. display:flex;
  12350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12351. font-weight:400;
  12352. font-style:normal;
  12353. font-size:14px;
  12354. color:#FFFFFF;
  12355. }
  12356. #u20361 .text {
  12357. position:absolute;
  12358. align-self:center;
  12359. padding:5px 15px 5px 10px;
  12360. box-sizing:border-box;
  12361. width:100%;
  12362. }
  12363. #u20361_text {
  12364. border-width:0px;
  12365. word-wrap:break-word;
  12366. text-transform:none;
  12367. }
  12368. #u20362_img {
  12369. border-width:0px;
  12370. position:absolute;
  12371. left:0px;
  12372. top:0px;
  12373. width:10px;
  12374. height:5px;
  12375. }
  12376. #u20362 {
  12377. border-width:0px;
  12378. position:absolute;
  12379. left:314px;
  12380. top:290px;
  12381. width:10px;
  12382. height:5px;
  12383. display:flex;
  12384. }
  12385. #u20362 .text {
  12386. position:absolute;
  12387. align-self:center;
  12388. padding:2px 2px 2px 2px;
  12389. box-sizing:border-box;
  12390. width:100%;
  12391. }
  12392. #u20362_text {
  12393. border-width:0px;
  12394. word-wrap:break-word;
  12395. text-transform:none;
  12396. visibility:hidden;
  12397. }
  12398. #u20363 {
  12399. border-width:0px;
  12400. position:absolute;
  12401. left:0px;
  12402. top:0px;
  12403. width:0px;
  12404. height:0px;
  12405. }
  12406. #u20364_div {
  12407. border-width:0px;
  12408. position:absolute;
  12409. left:0px;
  12410. top:0px;
  12411. width:100px;
  12412. height:30px;
  12413. background:inherit;
  12414. background-color:rgba(24, 144, 255, 1);
  12415. box-sizing:border-box;
  12416. border-width:1px;
  12417. border-style:solid;
  12418. border-color:rgba(0, 153, 255, 1);
  12419. border-radius:4px;
  12420. -moz-box-shadow:none;
  12421. -webkit-box-shadow:none;
  12422. box-shadow:none;
  12423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12424. font-weight:400;
  12425. font-style:normal;
  12426. font-size:14px;
  12427. color:#FFFFFF;
  12428. }
  12429. #u20364 {
  12430. border-width:0px;
  12431. position:absolute;
  12432. left:318px;
  12433. top:676px;
  12434. width:100px;
  12435. height:30px;
  12436. display:flex;
  12437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12438. font-weight:400;
  12439. font-style:normal;
  12440. font-size:14px;
  12441. color:#FFFFFF;
  12442. }
  12443. #u20364 .text {
  12444. position:absolute;
  12445. align-self:center;
  12446. padding:5px 15px 5px 10px;
  12447. box-sizing:border-box;
  12448. width:100%;
  12449. }
  12450. #u20364_text {
  12451. border-width:0px;
  12452. word-wrap:break-word;
  12453. text-transform:none;
  12454. }
  12455. #u20365_img {
  12456. border-width:0px;
  12457. position:absolute;
  12458. left:0px;
  12459. top:0px;
  12460. width:10px;
  12461. height:5px;
  12462. }
  12463. #u20365 {
  12464. border-width:0px;
  12465. position:absolute;
  12466. left:401px;
  12467. top:691px;
  12468. width:10px;
  12469. height:5px;
  12470. display:flex;
  12471. }
  12472. #u20365 .text {
  12473. position:absolute;
  12474. align-self:center;
  12475. padding:2px 2px 2px 2px;
  12476. box-sizing:border-box;
  12477. width:100%;
  12478. }
  12479. #u20365_text {
  12480. border-width:0px;
  12481. word-wrap:break-word;
  12482. text-transform:none;
  12483. visibility:hidden;
  12484. }
  12485. #u20366 {
  12486. border-width:0px;
  12487. position:absolute;
  12488. left:0px;
  12489. top:0px;
  12490. width:0px;
  12491. height:0px;
  12492. }
  12493. #u20367_div {
  12494. border-width:0px;
  12495. position:absolute;
  12496. left:0px;
  12497. top:0px;
  12498. width:120px;
  12499. height:100px;
  12500. background:inherit;
  12501. background-color:rgba(255, 255, 255, 1);
  12502. box-sizing:border-box;
  12503. border-width:1px;
  12504. border-style:solid;
  12505. border-color:rgba(242, 242, 242, 1);
  12506. border-radius:4px;
  12507. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12508. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12509. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12511. font-weight:400;
  12512. font-style:normal;
  12513. font-size:14px;
  12514. text-align:left;
  12515. }
  12516. #u20367 {
  12517. border-width:0px;
  12518. position:absolute;
  12519. left:298px;
  12520. top:721px;
  12521. width:120px;
  12522. height:100px;
  12523. display:flex;
  12524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12525. font-weight:400;
  12526. font-style:normal;
  12527. font-size:14px;
  12528. text-align:left;
  12529. }
  12530. #u20367 .text {
  12531. position:absolute;
  12532. align-self:center;
  12533. padding:2px 2px 2px 2px;
  12534. box-sizing:border-box;
  12535. width:100%;
  12536. }
  12537. #u20367_text {
  12538. border-width:0px;
  12539. word-wrap:break-word;
  12540. text-transform:none;
  12541. visibility:hidden;
  12542. }
  12543. #u20368_div {
  12544. border-width:0px;
  12545. position:absolute;
  12546. left:0px;
  12547. top:0px;
  12548. width:102px;
  12549. height:40px;
  12550. background:inherit;
  12551. background-color:rgba(255, 255, 255, 1);
  12552. box-sizing:border-box;
  12553. border-width:1px;
  12554. border-style:solid;
  12555. border-color:rgba(215, 215, 215, 1);
  12556. border-left:0px;
  12557. border-top:0px;
  12558. border-right:0px;
  12559. border-radius:0px;
  12560. border-bottom-right-radius:0px;
  12561. border-bottom-left-radius:0px;
  12562. -moz-box-shadow:none;
  12563. -webkit-box-shadow:none;
  12564. box-shadow:none;
  12565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12566. font-weight:400;
  12567. font-style:normal;
  12568. font-size:14px;
  12569. }
  12570. #u20368 {
  12571. border-width:0px;
  12572. position:absolute;
  12573. left:308px;
  12574. top:731px;
  12575. width:102px;
  12576. height:40px;
  12577. display:flex;
  12578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12579. font-weight:400;
  12580. font-style:normal;
  12581. font-size:14px;
  12582. }
  12583. #u20368 .text {
  12584. position:absolute;
  12585. align-self:center;
  12586. padding:2px 2px 2px 2px;
  12587. box-sizing:border-box;
  12588. width:100%;
  12589. }
  12590. #u20368_text {
  12591. border-width:0px;
  12592. word-wrap:break-word;
  12593. text-transform:none;
  12594. }
  12595. #u20369_div {
  12596. border-width:0px;
  12597. position:absolute;
  12598. left:0px;
  12599. top:0px;
  12600. width:102px;
  12601. height:40px;
  12602. background:inherit;
  12603. background-color:rgba(255, 255, 255, 1);
  12604. border:none;
  12605. border-left:0px;
  12606. border-top:0px;
  12607. border-right:0px;
  12608. border-radius:0px;
  12609. border-bottom-right-radius:0px;
  12610. border-bottom-left-radius:0px;
  12611. -moz-box-shadow:none;
  12612. -webkit-box-shadow:none;
  12613. box-shadow:none;
  12614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12615. font-weight:400;
  12616. font-style:normal;
  12617. font-size:14px;
  12618. }
  12619. #u20369 {
  12620. border-width:0px;
  12621. position:absolute;
  12622. left:308px;
  12623. top:771px;
  12624. width:102px;
  12625. height:40px;
  12626. display:flex;
  12627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12628. font-weight:400;
  12629. font-style:normal;
  12630. font-size:14px;
  12631. }
  12632. #u20369 .text {
  12633. position:absolute;
  12634. align-self:center;
  12635. padding:2px 2px 2px 2px;
  12636. box-sizing:border-box;
  12637. width:100%;
  12638. }
  12639. #u20369_text {
  12640. border-width:0px;
  12641. word-wrap:break-word;
  12642. text-transform:none;
  12643. }
  12644. #u20370_div {
  12645. border-width:0px;
  12646. position:absolute;
  12647. left:0px;
  12648. top:0px;
  12649. width:1093px;
  12650. height:195px;
  12651. background:inherit;
  12652. background-color:rgba(255, 255, 255, 0);
  12653. box-sizing:border-box;
  12654. border-width:1px;
  12655. border-style:solid;
  12656. border-color:rgba(217, 0, 27, 1);
  12657. border-radius:3px;
  12658. -moz-box-shadow:none;
  12659. -webkit-box-shadow:none;
  12660. box-shadow:none;
  12661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12662. font-weight:400;
  12663. font-style:normal;
  12664. color:#D9001B;
  12665. line-height:25px;
  12666. }
  12667. #u20370 {
  12668. border-width:0px;
  12669. position:absolute;
  12670. left:246px;
  12671. top:854px;
  12672. width:1093px;
  12673. height:195px;
  12674. display:flex;
  12675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12676. font-weight:400;
  12677. font-style:normal;
  12678. color:#D9001B;
  12679. line-height:25px;
  12680. }
  12681. #u20370 .text {
  12682. position:absolute;
  12683. align-self:flex-start;
  12684. padding:10px 10px 10px 10px;
  12685. box-sizing:border-box;
  12686. width:100%;
  12687. }
  12688. #u20370_text {
  12689. border-width:0px;
  12690. white-space:nowrap;
  12691. text-transform:none;
  12692. }
  12693. #u20371_div {
  12694. border-width:0px;
  12695. position:absolute;
  12696. left:0px;
  12697. top:0px;
  12698. width:79px;
  12699. height:30px;
  12700. background:inherit;
  12701. background-color:rgba(255, 255, 255, 1);
  12702. box-sizing:border-box;
  12703. border-width:1px;
  12704. border-style:solid;
  12705. border-color:rgba(170, 170, 170, 1);
  12706. border-radius:4px;
  12707. -moz-box-shadow:none;
  12708. -webkit-box-shadow:none;
  12709. box-shadow:none;
  12710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12711. font-weight:400;
  12712. font-style:normal;
  12713. font-size:12px;
  12714. color:#555555;
  12715. }
  12716. #u20371 {
  12717. border-width:0px;
  12718. position:absolute;
  12719. left:1489px;
  12720. top:273px;
  12721. width:79px;
  12722. height:30px;
  12723. display:flex;
  12724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12725. font-weight:400;
  12726. font-style:normal;
  12727. font-size:12px;
  12728. color:#555555;
  12729. }
  12730. #u20371 .text {
  12731. position:absolute;
  12732. align-self:center;
  12733. padding:5px 15px 5px 15px;
  12734. box-sizing:border-box;
  12735. width:100%;
  12736. }
  12737. #u20371_text {
  12738. border-width:0px;
  12739. white-space:nowrap;
  12740. text-transform:none;
  12741. }
  12742. #u20372_div {
  12743. border-width:0px;
  12744. position:absolute;
  12745. left:0px;
  12746. top:0px;
  12747. width:715px;
  12748. height:30px;
  12749. background:inherit;
  12750. background-color:rgba(255, 255, 255, 0);
  12751. border:none;
  12752. border-left:0px;
  12753. border-top:0px;
  12754. border-right:0px;
  12755. border-radius:0px;
  12756. border-bottom-right-radius:0px;
  12757. border-bottom-left-radius:0px;
  12758. -moz-box-shadow:none;
  12759. -webkit-box-shadow:none;
  12760. box-shadow:none;
  12761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12762. font-weight:400;
  12763. font-style:normal;
  12764. font-size:14px;
  12765. color:#D9001B;
  12766. }
  12767. #u20372 {
  12768. border-width:0px;
  12769. position:absolute;
  12770. left:548px;
  12771. top:74px;
  12772. width:715px;
  12773. height:30px;
  12774. display:flex;
  12775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12776. font-weight:400;
  12777. font-style:normal;
  12778. font-size:14px;
  12779. color:#D9001B;
  12780. }
  12781. #u20372 .text {
  12782. position:absolute;
  12783. align-self:center;
  12784. padding:5px 0px 5px 0px;
  12785. box-sizing:border-box;
  12786. width:100%;
  12787. }
  12788. #u20372_text {
  12789. border-width:0px;
  12790. white-space:nowrap;
  12791. text-transform:none;
  12792. }