styles.css 205 KB

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