styles.css 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-68px;
  6. width:1000px;
  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. #u10120 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u10121_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u10121 {
  53. border-width:0px;
  54. position:absolute;
  55. left:68px;
  56. top:45px;
  57. width:1000px;
  58. height:1200px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u10121 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u10121_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u10122_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:83px;
  87. height:35px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 0);
  90. border:none;
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. -moz-box-shadow:none;
  98. -webkit-box-shadow:none;
  99. box-shadow:none;
  100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  101. font-weight:500;
  102. font-style:normal;
  103. font-size:18px;
  104. }
  105. #u10122 {
  106. border-width:0px;
  107. position:absolute;
  108. left:88px;
  109. top:63px;
  110. width:83px;
  111. height:35px;
  112. display:flex;
  113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  114. font-weight:500;
  115. font-style:normal;
  116. font-size:18px;
  117. }
  118. #u10122 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:5px 10px 5px 0px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u10122_text {
  126. border-width:0px;
  127. white-space:nowrap;
  128. text-transform:none;
  129. }
  130. #u10123 {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:0px;
  136. height:0px;
  137. }
  138. #u10124_div {
  139. border-width:0px;
  140. position:absolute;
  141. left:0px;
  142. top:0px;
  143. width:1000px;
  144. height:60px;
  145. background:inherit;
  146. background-color:rgba(255, 255, 255, 1);
  147. box-sizing:border-box;
  148. border-width:1px;
  149. border-style:solid;
  150. border-color:rgba(215, 215, 215, 1);
  151. border-radius:0px;
  152. -moz-box-shadow:none;
  153. -webkit-box-shadow:none;
  154. box-shadow:none;
  155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  156. font-weight:400;
  157. font-style:normal;
  158. font-size:14px;
  159. color:#AAAAAA;
  160. text-align:center;
  161. line-height:30px;
  162. }
  163. #u10124 {
  164. border-width:0px;
  165. position:absolute;
  166. left:68px;
  167. top:1185px;
  168. width:1000px;
  169. height:60px;
  170. display:flex;
  171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  172. font-weight:400;
  173. font-style:normal;
  174. font-size:14px;
  175. color:#AAAAAA;
  176. text-align:center;
  177. line-height:30px;
  178. }
  179. #u10124 .text {
  180. position:absolute;
  181. align-self:center;
  182. padding:5px 10px 5px 10px;
  183. box-sizing:border-box;
  184. width:100%;
  185. }
  186. #u10124_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u10125_div {
  193. border-width:0px;
  194. position:absolute;
  195. left:0px;
  196. top:0px;
  197. width:79px;
  198. height:30px;
  199. background:inherit;
  200. background-color:rgba(255, 255, 255, 1);
  201. box-sizing:border-box;
  202. border-width:1px;
  203. border-style:solid;
  204. border-color:rgba(170, 170, 170, 1);
  205. border-radius:4px;
  206. -moz-box-shadow:none;
  207. -webkit-box-shadow:none;
  208. box-shadow:none;
  209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:14px;
  213. }
  214. #u10125 {
  215. border-width:0px;
  216. position:absolute;
  217. left:949px;
  218. top:1200px;
  219. width:79px;
  220. height:30px;
  221. display:flex;
  222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  223. font-weight:400;
  224. font-style:normal;
  225. font-size:14px;
  226. }
  227. #u10125 .text {
  228. position:absolute;
  229. align-self:center;
  230. padding:2px 2px 2px 2px;
  231. box-sizing:border-box;
  232. width:100%;
  233. }
  234. #u10125_text {
  235. border-width:0px;
  236. word-wrap:break-word;
  237. text-transform:none;
  238. }
  239. #u10126_div {
  240. border-width:0px;
  241. position:absolute;
  242. left:0px;
  243. top:0px;
  244. width:83px;
  245. height:35px;
  246. background:inherit;
  247. background-color:rgba(255, 255, 255, 0);
  248. border:none;
  249. border-top:0px;
  250. border-right:0px;
  251. border-bottom:0px;
  252. border-radius:0px;
  253. border-top-left-radius:0px;
  254. border-bottom-left-radius:0px;
  255. -moz-box-shadow:none;
  256. -webkit-box-shadow:none;
  257. box-shadow:none;
  258. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  259. font-weight:500;
  260. font-style:normal;
  261. font-size:18px;
  262. }
  263. #u10126 {
  264. border-width:0px;
  265. position:absolute;
  266. left:88px;
  267. top:288px;
  268. width:83px;
  269. height:35px;
  270. display:flex;
  271. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  272. font-weight:500;
  273. font-style:normal;
  274. font-size:18px;
  275. }
  276. #u10126 .text {
  277. position:absolute;
  278. align-self:center;
  279. padding:5px 10px 5px 0px;
  280. box-sizing:border-box;
  281. width:100%;
  282. }
  283. #u10126_text {
  284. border-width:0px;
  285. white-space:nowrap;
  286. text-transform:none;
  287. }
  288. #u10127 {
  289. border-width:0px;
  290. position:absolute;
  291. left:88px;
  292. top:420px;
  293. width:959px;
  294. height:431px;
  295. }
  296. #u10128_img {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:107px;
  302. height:38px;
  303. }
  304. #u10128 {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:107px;
  310. height:38px;
  311. display:flex;
  312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  313. font-weight:400;
  314. font-style:normal;
  315. font-size:11px;
  316. color:#FFFFFF;
  317. }
  318. #u10128 .text {
  319. position:absolute;
  320. align-self:center;
  321. padding:2px 2px 2px 0px;
  322. box-sizing:border-box;
  323. width:100%;
  324. }
  325. #u10128_text {
  326. border-width:0px;
  327. word-wrap:break-word;
  328. text-transform:none;
  329. }
  330. #u10129_img {
  331. border-width:0px;
  332. position:absolute;
  333. left:0px;
  334. top:0px;
  335. width:122px;
  336. height:38px;
  337. }
  338. #u10129 {
  339. border-width:0px;
  340. position:absolute;
  341. left:107px;
  342. top:0px;
  343. width:122px;
  344. height:38px;
  345. display:flex;
  346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  347. font-weight:400;
  348. font-style:normal;
  349. font-size:11px;
  350. color:#FFFFFF;
  351. }
  352. #u10129 .text {
  353. position:absolute;
  354. align-self:center;
  355. padding:2px 2px 2px 0px;
  356. box-sizing:border-box;
  357. width:100%;
  358. }
  359. #u10129_text {
  360. border-width:0px;
  361. word-wrap:break-word;
  362. text-transform:none;
  363. }
  364. #u10130_img {
  365. border-width:0px;
  366. position:absolute;
  367. left:0px;
  368. top:0px;
  369. width:81px;
  370. height:38px;
  371. }
  372. #u10130 {
  373. border-width:0px;
  374. position:absolute;
  375. left:229px;
  376. top:0px;
  377. width:81px;
  378. height:38px;
  379. display:flex;
  380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  381. font-weight:400;
  382. font-style:normal;
  383. font-size:11px;
  384. color:#FFFFFF;
  385. }
  386. #u10130 .text {
  387. position:absolute;
  388. align-self:center;
  389. padding:2px 2px 2px 0px;
  390. box-sizing:border-box;
  391. width:100%;
  392. }
  393. #u10130_text {
  394. border-width:0px;
  395. word-wrap:break-word;
  396. text-transform:none;
  397. }
  398. #u10131_img {
  399. border-width:0px;
  400. position:absolute;
  401. left:0px;
  402. top:0px;
  403. width:81px;
  404. height:38px;
  405. }
  406. #u10131 {
  407. border-width:0px;
  408. position:absolute;
  409. left:310px;
  410. top:0px;
  411. width:81px;
  412. height:38px;
  413. display:flex;
  414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  415. font-weight:400;
  416. font-style:normal;
  417. font-size:11px;
  418. color:#FFFFFF;
  419. }
  420. #u10131 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 0px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u10131_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. }
  432. #u10132_img {
  433. border-width:0px;
  434. position:absolute;
  435. left:0px;
  436. top:0px;
  437. width:81px;
  438. height:38px;
  439. }
  440. #u10132 {
  441. border-width:0px;
  442. position:absolute;
  443. left:391px;
  444. top:0px;
  445. width:81px;
  446. height:38px;
  447. display:flex;
  448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  449. font-weight:400;
  450. font-style:normal;
  451. font-size:11px;
  452. color:#FFFFFF;
  453. }
  454. #u10132 .text {
  455. position:absolute;
  456. align-self:center;
  457. padding:2px 2px 2px 0px;
  458. box-sizing:border-box;
  459. width:100%;
  460. }
  461. #u10132_text {
  462. border-width:0px;
  463. word-wrap:break-word;
  464. text-transform:none;
  465. }
  466. #u10133_img {
  467. border-width:0px;
  468. position:absolute;
  469. left:0px;
  470. top:0px;
  471. width:81px;
  472. height:38px;
  473. }
  474. #u10133 {
  475. border-width:0px;
  476. position:absolute;
  477. left:472px;
  478. top:0px;
  479. width:81px;
  480. height:38px;
  481. display:flex;
  482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  483. font-weight:400;
  484. font-style:normal;
  485. font-size:11px;
  486. color:#FFFFFF;
  487. }
  488. #u10133 .text {
  489. position:absolute;
  490. align-self:center;
  491. padding:2px 2px 2px 0px;
  492. box-sizing:border-box;
  493. width:100%;
  494. }
  495. #u10133_text {
  496. border-width:0px;
  497. word-wrap:break-word;
  498. text-transform:none;
  499. }
  500. #u10134_img {
  501. border-width:0px;
  502. position:absolute;
  503. left:0px;
  504. top:0px;
  505. width:81px;
  506. height:38px;
  507. }
  508. #u10134 {
  509. border-width:0px;
  510. position:absolute;
  511. left:553px;
  512. top:0px;
  513. width:81px;
  514. height:38px;
  515. display:flex;
  516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  517. font-weight:400;
  518. font-style:normal;
  519. font-size:11px;
  520. color:#FFFFFF;
  521. }
  522. #u10134 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 0px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u10134_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u10135_img {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:81px;
  540. height:38px;
  541. }
  542. #u10135 {
  543. border-width:0px;
  544. position:absolute;
  545. left:634px;
  546. top:0px;
  547. width:81px;
  548. height:38px;
  549. display:flex;
  550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  551. font-weight:400;
  552. font-style:normal;
  553. font-size:11px;
  554. color:#FFFFFF;
  555. }
  556. #u10135 .text {
  557. position:absolute;
  558. align-self:center;
  559. padding:2px 2px 2px 0px;
  560. box-sizing:border-box;
  561. width:100%;
  562. }
  563. #u10135_text {
  564. border-width:0px;
  565. word-wrap:break-word;
  566. text-transform:none;
  567. }
  568. #u10136_img {
  569. border-width:0px;
  570. position:absolute;
  571. left:0px;
  572. top:0px;
  573. width:81px;
  574. height:38px;
  575. }
  576. #u10136 {
  577. border-width:0px;
  578. position:absolute;
  579. left:715px;
  580. top:0px;
  581. width:81px;
  582. height:38px;
  583. display:flex;
  584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  585. font-weight:400;
  586. font-style:normal;
  587. font-size:11px;
  588. color:#FFFFFF;
  589. }
  590. #u10136 .text {
  591. position:absolute;
  592. align-self:center;
  593. padding:2px 2px 2px 0px;
  594. box-sizing:border-box;
  595. width:100%;
  596. }
  597. #u10136_text {
  598. border-width:0px;
  599. word-wrap:break-word;
  600. text-transform:none;
  601. }
  602. #u10137_img {
  603. border-width:0px;
  604. position:absolute;
  605. left:0px;
  606. top:0px;
  607. width:81px;
  608. height:38px;
  609. }
  610. #u10137 {
  611. border-width:0px;
  612. position:absolute;
  613. left:796px;
  614. top:0px;
  615. width:81px;
  616. height:38px;
  617. display:flex;
  618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  619. font-weight:400;
  620. font-style:normal;
  621. font-size:11px;
  622. color:#FFFFFF;
  623. }
  624. #u10137 .text {
  625. position:absolute;
  626. align-self:center;
  627. padding:2px 2px 2px 0px;
  628. box-sizing:border-box;
  629. width:100%;
  630. }
  631. #u10137_text {
  632. border-width:0px;
  633. word-wrap:break-word;
  634. text-transform:none;
  635. }
  636. #u10138_img {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:82px;
  642. height:38px;
  643. }
  644. #u10138 {
  645. border-width:0px;
  646. position:absolute;
  647. left:877px;
  648. top:0px;
  649. width:82px;
  650. height:38px;
  651. display:flex;
  652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  653. font-weight:400;
  654. font-style:normal;
  655. font-size:11px;
  656. color:#FFFFFF;
  657. }
  658. #u10138 .text {
  659. position:absolute;
  660. align-self:center;
  661. padding:2px 2px 2px 0px;
  662. box-sizing:border-box;
  663. width:100%;
  664. }
  665. #u10138_text {
  666. border-width:0px;
  667. word-wrap:break-word;
  668. text-transform:none;
  669. }
  670. #u10139_img {
  671. border-width:0px;
  672. position:absolute;
  673. left:0px;
  674. top:0px;
  675. width:107px;
  676. height:39px;
  677. }
  678. #u10139 {
  679. border-width:0px;
  680. position:absolute;
  681. left:0px;
  682. top:38px;
  683. width:107px;
  684. height:39px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:11px;
  690. color:#333333;
  691. }
  692. #u10139 .text {
  693. position:absolute;
  694. align-self:center;
  695. padding:2px 2px 2px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u10139_text {
  700. border-width:0px;
  701. word-wrap:break-word;
  702. text-transform:none;
  703. }
  704. #u10140_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:122px;
  710. height:39px;
  711. }
  712. #u10140 {
  713. border-width:0px;
  714. position:absolute;
  715. left:107px;
  716. top:38px;
  717. width:122px;
  718. height:39px;
  719. display:flex;
  720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  721. font-weight:400;
  722. font-style:normal;
  723. font-size:11px;
  724. color:#333333;
  725. }
  726. #u10140 .text {
  727. position:absolute;
  728. align-self:center;
  729. padding:2px 2px 2px 0px;
  730. box-sizing:border-box;
  731. width:100%;
  732. }
  733. #u10140_text {
  734. border-width:0px;
  735. word-wrap:break-word;
  736. text-transform:none;
  737. }
  738. #u10141_img {
  739. border-width:0px;
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:81px;
  744. height:39px;
  745. }
  746. #u10141 {
  747. border-width:0px;
  748. position:absolute;
  749. left:229px;
  750. top:38px;
  751. width:81px;
  752. height:39px;
  753. display:flex;
  754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  755. font-weight:400;
  756. font-style:normal;
  757. font-size:11px;
  758. color:#333333;
  759. }
  760. #u10141 .text {
  761. position:absolute;
  762. align-self:center;
  763. padding:2px 2px 2px 0px;
  764. box-sizing:border-box;
  765. width:100%;
  766. }
  767. #u10141_text {
  768. border-width:0px;
  769. word-wrap:break-word;
  770. text-transform:none;
  771. visibility:hidden;
  772. }
  773. #u10142_img {
  774. border-width:0px;
  775. position:absolute;
  776. left:0px;
  777. top:0px;
  778. width:81px;
  779. height:39px;
  780. }
  781. #u10142 {
  782. border-width:0px;
  783. position:absolute;
  784. left:310px;
  785. top:38px;
  786. width:81px;
  787. height:39px;
  788. display:flex;
  789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  790. font-weight:400;
  791. font-style:normal;
  792. font-size:11px;
  793. color:#333333;
  794. }
  795. #u10142 .text {
  796. position:absolute;
  797. align-self:center;
  798. padding:2px 2px 2px 0px;
  799. box-sizing:border-box;
  800. width:100%;
  801. }
  802. #u10142_text {
  803. border-width:0px;
  804. word-wrap:break-word;
  805. text-transform:none;
  806. visibility:hidden;
  807. }
  808. #u10143_img {
  809. border-width:0px;
  810. position:absolute;
  811. left:0px;
  812. top:0px;
  813. width:81px;
  814. height:39px;
  815. }
  816. #u10143 {
  817. border-width:0px;
  818. position:absolute;
  819. left:391px;
  820. top:38px;
  821. width:81px;
  822. height:39px;
  823. display:flex;
  824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  825. font-weight:400;
  826. font-style:normal;
  827. font-size:11px;
  828. color:#333333;
  829. }
  830. #u10143 .text {
  831. position:absolute;
  832. align-self:center;
  833. padding:2px 2px 2px 0px;
  834. box-sizing:border-box;
  835. width:100%;
  836. }
  837. #u10143_text {
  838. border-width:0px;
  839. word-wrap:break-word;
  840. text-transform:none;
  841. visibility:hidden;
  842. }
  843. #u10144_img {
  844. border-width:0px;
  845. position:absolute;
  846. left:0px;
  847. top:0px;
  848. width:81px;
  849. height:39px;
  850. }
  851. #u10144 {
  852. border-width:0px;
  853. position:absolute;
  854. left:472px;
  855. top:38px;
  856. width:81px;
  857. height:39px;
  858. display:flex;
  859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  860. font-weight:400;
  861. font-style:normal;
  862. font-size:11px;
  863. color:#333333;
  864. }
  865. #u10144 .text {
  866. position:absolute;
  867. align-self:center;
  868. padding:2px 2px 2px 0px;
  869. box-sizing:border-box;
  870. width:100%;
  871. }
  872. #u10144_text {
  873. border-width:0px;
  874. word-wrap:break-word;
  875. text-transform:none;
  876. visibility:hidden;
  877. }
  878. #u10145_img {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:81px;
  884. height:39px;
  885. }
  886. #u10145 {
  887. border-width:0px;
  888. position:absolute;
  889. left:553px;
  890. top:38px;
  891. width:81px;
  892. height:39px;
  893. display:flex;
  894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  895. font-weight:400;
  896. font-style:normal;
  897. font-size:11px;
  898. color:#333333;
  899. }
  900. #u10145 .text {
  901. position:absolute;
  902. align-self:center;
  903. padding:2px 2px 2px 0px;
  904. box-sizing:border-box;
  905. width:100%;
  906. }
  907. #u10145_text {
  908. border-width:0px;
  909. word-wrap:break-word;
  910. text-transform:none;
  911. }
  912. #u10146_img {
  913. border-width:0px;
  914. position:absolute;
  915. left:0px;
  916. top:0px;
  917. width:81px;
  918. height:39px;
  919. }
  920. #u10146 {
  921. border-width:0px;
  922. position:absolute;
  923. left:634px;
  924. top:38px;
  925. width:81px;
  926. height:39px;
  927. display:flex;
  928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  929. font-weight:400;
  930. font-style:normal;
  931. font-size:11px;
  932. color:#333333;
  933. }
  934. #u10146 .text {
  935. position:absolute;
  936. align-self:center;
  937. padding:2px 2px 2px 0px;
  938. box-sizing:border-box;
  939. width:100%;
  940. }
  941. #u10146_text {
  942. border-width:0px;
  943. word-wrap:break-word;
  944. text-transform:none;
  945. }
  946. #u10147_img {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:81px;
  952. height:39px;
  953. }
  954. #u10147 {
  955. border-width:0px;
  956. position:absolute;
  957. left:715px;
  958. top:38px;
  959. width:81px;
  960. height:39px;
  961. display:flex;
  962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  963. font-weight:400;
  964. font-style:normal;
  965. font-size:11px;
  966. color:#333333;
  967. }
  968. #u10147 .text {
  969. position:absolute;
  970. align-self:center;
  971. padding:2px 2px 2px 0px;
  972. box-sizing:border-box;
  973. width:100%;
  974. }
  975. #u10147_text {
  976. border-width:0px;
  977. word-wrap:break-word;
  978. text-transform:none;
  979. visibility:hidden;
  980. }
  981. #u10148_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:81px;
  987. height:39px;
  988. }
  989. #u10148 {
  990. border-width:0px;
  991. position:absolute;
  992. left:796px;
  993. top:38px;
  994. width:81px;
  995. height:39px;
  996. display:flex;
  997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  998. font-weight:400;
  999. font-style:normal;
  1000. font-size:11px;
  1001. color:#333333;
  1002. }
  1003. #u10148 .text {
  1004. position:absolute;
  1005. align-self:center;
  1006. padding:2px 2px 2px 0px;
  1007. box-sizing:border-box;
  1008. width:100%;
  1009. }
  1010. #u10148_text {
  1011. border-width:0px;
  1012. word-wrap:break-word;
  1013. text-transform:none;
  1014. }
  1015. #u10149_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:82px;
  1021. height:39px;
  1022. }
  1023. #u10149 {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:877px;
  1027. top:38px;
  1028. width:82px;
  1029. height:39px;
  1030. display:flex;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:11px;
  1035. color:#333333;
  1036. }
  1037. #u10149 .text {
  1038. position:absolute;
  1039. align-self:center;
  1040. padding:2px 2px 2px 0px;
  1041. box-sizing:border-box;
  1042. width:100%;
  1043. }
  1044. #u10149_text {
  1045. border-width:0px;
  1046. word-wrap:break-word;
  1047. text-transform:none;
  1048. visibility:hidden;
  1049. }
  1050. #u10150_img {
  1051. border-width:0px;
  1052. position:absolute;
  1053. left:0px;
  1054. top:0px;
  1055. width:107px;
  1056. height:38px;
  1057. }
  1058. #u10150 {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:0px;
  1062. top:77px;
  1063. width:107px;
  1064. height:38px;
  1065. display:flex;
  1066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1067. font-weight:400;
  1068. font-style:normal;
  1069. font-size:11px;
  1070. color:#333333;
  1071. }
  1072. #u10150 .text {
  1073. position:absolute;
  1074. align-self:center;
  1075. padding:2px 2px 2px 0px;
  1076. box-sizing:border-box;
  1077. width:100%;
  1078. }
  1079. #u10150_text {
  1080. border-width:0px;
  1081. word-wrap:break-word;
  1082. text-transform:none;
  1083. visibility:hidden;
  1084. }
  1085. #u10151_img {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:0px;
  1089. top:0px;
  1090. width:122px;
  1091. height:38px;
  1092. }
  1093. #u10151 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:107px;
  1097. top:77px;
  1098. width:122px;
  1099. height:38px;
  1100. display:flex;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. font-size:11px;
  1105. color:#333333;
  1106. }
  1107. #u10151 .text {
  1108. position:absolute;
  1109. align-self:center;
  1110. padding:2px 2px 2px 0px;
  1111. box-sizing:border-box;
  1112. width:100%;
  1113. }
  1114. #u10151_text {
  1115. border-width:0px;
  1116. word-wrap:break-word;
  1117. text-transform:none;
  1118. }
  1119. #u10152_img {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:0px;
  1123. top:0px;
  1124. width:81px;
  1125. height:38px;
  1126. }
  1127. #u10152 {
  1128. border-width:0px;
  1129. position:absolute;
  1130. left:229px;
  1131. top:77px;
  1132. width:81px;
  1133. height:38px;
  1134. display:flex;
  1135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1136. font-weight:400;
  1137. font-style:normal;
  1138. font-size:11px;
  1139. color:#606266;
  1140. }
  1141. #u10152 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 0px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u10152_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u10153_img {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:81px;
  1160. height:38px;
  1161. }
  1162. #u10153 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:310px;
  1166. top:77px;
  1167. width:81px;
  1168. height:38px;
  1169. display:flex;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. font-size:11px;
  1174. color:#333333;
  1175. }
  1176. #u10153 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u10153_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. visibility:hidden;
  1188. }
  1189. #u10154_img {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:81px;
  1195. height:38px;
  1196. }
  1197. #u10154 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:391px;
  1201. top:77px;
  1202. width:81px;
  1203. height:38px;
  1204. display:flex;
  1205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1206. font-weight:400;
  1207. font-style:normal;
  1208. font-size:11px;
  1209. color:#606266;
  1210. }
  1211. #u10154 .text {
  1212. position:absolute;
  1213. align-self:center;
  1214. padding:2px 2px 2px 0px;
  1215. box-sizing:border-box;
  1216. width:100%;
  1217. }
  1218. #u10154_text {
  1219. border-width:0px;
  1220. word-wrap:break-word;
  1221. text-transform:none;
  1222. visibility:hidden;
  1223. }
  1224. #u10155_img {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:0px;
  1228. top:0px;
  1229. width:81px;
  1230. height:38px;
  1231. }
  1232. #u10155 {
  1233. border-width:0px;
  1234. position:absolute;
  1235. left:472px;
  1236. top:77px;
  1237. width:81px;
  1238. height:38px;
  1239. display:flex;
  1240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1241. font-weight:400;
  1242. font-style:normal;
  1243. font-size:11px;
  1244. color:#606266;
  1245. }
  1246. #u10155 .text {
  1247. position:absolute;
  1248. align-self:center;
  1249. padding:2px 2px 2px 0px;
  1250. box-sizing:border-box;
  1251. width:100%;
  1252. }
  1253. #u10155_text {
  1254. border-width:0px;
  1255. word-wrap:break-word;
  1256. text-transform:none;
  1257. visibility:hidden;
  1258. }
  1259. #u10156_img {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:0px;
  1263. top:0px;
  1264. width:81px;
  1265. height:38px;
  1266. }
  1267. #u10156 {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:553px;
  1271. top:77px;
  1272. width:81px;
  1273. height:38px;
  1274. display:flex;
  1275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1276. font-weight:400;
  1277. font-style:normal;
  1278. font-size:11px;
  1279. color:#333333;
  1280. }
  1281. #u10156 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 0px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u10156_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. }
  1293. #u10157_img {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:0px;
  1297. top:0px;
  1298. width:81px;
  1299. height:38px;
  1300. }
  1301. #u10157 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:634px;
  1305. top:77px;
  1306. width:81px;
  1307. height:38px;
  1308. display:flex;
  1309. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1310. font-weight:400;
  1311. font-style:normal;
  1312. font-size:11px;
  1313. color:#606266;
  1314. }
  1315. #u10157 .text {
  1316. position:absolute;
  1317. align-self:center;
  1318. padding:2px 2px 2px 0px;
  1319. box-sizing:border-box;
  1320. width:100%;
  1321. }
  1322. #u10157_text {
  1323. border-width:0px;
  1324. word-wrap:break-word;
  1325. text-transform:none;
  1326. }
  1327. #u10158_img {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:0px;
  1331. top:0px;
  1332. width:81px;
  1333. height:38px;
  1334. }
  1335. #u10158 {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:715px;
  1339. top:77px;
  1340. width:81px;
  1341. height:38px;
  1342. display:flex;
  1343. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1344. font-weight:400;
  1345. font-style:normal;
  1346. font-size:11px;
  1347. color:#606266;
  1348. }
  1349. #u10158 .text {
  1350. position:absolute;
  1351. align-self:center;
  1352. padding:2px 2px 2px 0px;
  1353. box-sizing:border-box;
  1354. width:100%;
  1355. }
  1356. #u10158_text {
  1357. border-width:0px;
  1358. word-wrap:break-word;
  1359. text-transform:none;
  1360. visibility:hidden;
  1361. }
  1362. #u10159_img {
  1363. border-width:0px;
  1364. position:absolute;
  1365. left:0px;
  1366. top:0px;
  1367. width:81px;
  1368. height:38px;
  1369. }
  1370. #u10159 {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:796px;
  1374. top:77px;
  1375. width:81px;
  1376. height:38px;
  1377. display:flex;
  1378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1379. font-weight:400;
  1380. font-style:normal;
  1381. font-size:11px;
  1382. color:#606266;
  1383. }
  1384. #u10159 .text {
  1385. position:absolute;
  1386. align-self:center;
  1387. padding:2px 2px 2px 0px;
  1388. box-sizing:border-box;
  1389. width:100%;
  1390. }
  1391. #u10159_text {
  1392. border-width:0px;
  1393. word-wrap:break-word;
  1394. text-transform:none;
  1395. }
  1396. #u10160_img {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:82px;
  1402. height:38px;
  1403. }
  1404. #u10160 {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:877px;
  1408. top:77px;
  1409. width:82px;
  1410. height:38px;
  1411. display:flex;
  1412. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1413. font-weight:400;
  1414. font-style:normal;
  1415. font-size:11px;
  1416. color:#606266;
  1417. }
  1418. #u10160 .text {
  1419. position:absolute;
  1420. align-self:center;
  1421. padding:2px 2px 2px 0px;
  1422. box-sizing:border-box;
  1423. width:100%;
  1424. }
  1425. #u10160_text {
  1426. border-width:0px;
  1427. word-wrap:break-word;
  1428. text-transform:none;
  1429. visibility:hidden;
  1430. }
  1431. #u10161_img {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:107px;
  1437. height:38px;
  1438. }
  1439. #u10161 {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:0px;
  1443. top:115px;
  1444. width:107px;
  1445. height:38px;
  1446. display:flex;
  1447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1448. font-weight:400;
  1449. font-style:normal;
  1450. font-size:11px;
  1451. color:#333333;
  1452. }
  1453. #u10161 .text {
  1454. position:absolute;
  1455. align-self:center;
  1456. padding:2px 2px 2px 0px;
  1457. box-sizing:border-box;
  1458. width:100%;
  1459. }
  1460. #u10161_text {
  1461. border-width:0px;
  1462. word-wrap:break-word;
  1463. text-transform:none;
  1464. visibility:hidden;
  1465. }
  1466. #u10162_img {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:0px;
  1470. top:0px;
  1471. width:122px;
  1472. height:38px;
  1473. }
  1474. #u10162 {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:107px;
  1478. top:115px;
  1479. width:122px;
  1480. height:38px;
  1481. display:flex;
  1482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1483. font-weight:400;
  1484. font-style:normal;
  1485. font-size:11px;
  1486. color:#333333;
  1487. }
  1488. #u10162 .text {
  1489. position:absolute;
  1490. align-self:center;
  1491. padding:2px 2px 2px 0px;
  1492. box-sizing:border-box;
  1493. width:100%;
  1494. }
  1495. #u10162_text {
  1496. border-width:0px;
  1497. word-wrap:break-word;
  1498. text-transform:none;
  1499. }
  1500. #u10163_img {
  1501. border-width:0px;
  1502. position:absolute;
  1503. left:0px;
  1504. top:0px;
  1505. width:81px;
  1506. height:38px;
  1507. }
  1508. #u10163 {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:229px;
  1512. top:115px;
  1513. width:81px;
  1514. height:38px;
  1515. display:flex;
  1516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1517. font-weight:400;
  1518. font-style:normal;
  1519. font-size:11px;
  1520. color:#606266;
  1521. }
  1522. #u10163 .text {
  1523. position:absolute;
  1524. align-self:center;
  1525. padding:2px 2px 2px 0px;
  1526. box-sizing:border-box;
  1527. width:100%;
  1528. }
  1529. #u10163_text {
  1530. border-width:0px;
  1531. word-wrap:break-word;
  1532. text-transform:none;
  1533. visibility:hidden;
  1534. }
  1535. #u10164_img {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:0px;
  1539. top:0px;
  1540. width:81px;
  1541. height:38px;
  1542. }
  1543. #u10164 {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:310px;
  1547. top:115px;
  1548. width:81px;
  1549. height:38px;
  1550. display:flex;
  1551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1552. font-weight:400;
  1553. font-style:normal;
  1554. font-size:11px;
  1555. color:#606266;
  1556. }
  1557. #u10164 .text {
  1558. position:absolute;
  1559. align-self:center;
  1560. padding:2px 2px 2px 0px;
  1561. box-sizing:border-box;
  1562. width:100%;
  1563. }
  1564. #u10164_text {
  1565. border-width:0px;
  1566. word-wrap:break-word;
  1567. text-transform:none;
  1568. visibility:hidden;
  1569. }
  1570. #u10165_img {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:0px;
  1574. top:0px;
  1575. width:81px;
  1576. height:38px;
  1577. }
  1578. #u10165 {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:391px;
  1582. top:115px;
  1583. width:81px;
  1584. height:38px;
  1585. display:flex;
  1586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1587. font-weight:400;
  1588. font-style:normal;
  1589. font-size:11px;
  1590. color:#606266;
  1591. }
  1592. #u10165 .text {
  1593. position:absolute;
  1594. align-self:center;
  1595. padding:2px 2px 2px 0px;
  1596. box-sizing:border-box;
  1597. width:100%;
  1598. }
  1599. #u10165_text {
  1600. border-width:0px;
  1601. word-wrap:break-word;
  1602. text-transform:none;
  1603. visibility:hidden;
  1604. }
  1605. #u10166_img {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:0px;
  1609. top:0px;
  1610. width:81px;
  1611. height:38px;
  1612. }
  1613. #u10166 {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:472px;
  1617. top:115px;
  1618. width:81px;
  1619. height:38px;
  1620. display:flex;
  1621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1622. font-weight:400;
  1623. font-style:normal;
  1624. font-size:11px;
  1625. color:#606266;
  1626. }
  1627. #u10166 .text {
  1628. position:absolute;
  1629. align-self:center;
  1630. padding:2px 2px 2px 0px;
  1631. box-sizing:border-box;
  1632. width:100%;
  1633. }
  1634. #u10166_text {
  1635. border-width:0px;
  1636. word-wrap:break-word;
  1637. text-transform:none;
  1638. visibility:hidden;
  1639. }
  1640. #u10167_img {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:0px;
  1644. top:0px;
  1645. width:81px;
  1646. height:38px;
  1647. }
  1648. #u10167 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:553px;
  1652. top:115px;
  1653. width:81px;
  1654. height:38px;
  1655. display:flex;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:11px;
  1660. color:#333333;
  1661. }
  1662. #u10167 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 0px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u10167_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. }
  1674. #u10168_img {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:81px;
  1680. height:38px;
  1681. }
  1682. #u10168 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:634px;
  1686. top:115px;
  1687. width:81px;
  1688. height:38px;
  1689. display:flex;
  1690. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1691. font-weight:400;
  1692. font-style:normal;
  1693. font-size:11px;
  1694. color:#606266;
  1695. }
  1696. #u10168 .text {
  1697. position:absolute;
  1698. align-self:center;
  1699. padding:2px 2px 2px 0px;
  1700. box-sizing:border-box;
  1701. width:100%;
  1702. }
  1703. #u10168_text {
  1704. border-width:0px;
  1705. word-wrap:break-word;
  1706. text-transform:none;
  1707. }
  1708. #u10169_img {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:81px;
  1714. height:38px;
  1715. }
  1716. #u10169 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:715px;
  1720. top:115px;
  1721. width:81px;
  1722. height:38px;
  1723. display:flex;
  1724. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1725. font-weight:400;
  1726. font-style:normal;
  1727. font-size:11px;
  1728. color:#606266;
  1729. }
  1730. #u10169 .text {
  1731. position:absolute;
  1732. align-self:center;
  1733. padding:2px 2px 2px 0px;
  1734. box-sizing:border-box;
  1735. width:100%;
  1736. }
  1737. #u10169_text {
  1738. border-width:0px;
  1739. word-wrap:break-word;
  1740. text-transform:none;
  1741. visibility:hidden;
  1742. }
  1743. #u10170_img {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:81px;
  1749. height:38px;
  1750. }
  1751. #u10170 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:796px;
  1755. top:115px;
  1756. width:81px;
  1757. height:38px;
  1758. display:flex;
  1759. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1760. font-weight:400;
  1761. font-style:normal;
  1762. font-size:11px;
  1763. color:#606266;
  1764. }
  1765. #u10170 .text {
  1766. position:absolute;
  1767. align-self:center;
  1768. padding:2px 2px 2px 0px;
  1769. box-sizing:border-box;
  1770. width:100%;
  1771. }
  1772. #u10170_text {
  1773. border-width:0px;
  1774. word-wrap:break-word;
  1775. text-transform:none;
  1776. visibility:hidden;
  1777. }
  1778. #u10171_img {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:82px;
  1784. height:38px;
  1785. }
  1786. #u10171 {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:877px;
  1790. top:115px;
  1791. width:82px;
  1792. height:38px;
  1793. display:flex;
  1794. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1795. font-weight:400;
  1796. font-style:normal;
  1797. font-size:11px;
  1798. color:#606266;
  1799. }
  1800. #u10171 .text {
  1801. position:absolute;
  1802. align-self:center;
  1803. padding:2px 2px 2px 0px;
  1804. box-sizing:border-box;
  1805. width:100%;
  1806. }
  1807. #u10171_text {
  1808. border-width:0px;
  1809. word-wrap:break-word;
  1810. text-transform:none;
  1811. visibility:hidden;
  1812. }
  1813. #u10172_img {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:0px;
  1817. top:0px;
  1818. width:107px;
  1819. height:38px;
  1820. }
  1821. #u10172 {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:0px;
  1825. top:153px;
  1826. width:107px;
  1827. height:38px;
  1828. display:flex;
  1829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. font-size:11px;
  1833. color:#333333;
  1834. }
  1835. #u10172 .text {
  1836. position:absolute;
  1837. align-self:center;
  1838. padding:2px 2px 2px 0px;
  1839. box-sizing:border-box;
  1840. width:100%;
  1841. }
  1842. #u10172_text {
  1843. border-width:0px;
  1844. word-wrap:break-word;
  1845. text-transform:none;
  1846. visibility:hidden;
  1847. }
  1848. #u10173_img {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:122px;
  1854. height:38px;
  1855. }
  1856. #u10173 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:107px;
  1860. top:153px;
  1861. width:122px;
  1862. height:38px;
  1863. display:flex;
  1864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1865. font-weight:400;
  1866. font-style:normal;
  1867. font-size:11px;
  1868. color:#333333;
  1869. }
  1870. #u10173 .text {
  1871. position:absolute;
  1872. align-self:center;
  1873. padding:2px 2px 2px 0px;
  1874. box-sizing:border-box;
  1875. width:100%;
  1876. }
  1877. #u10173_text {
  1878. border-width:0px;
  1879. word-wrap:break-word;
  1880. text-transform:none;
  1881. }
  1882. #u10174_img {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:81px;
  1888. height:38px;
  1889. }
  1890. #u10174 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:229px;
  1894. top:153px;
  1895. width:81px;
  1896. height:38px;
  1897. display:flex;
  1898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1899. font-weight:400;
  1900. font-style:normal;
  1901. font-size:11px;
  1902. color:#606266;
  1903. }
  1904. #u10174 .text {
  1905. position:absolute;
  1906. align-self:center;
  1907. padding:2px 2px 2px 0px;
  1908. box-sizing:border-box;
  1909. width:100%;
  1910. }
  1911. #u10174_text {
  1912. border-width:0px;
  1913. word-wrap:break-word;
  1914. text-transform:none;
  1915. visibility:hidden;
  1916. }
  1917. #u10175_img {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:81px;
  1923. height:38px;
  1924. }
  1925. #u10175 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:310px;
  1929. top:153px;
  1930. width:81px;
  1931. height:38px;
  1932. display:flex;
  1933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1934. font-weight:400;
  1935. font-style:normal;
  1936. font-size:11px;
  1937. color:#606266;
  1938. }
  1939. #u10175 .text {
  1940. position:absolute;
  1941. align-self:center;
  1942. padding:2px 2px 2px 0px;
  1943. box-sizing:border-box;
  1944. width:100%;
  1945. }
  1946. #u10175_text {
  1947. border-width:0px;
  1948. word-wrap:break-word;
  1949. text-transform:none;
  1950. visibility:hidden;
  1951. }
  1952. #u10176_img {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:81px;
  1958. height:38px;
  1959. }
  1960. #u10176 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:391px;
  1964. top:153px;
  1965. width:81px;
  1966. height:38px;
  1967. display:flex;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:11px;
  1972. color:#606266;
  1973. }
  1974. #u10176 .text {
  1975. position:absolute;
  1976. align-self:center;
  1977. padding:2px 2px 2px 0px;
  1978. box-sizing:border-box;
  1979. width:100%;
  1980. }
  1981. #u10176_text {
  1982. border-width:0px;
  1983. word-wrap:break-word;
  1984. text-transform:none;
  1985. visibility:hidden;
  1986. }
  1987. #u10177_img {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:0px;
  1991. top:0px;
  1992. width:81px;
  1993. height:38px;
  1994. }
  1995. #u10177 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:472px;
  1999. top:153px;
  2000. width:81px;
  2001. height:38px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. font-size:11px;
  2007. color:#606266;
  2008. }
  2009. #u10177 .text {
  2010. position:absolute;
  2011. align-self:center;
  2012. padding:2px 2px 2px 0px;
  2013. box-sizing:border-box;
  2014. width:100%;
  2015. }
  2016. #u10177_text {
  2017. border-width:0px;
  2018. word-wrap:break-word;
  2019. text-transform:none;
  2020. visibility:hidden;
  2021. }
  2022. #u10178_img {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:81px;
  2028. height:38px;
  2029. }
  2030. #u10178 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:553px;
  2034. top:153px;
  2035. width:81px;
  2036. height:38px;
  2037. display:flex;
  2038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2039. font-weight:400;
  2040. font-style:normal;
  2041. font-size:11px;
  2042. color:#333333;
  2043. }
  2044. #u10178 .text {
  2045. position:absolute;
  2046. align-self:center;
  2047. padding:2px 2px 2px 0px;
  2048. box-sizing:border-box;
  2049. width:100%;
  2050. }
  2051. #u10178_text {
  2052. border-width:0px;
  2053. word-wrap:break-word;
  2054. text-transform:none;
  2055. }
  2056. #u10179_img {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:81px;
  2062. height:38px;
  2063. }
  2064. #u10179 {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:634px;
  2068. top:153px;
  2069. width:81px;
  2070. height:38px;
  2071. display:flex;
  2072. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2073. font-weight:400;
  2074. font-style:normal;
  2075. font-size:11px;
  2076. color:#606266;
  2077. }
  2078. #u10179 .text {
  2079. position:absolute;
  2080. align-self:center;
  2081. padding:2px 2px 2px 0px;
  2082. box-sizing:border-box;
  2083. width:100%;
  2084. }
  2085. #u10179_text {
  2086. border-width:0px;
  2087. word-wrap:break-word;
  2088. text-transform:none;
  2089. }
  2090. #u10180_img {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:81px;
  2096. height:38px;
  2097. }
  2098. #u10180 {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:715px;
  2102. top:153px;
  2103. width:81px;
  2104. height:38px;
  2105. display:flex;
  2106. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:11px;
  2110. color:#606266;
  2111. }
  2112. #u10180 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:2px 2px 2px 0px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u10180_text {
  2120. border-width:0px;
  2121. word-wrap:break-word;
  2122. text-transform:none;
  2123. visibility:hidden;
  2124. }
  2125. #u10181_img {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:81px;
  2131. height:38px;
  2132. }
  2133. #u10181 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:796px;
  2137. top:153px;
  2138. width:81px;
  2139. height:38px;
  2140. display:flex;
  2141. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:11px;
  2145. color:#606266;
  2146. }
  2147. #u10181 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:2px 2px 2px 0px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u10181_text {
  2155. border-width:0px;
  2156. word-wrap:break-word;
  2157. text-transform:none;
  2158. visibility:hidden;
  2159. }
  2160. #u10182_img {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:0px;
  2164. top:0px;
  2165. width:82px;
  2166. height:38px;
  2167. }
  2168. #u10182 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:877px;
  2172. top:153px;
  2173. width:82px;
  2174. height:38px;
  2175. display:flex;
  2176. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:11px;
  2180. color:#606266;
  2181. }
  2182. #u10182 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:2px 2px 2px 0px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u10182_text {
  2190. border-width:0px;
  2191. word-wrap:break-word;
  2192. text-transform:none;
  2193. visibility:hidden;
  2194. }
  2195. #u10183_img {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:107px;
  2201. height:35px;
  2202. }
  2203. #u10183 {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:0px;
  2207. top:191px;
  2208. width:107px;
  2209. height:35px;
  2210. display:flex;
  2211. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2212. font-weight:400;
  2213. font-style:normal;
  2214. font-size:11px;
  2215. color:#606266;
  2216. }
  2217. #u10183 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:2px 2px 2px 0px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u10183_text {
  2225. border-width:0px;
  2226. word-wrap:break-word;
  2227. text-transform:none;
  2228. visibility:hidden;
  2229. }
  2230. #u10184_img {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:122px;
  2236. height:35px;
  2237. }
  2238. #u10184 {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:107px;
  2242. top:191px;
  2243. width:122px;
  2244. height:35px;
  2245. display:flex;
  2246. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2247. font-weight:400;
  2248. font-style:normal;
  2249. font-size:11px;
  2250. color:#606266;
  2251. }
  2252. #u10184 .text {
  2253. position:absolute;
  2254. align-self:center;
  2255. padding:2px 2px 2px 0px;
  2256. box-sizing:border-box;
  2257. width:100%;
  2258. }
  2259. #u10184_text {
  2260. border-width:0px;
  2261. word-wrap:break-word;
  2262. text-transform:none;
  2263. visibility:hidden;
  2264. }
  2265. #u10185_img {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:81px;
  2271. height:35px;
  2272. }
  2273. #u10185 {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:229px;
  2277. top:191px;
  2278. width:81px;
  2279. height:35px;
  2280. display:flex;
  2281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:11px;
  2285. color:#606266;
  2286. }
  2287. #u10185 .text {
  2288. position:absolute;
  2289. align-self:center;
  2290. padding:2px 2px 2px 0px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u10185_text {
  2295. border-width:0px;
  2296. word-wrap:break-word;
  2297. text-transform:none;
  2298. visibility:hidden;
  2299. }
  2300. #u10186_img {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:81px;
  2306. height:35px;
  2307. }
  2308. #u10186 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:310px;
  2312. top:191px;
  2313. width:81px;
  2314. height:35px;
  2315. display:flex;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:11px;
  2320. color:#606266;
  2321. }
  2322. #u10186 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 2px 2px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u10186_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. visibility:hidden;
  2334. }
  2335. #u10187_img {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:81px;
  2341. height:35px;
  2342. }
  2343. #u10187 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:391px;
  2347. top:191px;
  2348. width:81px;
  2349. height:35px;
  2350. display:flex;
  2351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2352. font-weight:400;
  2353. font-style:normal;
  2354. font-size:11px;
  2355. color:#606266;
  2356. }
  2357. #u10187 .text {
  2358. position:absolute;
  2359. align-self:center;
  2360. padding:2px 2px 2px 0px;
  2361. box-sizing:border-box;
  2362. width:100%;
  2363. }
  2364. #u10187_text {
  2365. border-width:0px;
  2366. word-wrap:break-word;
  2367. text-transform:none;
  2368. visibility:hidden;
  2369. }
  2370. #u10188_img {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:0px;
  2374. top:0px;
  2375. width:81px;
  2376. height:35px;
  2377. }
  2378. #u10188 {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:472px;
  2382. top:191px;
  2383. width:81px;
  2384. height:35px;
  2385. display:flex;
  2386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2387. font-weight:400;
  2388. font-style:normal;
  2389. font-size:11px;
  2390. color:#606266;
  2391. }
  2392. #u10188 .text {
  2393. position:absolute;
  2394. align-self:center;
  2395. padding:2px 2px 2px 0px;
  2396. box-sizing:border-box;
  2397. width:100%;
  2398. }
  2399. #u10188_text {
  2400. border-width:0px;
  2401. word-wrap:break-word;
  2402. text-transform:none;
  2403. visibility:hidden;
  2404. }
  2405. #u10189_img {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:0px;
  2409. top:0px;
  2410. width:81px;
  2411. height:35px;
  2412. }
  2413. #u10189 {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:553px;
  2417. top:191px;
  2418. width:81px;
  2419. height:35px;
  2420. display:flex;
  2421. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2422. font-weight:400;
  2423. font-style:normal;
  2424. font-size:11px;
  2425. color:#606266;
  2426. }
  2427. #u10189 .text {
  2428. position:absolute;
  2429. align-self:center;
  2430. padding:2px 2px 2px 0px;
  2431. box-sizing:border-box;
  2432. width:100%;
  2433. }
  2434. #u10189_text {
  2435. border-width:0px;
  2436. word-wrap:break-word;
  2437. text-transform:none;
  2438. visibility:hidden;
  2439. }
  2440. #u10190_img {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:0px;
  2444. top:0px;
  2445. width:81px;
  2446. height:35px;
  2447. }
  2448. #u10190 {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:634px;
  2452. top:191px;
  2453. width:81px;
  2454. height:35px;
  2455. display:flex;
  2456. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:11px;
  2460. color:#606266;
  2461. }
  2462. #u10190 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:2px 2px 2px 0px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u10190_text {
  2470. border-width:0px;
  2471. word-wrap:break-word;
  2472. text-transform:none;
  2473. visibility:hidden;
  2474. }
  2475. #u10191_img {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:81px;
  2481. height:35px;
  2482. }
  2483. #u10191 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:715px;
  2487. top:191px;
  2488. width:81px;
  2489. height:35px;
  2490. display:flex;
  2491. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2492. font-weight:400;
  2493. font-style:normal;
  2494. font-size:11px;
  2495. color:#606266;
  2496. }
  2497. #u10191 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 0px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u10191_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. visibility:hidden;
  2509. }
  2510. #u10192_img {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:81px;
  2516. height:35px;
  2517. }
  2518. #u10192 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:796px;
  2522. top:191px;
  2523. width:81px;
  2524. height:35px;
  2525. display:flex;
  2526. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:11px;
  2530. color:#606266;
  2531. }
  2532. #u10192 .text {
  2533. position:absolute;
  2534. align-self:center;
  2535. padding:2px 2px 2px 0px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u10192_text {
  2540. border-width:0px;
  2541. word-wrap:break-word;
  2542. text-transform:none;
  2543. visibility:hidden;
  2544. }
  2545. #u10193_img {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:82px;
  2551. height:35px;
  2552. }
  2553. #u10193 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:877px;
  2557. top:191px;
  2558. width:82px;
  2559. height:35px;
  2560. display:flex;
  2561. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:11px;
  2565. color:#606266;
  2566. }
  2567. #u10193 .text {
  2568. position:absolute;
  2569. align-self:center;
  2570. padding:2px 2px 2px 0px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u10193_text {
  2575. border-width:0px;
  2576. word-wrap:break-word;
  2577. text-transform:none;
  2578. visibility:hidden;
  2579. }
  2580. #u10194_img {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:107px;
  2586. height:35px;
  2587. }
  2588. #u10194 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:226px;
  2593. width:107px;
  2594. height:35px;
  2595. display:flex;
  2596. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:11px;
  2600. color:#606266;
  2601. }
  2602. #u10194 .text {
  2603. position:absolute;
  2604. align-self:center;
  2605. padding:2px 2px 2px 0px;
  2606. box-sizing:border-box;
  2607. width:100%;
  2608. }
  2609. #u10194_text {
  2610. border-width:0px;
  2611. word-wrap:break-word;
  2612. text-transform:none;
  2613. visibility:hidden;
  2614. }
  2615. #u10195_img {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:0px;
  2619. top:0px;
  2620. width:122px;
  2621. height:35px;
  2622. }
  2623. #u10195 {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:107px;
  2627. top:226px;
  2628. width:122px;
  2629. height:35px;
  2630. display:flex;
  2631. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2632. font-weight:400;
  2633. font-style:normal;
  2634. font-size:11px;
  2635. color:#606266;
  2636. }
  2637. #u10195 .text {
  2638. position:absolute;
  2639. align-self:center;
  2640. padding:2px 2px 2px 0px;
  2641. box-sizing:border-box;
  2642. width:100%;
  2643. }
  2644. #u10195_text {
  2645. border-width:0px;
  2646. word-wrap:break-word;
  2647. text-transform:none;
  2648. visibility:hidden;
  2649. }
  2650. #u10196_img {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:81px;
  2656. height:35px;
  2657. }
  2658. #u10196 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:229px;
  2662. top:226px;
  2663. width:81px;
  2664. height:35px;
  2665. display:flex;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. font-size:11px;
  2670. color:#606266;
  2671. }
  2672. #u10196 .text {
  2673. position:absolute;
  2674. align-self:center;
  2675. padding:2px 2px 2px 0px;
  2676. box-sizing:border-box;
  2677. width:100%;
  2678. }
  2679. #u10196_text {
  2680. border-width:0px;
  2681. word-wrap:break-word;
  2682. text-transform:none;
  2683. visibility:hidden;
  2684. }
  2685. #u10197_img {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:0px;
  2689. top:0px;
  2690. width:81px;
  2691. height:35px;
  2692. }
  2693. #u10197 {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:310px;
  2697. top:226px;
  2698. width:81px;
  2699. height:35px;
  2700. display:flex;
  2701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2702. font-weight:400;
  2703. font-style:normal;
  2704. font-size:11px;
  2705. color:#606266;
  2706. }
  2707. #u10197 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:2px 2px 2px 0px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u10197_text {
  2715. border-width:0px;
  2716. word-wrap:break-word;
  2717. text-transform:none;
  2718. visibility:hidden;
  2719. }
  2720. #u10198_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:81px;
  2726. height:35px;
  2727. }
  2728. #u10198 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:391px;
  2732. top:226px;
  2733. width:81px;
  2734. height:35px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:11px;
  2740. color:#606266;
  2741. }
  2742. #u10198 .text {
  2743. position:absolute;
  2744. align-self:center;
  2745. padding:2px 2px 2px 0px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u10198_text {
  2750. border-width:0px;
  2751. word-wrap:break-word;
  2752. text-transform:none;
  2753. visibility:hidden;
  2754. }
  2755. #u10199_img {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:81px;
  2761. height:35px;
  2762. }
  2763. #u10199 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:472px;
  2767. top:226px;
  2768. width:81px;
  2769. height:35px;
  2770. display:flex;
  2771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2772. font-weight:400;
  2773. font-style:normal;
  2774. font-size:11px;
  2775. color:#606266;
  2776. }
  2777. #u10199 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u10199_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. visibility:hidden;
  2789. }
  2790. #u10200_img {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:81px;
  2796. height:35px;
  2797. }
  2798. #u10200 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:553px;
  2802. top:226px;
  2803. width:81px;
  2804. height:35px;
  2805. display:flex;
  2806. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. font-size:11px;
  2810. color:#606266;
  2811. }
  2812. #u10200 .text {
  2813. position:absolute;
  2814. align-self:center;
  2815. padding:2px 2px 2px 0px;
  2816. box-sizing:border-box;
  2817. width:100%;
  2818. }
  2819. #u10200_text {
  2820. border-width:0px;
  2821. word-wrap:break-word;
  2822. text-transform:none;
  2823. visibility:hidden;
  2824. }
  2825. #u10201_img {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:81px;
  2831. height:35px;
  2832. }
  2833. #u10201 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:634px;
  2837. top:226px;
  2838. width:81px;
  2839. height:35px;
  2840. display:flex;
  2841. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:11px;
  2845. color:#606266;
  2846. }
  2847. #u10201 .text {
  2848. position:absolute;
  2849. align-self:center;
  2850. padding:2px 2px 2px 0px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u10201_text {
  2855. border-width:0px;
  2856. word-wrap:break-word;
  2857. text-transform:none;
  2858. visibility:hidden;
  2859. }
  2860. #u10202_img {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:81px;
  2866. height:35px;
  2867. }
  2868. #u10202 {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:715px;
  2872. top:226px;
  2873. width:81px;
  2874. height:35px;
  2875. display:flex;
  2876. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2877. font-weight:400;
  2878. font-style:normal;
  2879. font-size:11px;
  2880. color:#606266;
  2881. }
  2882. #u10202 .text {
  2883. position:absolute;
  2884. align-self:center;
  2885. padding:2px 2px 2px 0px;
  2886. box-sizing:border-box;
  2887. width:100%;
  2888. }
  2889. #u10202_text {
  2890. border-width:0px;
  2891. word-wrap:break-word;
  2892. text-transform:none;
  2893. visibility:hidden;
  2894. }
  2895. #u10203_img {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:81px;
  2901. height:35px;
  2902. }
  2903. #u10203 {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:796px;
  2907. top:226px;
  2908. width:81px;
  2909. height:35px;
  2910. display:flex;
  2911. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2912. font-weight:400;
  2913. font-style:normal;
  2914. font-size:11px;
  2915. color:#606266;
  2916. }
  2917. #u10203 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 0px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u10203_text {
  2925. border-width:0px;
  2926. word-wrap:break-word;
  2927. text-transform:none;
  2928. visibility:hidden;
  2929. }
  2930. #u10204_img {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:82px;
  2936. height:35px;
  2937. }
  2938. #u10204 {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:877px;
  2942. top:226px;
  2943. width:82px;
  2944. height:35px;
  2945. display:flex;
  2946. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. font-size:11px;
  2950. color:#606266;
  2951. }
  2952. #u10204 .text {
  2953. position:absolute;
  2954. align-self:center;
  2955. padding:2px 2px 2px 0px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u10204_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. visibility:hidden;
  2964. }
  2965. #u10205_img {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:107px;
  2971. height:35px;
  2972. }
  2973. #u10205 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:261px;
  2978. width:107px;
  2979. height:35px;
  2980. display:flex;
  2981. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2982. font-weight:400;
  2983. font-style:normal;
  2984. font-size:11px;
  2985. color:#606266;
  2986. }
  2987. #u10205 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 0px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u10205_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u10206_img {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:122px;
  3006. height:35px;
  3007. }
  3008. #u10206 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:107px;
  3012. top:261px;
  3013. width:122px;
  3014. height:35px;
  3015. display:flex;
  3016. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3017. font-weight:400;
  3018. font-style:normal;
  3019. font-size:11px;
  3020. color:#606266;
  3021. }
  3022. #u10206 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 2px 2px 0px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u10206_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u10207_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:81px;
  3041. height:35px;
  3042. }
  3043. #u10207 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:229px;
  3047. top:261px;
  3048. width:81px;
  3049. height:35px;
  3050. display:flex;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:11px;
  3055. color:#606266;
  3056. }
  3057. #u10207 .text {
  3058. position:absolute;
  3059. align-self:center;
  3060. padding:2px 2px 2px 0px;
  3061. box-sizing:border-box;
  3062. width:100%;
  3063. }
  3064. #u10207_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. visibility:hidden;
  3069. }
  3070. #u10208_img {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:81px;
  3076. height:35px;
  3077. }
  3078. #u10208 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:310px;
  3082. top:261px;
  3083. width:81px;
  3084. height:35px;
  3085. display:flex;
  3086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:11px;
  3090. color:#333333;
  3091. }
  3092. #u10208 .text {
  3093. position:absolute;
  3094. align-self:center;
  3095. padding:2px 2px 2px 0px;
  3096. box-sizing:border-box;
  3097. width:100%;
  3098. }
  3099. #u10208_text {
  3100. border-width:0px;
  3101. word-wrap:break-word;
  3102. text-transform:none;
  3103. visibility:hidden;
  3104. }
  3105. #u10209_img {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:0px;
  3109. top:0px;
  3110. width:81px;
  3111. height:35px;
  3112. }
  3113. #u10209 {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:391px;
  3117. top:261px;
  3118. width:81px;
  3119. height:35px;
  3120. display:flex;
  3121. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3122. font-weight:400;
  3123. font-style:normal;
  3124. font-size:11px;
  3125. color:#606266;
  3126. }
  3127. #u10209 .text {
  3128. position:absolute;
  3129. align-self:center;
  3130. padding:2px 2px 2px 0px;
  3131. box-sizing:border-box;
  3132. width:100%;
  3133. }
  3134. #u10209_text {
  3135. border-width:0px;
  3136. word-wrap:break-word;
  3137. text-transform:none;
  3138. visibility:hidden;
  3139. }
  3140. #u10210_img {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:81px;
  3146. height:35px;
  3147. }
  3148. #u10210 {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:472px;
  3152. top:261px;
  3153. width:81px;
  3154. height:35px;
  3155. display:flex;
  3156. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3157. font-weight:400;
  3158. font-style:normal;
  3159. font-size:11px;
  3160. color:#606266;
  3161. }
  3162. #u10210 .text {
  3163. position:absolute;
  3164. align-self:center;
  3165. padding:2px 2px 2px 0px;
  3166. box-sizing:border-box;
  3167. width:100%;
  3168. }
  3169. #u10210_text {
  3170. border-width:0px;
  3171. word-wrap:break-word;
  3172. text-transform:none;
  3173. visibility:hidden;
  3174. }
  3175. #u10211_img {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:81px;
  3181. height:35px;
  3182. }
  3183. #u10211 {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:553px;
  3187. top:261px;
  3188. width:81px;
  3189. height:35px;
  3190. display:flex;
  3191. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3192. font-weight:400;
  3193. font-style:normal;
  3194. font-size:11px;
  3195. color:#606266;
  3196. }
  3197. #u10211 .text {
  3198. position:absolute;
  3199. align-self:center;
  3200. padding:2px 2px 2px 0px;
  3201. box-sizing:border-box;
  3202. width:100%;
  3203. }
  3204. #u10211_text {
  3205. border-width:0px;
  3206. word-wrap:break-word;
  3207. text-transform:none;
  3208. visibility:hidden;
  3209. }
  3210. #u10212_img {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:81px;
  3216. height:35px;
  3217. }
  3218. #u10212 {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:634px;
  3222. top:261px;
  3223. width:81px;
  3224. height:35px;
  3225. display:flex;
  3226. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3227. font-weight:400;
  3228. font-style:normal;
  3229. font-size:11px;
  3230. color:#606266;
  3231. }
  3232. #u10212 .text {
  3233. position:absolute;
  3234. align-self:center;
  3235. padding:2px 2px 2px 0px;
  3236. box-sizing:border-box;
  3237. width:100%;
  3238. }
  3239. #u10212_text {
  3240. border-width:0px;
  3241. word-wrap:break-word;
  3242. text-transform:none;
  3243. visibility:hidden;
  3244. }
  3245. #u10213_img {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:81px;
  3251. height:35px;
  3252. }
  3253. #u10213 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:715px;
  3257. top:261px;
  3258. width:81px;
  3259. height:35px;
  3260. display:flex;
  3261. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3262. font-weight:400;
  3263. font-style:normal;
  3264. font-size:11px;
  3265. color:#606266;
  3266. }
  3267. #u10213 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u10213_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u10214_img {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:81px;
  3286. height:35px;
  3287. }
  3288. #u10214 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:796px;
  3292. top:261px;
  3293. width:81px;
  3294. height:35px;
  3295. display:flex;
  3296. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:11px;
  3300. color:#606266;
  3301. }
  3302. #u10214 .text {
  3303. position:absolute;
  3304. align-self:center;
  3305. padding:2px 2px 2px 0px;
  3306. box-sizing:border-box;
  3307. width:100%;
  3308. }
  3309. #u10214_text {
  3310. border-width:0px;
  3311. word-wrap:break-word;
  3312. text-transform:none;
  3313. visibility:hidden;
  3314. }
  3315. #u10215_img {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:82px;
  3321. height:35px;
  3322. }
  3323. #u10215 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:877px;
  3327. top:261px;
  3328. width:82px;
  3329. height:35px;
  3330. display:flex;
  3331. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3332. font-weight:400;
  3333. font-style:normal;
  3334. font-size:11px;
  3335. color:#606266;
  3336. }
  3337. #u10215 .text {
  3338. position:absolute;
  3339. align-self:center;
  3340. padding:2px 2px 2px 0px;
  3341. box-sizing:border-box;
  3342. width:100%;
  3343. }
  3344. #u10215_text {
  3345. border-width:0px;
  3346. word-wrap:break-word;
  3347. text-transform:none;
  3348. visibility:hidden;
  3349. }
  3350. #u10216_img {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:0px;
  3354. top:0px;
  3355. width:107px;
  3356. height:35px;
  3357. }
  3358. #u10216 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:0px;
  3362. top:296px;
  3363. width:107px;
  3364. height:35px;
  3365. display:flex;
  3366. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:11px;
  3370. color:#606266;
  3371. }
  3372. #u10216 .text {
  3373. position:absolute;
  3374. align-self:center;
  3375. padding:2px 2px 2px 0px;
  3376. box-sizing:border-box;
  3377. width:100%;
  3378. }
  3379. #u10216_text {
  3380. border-width:0px;
  3381. word-wrap:break-word;
  3382. text-transform:none;
  3383. visibility:hidden;
  3384. }
  3385. #u10217_img {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:122px;
  3391. height:35px;
  3392. }
  3393. #u10217 {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:107px;
  3397. top:296px;
  3398. width:122px;
  3399. height:35px;
  3400. display:flex;
  3401. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3402. font-weight:400;
  3403. font-style:normal;
  3404. font-size:11px;
  3405. color:#606266;
  3406. }
  3407. #u10217 .text {
  3408. position:absolute;
  3409. align-self:center;
  3410. padding:2px 2px 2px 0px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u10217_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. visibility:hidden;
  3419. }
  3420. #u10218_img {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:81px;
  3426. height:35px;
  3427. }
  3428. #u10218 {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:229px;
  3432. top:296px;
  3433. width:81px;
  3434. height:35px;
  3435. display:flex;
  3436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3437. font-weight:400;
  3438. font-style:normal;
  3439. font-size:11px;
  3440. color:#606266;
  3441. }
  3442. #u10218 .text {
  3443. position:absolute;
  3444. align-self:center;
  3445. padding:2px 2px 2px 0px;
  3446. box-sizing:border-box;
  3447. width:100%;
  3448. }
  3449. #u10218_text {
  3450. border-width:0px;
  3451. word-wrap:break-word;
  3452. text-transform:none;
  3453. visibility:hidden;
  3454. }
  3455. #u10219_img {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:81px;
  3461. height:35px;
  3462. }
  3463. #u10219 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:310px;
  3467. top:296px;
  3468. width:81px;
  3469. height:35px;
  3470. display:flex;
  3471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. font-size:11px;
  3475. color:#606266;
  3476. }
  3477. #u10219 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 2px 2px 0px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u10219_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u10220_img {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:81px;
  3496. height:35px;
  3497. }
  3498. #u10220 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:391px;
  3502. top:296px;
  3503. width:81px;
  3504. height:35px;
  3505. display:flex;
  3506. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3507. font-weight:400;
  3508. font-style:normal;
  3509. font-size:11px;
  3510. color:#606266;
  3511. }
  3512. #u10220 .text {
  3513. position:absolute;
  3514. align-self:center;
  3515. padding:2px 2px 2px 0px;
  3516. box-sizing:border-box;
  3517. width:100%;
  3518. }
  3519. #u10220_text {
  3520. border-width:0px;
  3521. word-wrap:break-word;
  3522. text-transform:none;
  3523. visibility:hidden;
  3524. }
  3525. #u10221_img {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:81px;
  3531. height:35px;
  3532. }
  3533. #u10221 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:472px;
  3537. top:296px;
  3538. width:81px;
  3539. height:35px;
  3540. display:flex;
  3541. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3542. font-weight:400;
  3543. font-style:normal;
  3544. font-size:11px;
  3545. color:#606266;
  3546. }
  3547. #u10221 .text {
  3548. position:absolute;
  3549. align-self:center;
  3550. padding:2px 2px 2px 0px;
  3551. box-sizing:border-box;
  3552. width:100%;
  3553. }
  3554. #u10221_text {
  3555. border-width:0px;
  3556. word-wrap:break-word;
  3557. text-transform:none;
  3558. visibility:hidden;
  3559. }
  3560. #u10222_img {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:81px;
  3566. height:35px;
  3567. }
  3568. #u10222 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:553px;
  3572. top:296px;
  3573. width:81px;
  3574. height:35px;
  3575. display:flex;
  3576. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:11px;
  3580. color:#606266;
  3581. }
  3582. #u10222 .text {
  3583. position:absolute;
  3584. align-self:center;
  3585. padding:2px 2px 2px 0px;
  3586. box-sizing:border-box;
  3587. width:100%;
  3588. }
  3589. #u10222_text {
  3590. border-width:0px;
  3591. word-wrap:break-word;
  3592. text-transform:none;
  3593. visibility:hidden;
  3594. }
  3595. #u10223_img {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:0px;
  3599. top:0px;
  3600. width:81px;
  3601. height:35px;
  3602. }
  3603. #u10223 {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:634px;
  3607. top:296px;
  3608. width:81px;
  3609. height:35px;
  3610. display:flex;
  3611. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3612. font-weight:400;
  3613. font-style:normal;
  3614. font-size:11px;
  3615. color:#606266;
  3616. }
  3617. #u10223 .text {
  3618. position:absolute;
  3619. align-self:center;
  3620. padding:2px 2px 2px 0px;
  3621. box-sizing:border-box;
  3622. width:100%;
  3623. }
  3624. #u10223_text {
  3625. border-width:0px;
  3626. word-wrap:break-word;
  3627. text-transform:none;
  3628. visibility:hidden;
  3629. }
  3630. #u10224_img {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:0px;
  3634. top:0px;
  3635. width:81px;
  3636. height:35px;
  3637. }
  3638. #u10224 {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:715px;
  3642. top:296px;
  3643. width:81px;
  3644. height:35px;
  3645. display:flex;
  3646. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3647. font-weight:400;
  3648. font-style:normal;
  3649. font-size:11px;
  3650. color:#606266;
  3651. }
  3652. #u10224 .text {
  3653. position:absolute;
  3654. align-self:center;
  3655. padding:2px 2px 2px 0px;
  3656. box-sizing:border-box;
  3657. width:100%;
  3658. }
  3659. #u10224_text {
  3660. border-width:0px;
  3661. word-wrap:break-word;
  3662. text-transform:none;
  3663. visibility:hidden;
  3664. }
  3665. #u10225_img {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:81px;
  3671. height:35px;
  3672. }
  3673. #u10225 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:796px;
  3677. top:296px;
  3678. width:81px;
  3679. height:35px;
  3680. display:flex;
  3681. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3682. font-weight:400;
  3683. font-style:normal;
  3684. font-size:11px;
  3685. color:#606266;
  3686. }
  3687. #u10225 .text {
  3688. position:absolute;
  3689. align-self:center;
  3690. padding:2px 2px 2px 0px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u10225_text {
  3695. border-width:0px;
  3696. word-wrap:break-word;
  3697. text-transform:none;
  3698. visibility:hidden;
  3699. }
  3700. #u10226_img {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:82px;
  3706. height:35px;
  3707. }
  3708. #u10226 {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:877px;
  3712. top:296px;
  3713. width:82px;
  3714. height:35px;
  3715. display:flex;
  3716. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3717. font-weight:400;
  3718. font-style:normal;
  3719. font-size:11px;
  3720. color:#606266;
  3721. }
  3722. #u10226 .text {
  3723. position:absolute;
  3724. align-self:center;
  3725. padding:2px 2px 2px 0px;
  3726. box-sizing:border-box;
  3727. width:100%;
  3728. }
  3729. #u10226_text {
  3730. border-width:0px;
  3731. word-wrap:break-word;
  3732. text-transform:none;
  3733. visibility:hidden;
  3734. }
  3735. #u10227_img {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:0px;
  3739. top:0px;
  3740. width:107px;
  3741. height:35px;
  3742. }
  3743. #u10227 {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:0px;
  3747. top:331px;
  3748. width:107px;
  3749. height:35px;
  3750. display:flex;
  3751. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3752. font-weight:400;
  3753. font-style:normal;
  3754. font-size:11px;
  3755. color:#606266;
  3756. }
  3757. #u10227 .text {
  3758. position:absolute;
  3759. align-self:center;
  3760. padding:2px 2px 2px 0px;
  3761. box-sizing:border-box;
  3762. width:100%;
  3763. }
  3764. #u10227_text {
  3765. border-width:0px;
  3766. word-wrap:break-word;
  3767. text-transform:none;
  3768. visibility:hidden;
  3769. }
  3770. #u10228_img {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:0px;
  3774. top:0px;
  3775. width:122px;
  3776. height:35px;
  3777. }
  3778. #u10228 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:107px;
  3782. top:331px;
  3783. width:122px;
  3784. height:35px;
  3785. display:flex;
  3786. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:11px;
  3790. color:#606266;
  3791. }
  3792. #u10228 .text {
  3793. position:absolute;
  3794. align-self:center;
  3795. padding:2px 2px 2px 0px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u10228_text {
  3800. border-width:0px;
  3801. word-wrap:break-word;
  3802. text-transform:none;
  3803. visibility:hidden;
  3804. }
  3805. #u10229_img {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:81px;
  3811. height:35px;
  3812. }
  3813. #u10229 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:229px;
  3817. top:331px;
  3818. width:81px;
  3819. height:35px;
  3820. display:flex;
  3821. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:11px;
  3825. color:#606266;
  3826. }
  3827. #u10229 .text {
  3828. position:absolute;
  3829. align-self:center;
  3830. padding:2px 2px 2px 0px;
  3831. box-sizing:border-box;
  3832. width:100%;
  3833. }
  3834. #u10229_text {
  3835. border-width:0px;
  3836. word-wrap:break-word;
  3837. text-transform:none;
  3838. visibility:hidden;
  3839. }
  3840. #u10230_img {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:81px;
  3846. height:35px;
  3847. }
  3848. #u10230 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:310px;
  3852. top:331px;
  3853. width:81px;
  3854. height:35px;
  3855. display:flex;
  3856. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3857. font-weight:400;
  3858. font-style:normal;
  3859. font-size:11px;
  3860. color:#606266;
  3861. }
  3862. #u10230 .text {
  3863. position:absolute;
  3864. align-self:center;
  3865. padding:2px 2px 2px 0px;
  3866. box-sizing:border-box;
  3867. width:100%;
  3868. }
  3869. #u10230_text {
  3870. border-width:0px;
  3871. word-wrap:break-word;
  3872. text-transform:none;
  3873. visibility:hidden;
  3874. }
  3875. #u10231_img {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:81px;
  3881. height:35px;
  3882. }
  3883. #u10231 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:391px;
  3887. top:331px;
  3888. width:81px;
  3889. height:35px;
  3890. display:flex;
  3891. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3892. font-weight:400;
  3893. font-style:normal;
  3894. font-size:11px;
  3895. color:#606266;
  3896. }
  3897. #u10231 .text {
  3898. position:absolute;
  3899. align-self:center;
  3900. padding:2px 2px 2px 0px;
  3901. box-sizing:border-box;
  3902. width:100%;
  3903. }
  3904. #u10231_text {
  3905. border-width:0px;
  3906. word-wrap:break-word;
  3907. text-transform:none;
  3908. visibility:hidden;
  3909. }
  3910. #u10232_img {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:0px;
  3914. top:0px;
  3915. width:81px;
  3916. height:35px;
  3917. }
  3918. #u10232 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:472px;
  3922. top:331px;
  3923. width:81px;
  3924. height:35px;
  3925. display:flex;
  3926. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3927. font-weight:400;
  3928. font-style:normal;
  3929. font-size:11px;
  3930. color:#606266;
  3931. }
  3932. #u10232 .text {
  3933. position:absolute;
  3934. align-self:center;
  3935. padding:2px 2px 2px 0px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u10232_text {
  3940. border-width:0px;
  3941. word-wrap:break-word;
  3942. text-transform:none;
  3943. visibility:hidden;
  3944. }
  3945. #u10233_img {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:0px;
  3949. top:0px;
  3950. width:81px;
  3951. height:35px;
  3952. }
  3953. #u10233 {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:553px;
  3957. top:331px;
  3958. width:81px;
  3959. height:35px;
  3960. display:flex;
  3961. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3962. font-weight:400;
  3963. font-style:normal;
  3964. font-size:11px;
  3965. color:#606266;
  3966. }
  3967. #u10233 .text {
  3968. position:absolute;
  3969. align-self:center;
  3970. padding:2px 2px 2px 0px;
  3971. box-sizing:border-box;
  3972. width:100%;
  3973. }
  3974. #u10233_text {
  3975. border-width:0px;
  3976. word-wrap:break-word;
  3977. text-transform:none;
  3978. visibility:hidden;
  3979. }
  3980. #u10234_img {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:81px;
  3986. height:35px;
  3987. }
  3988. #u10234 {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:634px;
  3992. top:331px;
  3993. width:81px;
  3994. height:35px;
  3995. display:flex;
  3996. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3997. font-weight:400;
  3998. font-style:normal;
  3999. font-size:11px;
  4000. color:#606266;
  4001. }
  4002. #u10234 .text {
  4003. position:absolute;
  4004. align-self:center;
  4005. padding:2px 2px 2px 0px;
  4006. box-sizing:border-box;
  4007. width:100%;
  4008. }
  4009. #u10234_text {
  4010. border-width:0px;
  4011. word-wrap:break-word;
  4012. text-transform:none;
  4013. visibility:hidden;
  4014. }
  4015. #u10235_img {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:81px;
  4021. height:35px;
  4022. }
  4023. #u10235 {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:715px;
  4027. top:331px;
  4028. width:81px;
  4029. height:35px;
  4030. display:flex;
  4031. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4032. font-weight:400;
  4033. font-style:normal;
  4034. font-size:11px;
  4035. color:#606266;
  4036. }
  4037. #u10235 .text {
  4038. position:absolute;
  4039. align-self:center;
  4040. padding:2px 2px 2px 0px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u10235_text {
  4045. border-width:0px;
  4046. word-wrap:break-word;
  4047. text-transform:none;
  4048. visibility:hidden;
  4049. }
  4050. #u10236_img {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:0px;
  4054. top:0px;
  4055. width:81px;
  4056. height:35px;
  4057. }
  4058. #u10236 {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:796px;
  4062. top:331px;
  4063. width:81px;
  4064. height:35px;
  4065. display:flex;
  4066. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4067. font-weight:400;
  4068. font-style:normal;
  4069. font-size:11px;
  4070. color:#606266;
  4071. }
  4072. #u10236 .text {
  4073. position:absolute;
  4074. align-self:center;
  4075. padding:2px 2px 2px 0px;
  4076. box-sizing:border-box;
  4077. width:100%;
  4078. }
  4079. #u10236_text {
  4080. border-width:0px;
  4081. word-wrap:break-word;
  4082. text-transform:none;
  4083. visibility:hidden;
  4084. }
  4085. #u10237_img {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:82px;
  4091. height:35px;
  4092. }
  4093. #u10237 {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:877px;
  4097. top:331px;
  4098. width:82px;
  4099. height:35px;
  4100. display:flex;
  4101. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4102. font-weight:400;
  4103. font-style:normal;
  4104. font-size:11px;
  4105. color:#606266;
  4106. }
  4107. #u10237 .text {
  4108. position:absolute;
  4109. align-self:center;
  4110. padding:2px 2px 2px 0px;
  4111. box-sizing:border-box;
  4112. width:100%;
  4113. }
  4114. #u10237_text {
  4115. border-width:0px;
  4116. word-wrap:break-word;
  4117. text-transform:none;
  4118. visibility:hidden;
  4119. }
  4120. #u10238_img {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:0px;
  4124. top:0px;
  4125. width:107px;
  4126. height:35px;
  4127. }
  4128. #u10238 {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:0px;
  4132. top:366px;
  4133. width:107px;
  4134. height:35px;
  4135. display:flex;
  4136. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4137. font-weight:400;
  4138. font-style:normal;
  4139. font-size:11px;
  4140. color:#606266;
  4141. }
  4142. #u10238 .text {
  4143. position:absolute;
  4144. align-self:center;
  4145. padding:2px 2px 2px 0px;
  4146. box-sizing:border-box;
  4147. width:100%;
  4148. }
  4149. #u10238_text {
  4150. border-width:0px;
  4151. word-wrap:break-word;
  4152. text-transform:none;
  4153. visibility:hidden;
  4154. }
  4155. #u10239_img {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:0px;
  4159. top:0px;
  4160. width:122px;
  4161. height:35px;
  4162. }
  4163. #u10239 {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:107px;
  4167. top:366px;
  4168. width:122px;
  4169. height:35px;
  4170. display:flex;
  4171. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4172. font-weight:400;
  4173. font-style:normal;
  4174. font-size:11px;
  4175. color:#606266;
  4176. }
  4177. #u10239 .text {
  4178. position:absolute;
  4179. align-self:center;
  4180. padding:2px 2px 2px 0px;
  4181. box-sizing:border-box;
  4182. width:100%;
  4183. }
  4184. #u10239_text {
  4185. border-width:0px;
  4186. word-wrap:break-word;
  4187. text-transform:none;
  4188. visibility:hidden;
  4189. }
  4190. #u10240_img {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:0px;
  4194. top:0px;
  4195. width:81px;
  4196. height:35px;
  4197. }
  4198. #u10240 {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:229px;
  4202. top:366px;
  4203. width:81px;
  4204. height:35px;
  4205. display:flex;
  4206. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4207. font-weight:400;
  4208. font-style:normal;
  4209. font-size:11px;
  4210. color:#606266;
  4211. }
  4212. #u10240 .text {
  4213. position:absolute;
  4214. align-self:center;
  4215. padding:2px 2px 2px 0px;
  4216. box-sizing:border-box;
  4217. width:100%;
  4218. }
  4219. #u10240_text {
  4220. border-width:0px;
  4221. word-wrap:break-word;
  4222. text-transform:none;
  4223. visibility:hidden;
  4224. }
  4225. #u10241_img {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:81px;
  4231. height:35px;
  4232. }
  4233. #u10241 {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:310px;
  4237. top:366px;
  4238. width:81px;
  4239. height:35px;
  4240. display:flex;
  4241. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4242. font-weight:400;
  4243. font-style:normal;
  4244. font-size:11px;
  4245. color:#606266;
  4246. }
  4247. #u10241 .text {
  4248. position:absolute;
  4249. align-self:center;
  4250. padding:2px 2px 2px 0px;
  4251. box-sizing:border-box;
  4252. width:100%;
  4253. }
  4254. #u10241_text {
  4255. border-width:0px;
  4256. word-wrap:break-word;
  4257. text-transform:none;
  4258. visibility:hidden;
  4259. }
  4260. #u10242_img {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:0px;
  4264. top:0px;
  4265. width:81px;
  4266. height:35px;
  4267. }
  4268. #u10242 {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:391px;
  4272. top:366px;
  4273. width:81px;
  4274. height:35px;
  4275. display:flex;
  4276. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4277. font-weight:400;
  4278. font-style:normal;
  4279. font-size:11px;
  4280. color:#606266;
  4281. }
  4282. #u10242 .text {
  4283. position:absolute;
  4284. align-self:center;
  4285. padding:2px 2px 2px 0px;
  4286. box-sizing:border-box;
  4287. width:100%;
  4288. }
  4289. #u10242_text {
  4290. border-width:0px;
  4291. word-wrap:break-word;
  4292. text-transform:none;
  4293. visibility:hidden;
  4294. }
  4295. #u10243_img {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:0px;
  4299. top:0px;
  4300. width:81px;
  4301. height:35px;
  4302. }
  4303. #u10243 {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:472px;
  4307. top:366px;
  4308. width:81px;
  4309. height:35px;
  4310. display:flex;
  4311. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4312. font-weight:400;
  4313. font-style:normal;
  4314. font-size:11px;
  4315. color:#606266;
  4316. }
  4317. #u10243 .text {
  4318. position:absolute;
  4319. align-self:center;
  4320. padding:2px 2px 2px 0px;
  4321. box-sizing:border-box;
  4322. width:100%;
  4323. }
  4324. #u10243_text {
  4325. border-width:0px;
  4326. word-wrap:break-word;
  4327. text-transform:none;
  4328. visibility:hidden;
  4329. }
  4330. #u10244_img {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:81px;
  4336. height:35px;
  4337. }
  4338. #u10244 {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:553px;
  4342. top:366px;
  4343. width:81px;
  4344. height:35px;
  4345. display:flex;
  4346. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4347. font-weight:400;
  4348. font-style:normal;
  4349. font-size:11px;
  4350. color:#606266;
  4351. }
  4352. #u10244 .text {
  4353. position:absolute;
  4354. align-self:center;
  4355. padding:2px 2px 2px 0px;
  4356. box-sizing:border-box;
  4357. width:100%;
  4358. }
  4359. #u10244_text {
  4360. border-width:0px;
  4361. word-wrap:break-word;
  4362. text-transform:none;
  4363. visibility:hidden;
  4364. }
  4365. #u10245_img {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:0px;
  4369. top:0px;
  4370. width:81px;
  4371. height:35px;
  4372. }
  4373. #u10245 {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:634px;
  4377. top:366px;
  4378. width:81px;
  4379. height:35px;
  4380. display:flex;
  4381. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4382. font-weight:400;
  4383. font-style:normal;
  4384. font-size:11px;
  4385. color:#606266;
  4386. }
  4387. #u10245 .text {
  4388. position:absolute;
  4389. align-self:center;
  4390. padding:2px 2px 2px 0px;
  4391. box-sizing:border-box;
  4392. width:100%;
  4393. }
  4394. #u10245_text {
  4395. border-width:0px;
  4396. word-wrap:break-word;
  4397. text-transform:none;
  4398. visibility:hidden;
  4399. }
  4400. #u10246_img {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:0px;
  4404. top:0px;
  4405. width:81px;
  4406. height:35px;
  4407. }
  4408. #u10246 {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:715px;
  4412. top:366px;
  4413. width:81px;
  4414. height:35px;
  4415. display:flex;
  4416. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4417. font-weight:400;
  4418. font-style:normal;
  4419. font-size:11px;
  4420. color:#606266;
  4421. }
  4422. #u10246 .text {
  4423. position:absolute;
  4424. align-self:center;
  4425. padding:2px 2px 2px 0px;
  4426. box-sizing:border-box;
  4427. width:100%;
  4428. }
  4429. #u10246_text {
  4430. border-width:0px;
  4431. word-wrap:break-word;
  4432. text-transform:none;
  4433. visibility:hidden;
  4434. }
  4435. #u10247_img {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:0px;
  4439. top:0px;
  4440. width:81px;
  4441. height:35px;
  4442. }
  4443. #u10247 {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:796px;
  4447. top:366px;
  4448. width:81px;
  4449. height:35px;
  4450. display:flex;
  4451. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4452. font-weight:400;
  4453. font-style:normal;
  4454. font-size:11px;
  4455. color:#606266;
  4456. }
  4457. #u10247 .text {
  4458. position:absolute;
  4459. align-self:center;
  4460. padding:2px 2px 2px 0px;
  4461. box-sizing:border-box;
  4462. width:100%;
  4463. }
  4464. #u10247_text {
  4465. border-width:0px;
  4466. word-wrap:break-word;
  4467. text-transform:none;
  4468. visibility:hidden;
  4469. }
  4470. #u10248_img {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:82px;
  4476. height:35px;
  4477. }
  4478. #u10248 {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:877px;
  4482. top:366px;
  4483. width:82px;
  4484. height:35px;
  4485. display:flex;
  4486. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4487. font-weight:400;
  4488. font-style:normal;
  4489. font-size:11px;
  4490. color:#606266;
  4491. }
  4492. #u10248 .text {
  4493. position:absolute;
  4494. align-self:center;
  4495. padding:2px 2px 2px 0px;
  4496. box-sizing:border-box;
  4497. width:100%;
  4498. }
  4499. #u10248_text {
  4500. border-width:0px;
  4501. word-wrap:break-word;
  4502. text-transform:none;
  4503. visibility:hidden;
  4504. }
  4505. #u10249_img {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:0px;
  4509. top:0px;
  4510. width:107px;
  4511. height:30px;
  4512. }
  4513. #u10249 {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:0px;
  4517. top:401px;
  4518. width:107px;
  4519. height:30px;
  4520. display:flex;
  4521. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4522. font-weight:400;
  4523. font-style:normal;
  4524. font-size:11px;
  4525. color:#606266;
  4526. }
  4527. #u10249 .text {
  4528. position:absolute;
  4529. align-self:center;
  4530. padding:2px 2px 2px 0px;
  4531. box-sizing:border-box;
  4532. width:100%;
  4533. }
  4534. #u10249_text {
  4535. border-width:0px;
  4536. word-wrap:break-word;
  4537. text-transform:none;
  4538. visibility:hidden;
  4539. }
  4540. #u10250_img {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:0px;
  4544. top:0px;
  4545. width:122px;
  4546. height:30px;
  4547. }
  4548. #u10250 {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:107px;
  4552. top:401px;
  4553. width:122px;
  4554. height:30px;
  4555. display:flex;
  4556. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4557. font-weight:400;
  4558. font-style:normal;
  4559. font-size:11px;
  4560. color:#606266;
  4561. }
  4562. #u10250 .text {
  4563. position:absolute;
  4564. align-self:center;
  4565. padding:2px 2px 2px 0px;
  4566. box-sizing:border-box;
  4567. width:100%;
  4568. }
  4569. #u10250_text {
  4570. border-width:0px;
  4571. word-wrap:break-word;
  4572. text-transform:none;
  4573. visibility:hidden;
  4574. }
  4575. #u10251_img {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:81px;
  4581. height:30px;
  4582. }
  4583. #u10251 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:229px;
  4587. top:401px;
  4588. width:81px;
  4589. height:30px;
  4590. display:flex;
  4591. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4592. font-weight:400;
  4593. font-style:normal;
  4594. font-size:11px;
  4595. color:#606266;
  4596. }
  4597. #u10251 .text {
  4598. position:absolute;
  4599. align-self:center;
  4600. padding:2px 2px 2px 0px;
  4601. box-sizing:border-box;
  4602. width:100%;
  4603. }
  4604. #u10251_text {
  4605. border-width:0px;
  4606. word-wrap:break-word;
  4607. text-transform:none;
  4608. visibility:hidden;
  4609. }
  4610. #u10252_img {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:81px;
  4616. height:30px;
  4617. }
  4618. #u10252 {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:310px;
  4622. top:401px;
  4623. width:81px;
  4624. height:30px;
  4625. display:flex;
  4626. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4627. font-weight:400;
  4628. font-style:normal;
  4629. font-size:11px;
  4630. color:#606266;
  4631. }
  4632. #u10252 .text {
  4633. position:absolute;
  4634. align-self:center;
  4635. padding:2px 2px 2px 0px;
  4636. box-sizing:border-box;
  4637. width:100%;
  4638. }
  4639. #u10252_text {
  4640. border-width:0px;
  4641. word-wrap:break-word;
  4642. text-transform:none;
  4643. visibility:hidden;
  4644. }
  4645. #u10253_img {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:0px;
  4649. top:0px;
  4650. width:81px;
  4651. height:30px;
  4652. }
  4653. #u10253 {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:391px;
  4657. top:401px;
  4658. width:81px;
  4659. height:30px;
  4660. display:flex;
  4661. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4662. font-weight:400;
  4663. font-style:normal;
  4664. font-size:11px;
  4665. color:#606266;
  4666. }
  4667. #u10253 .text {
  4668. position:absolute;
  4669. align-self:center;
  4670. padding:2px 2px 2px 0px;
  4671. box-sizing:border-box;
  4672. width:100%;
  4673. }
  4674. #u10253_text {
  4675. border-width:0px;
  4676. word-wrap:break-word;
  4677. text-transform:none;
  4678. visibility:hidden;
  4679. }
  4680. #u10254_img {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:81px;
  4686. height:30px;
  4687. }
  4688. #u10254 {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:472px;
  4692. top:401px;
  4693. width:81px;
  4694. height:30px;
  4695. display:flex;
  4696. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:11px;
  4700. color:#606266;
  4701. }
  4702. #u10254 .text {
  4703. position:absolute;
  4704. align-self:center;
  4705. padding:2px 2px 2px 0px;
  4706. box-sizing:border-box;
  4707. width:100%;
  4708. }
  4709. #u10254_text {
  4710. border-width:0px;
  4711. word-wrap:break-word;
  4712. text-transform:none;
  4713. visibility:hidden;
  4714. }
  4715. #u10255_img {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:0px;
  4719. top:0px;
  4720. width:81px;
  4721. height:30px;
  4722. }
  4723. #u10255 {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:553px;
  4727. top:401px;
  4728. width:81px;
  4729. height:30px;
  4730. display:flex;
  4731. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4732. font-weight:400;
  4733. font-style:normal;
  4734. font-size:11px;
  4735. color:#606266;
  4736. }
  4737. #u10255 .text {
  4738. position:absolute;
  4739. align-self:center;
  4740. padding:2px 2px 2px 0px;
  4741. box-sizing:border-box;
  4742. width:100%;
  4743. }
  4744. #u10255_text {
  4745. border-width:0px;
  4746. word-wrap:break-word;
  4747. text-transform:none;
  4748. visibility:hidden;
  4749. }
  4750. #u10256_img {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:0px;
  4754. top:0px;
  4755. width:81px;
  4756. height:30px;
  4757. }
  4758. #u10256 {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:634px;
  4762. top:401px;
  4763. width:81px;
  4764. height:30px;
  4765. display:flex;
  4766. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:11px;
  4770. color:#606266;
  4771. }
  4772. #u10256 .text {
  4773. position:absolute;
  4774. align-self:center;
  4775. padding:2px 2px 2px 0px;
  4776. box-sizing:border-box;
  4777. width:100%;
  4778. }
  4779. #u10256_text {
  4780. border-width:0px;
  4781. word-wrap:break-word;
  4782. text-transform:none;
  4783. visibility:hidden;
  4784. }
  4785. #u10257_img {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:0px;
  4789. top:0px;
  4790. width:81px;
  4791. height:30px;
  4792. }
  4793. #u10257 {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:715px;
  4797. top:401px;
  4798. width:81px;
  4799. height:30px;
  4800. display:flex;
  4801. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4802. font-weight:400;
  4803. font-style:normal;
  4804. font-size:11px;
  4805. color:#606266;
  4806. }
  4807. #u10257 .text {
  4808. position:absolute;
  4809. align-self:center;
  4810. padding:2px 2px 2px 0px;
  4811. box-sizing:border-box;
  4812. width:100%;
  4813. }
  4814. #u10257_text {
  4815. border-width:0px;
  4816. word-wrap:break-word;
  4817. text-transform:none;
  4818. visibility:hidden;
  4819. }
  4820. #u10258_img {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:0px;
  4824. top:0px;
  4825. width:81px;
  4826. height:30px;
  4827. }
  4828. #u10258 {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:796px;
  4832. top:401px;
  4833. width:81px;
  4834. height:30px;
  4835. display:flex;
  4836. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4837. font-weight:400;
  4838. font-style:normal;
  4839. font-size:11px;
  4840. color:#606266;
  4841. }
  4842. #u10258 .text {
  4843. position:absolute;
  4844. align-self:center;
  4845. padding:2px 2px 2px 0px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u10258_text {
  4850. border-width:0px;
  4851. word-wrap:break-word;
  4852. text-transform:none;
  4853. visibility:hidden;
  4854. }
  4855. #u10259_img {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:82px;
  4861. height:30px;
  4862. }
  4863. #u10259 {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:877px;
  4867. top:401px;
  4868. width:82px;
  4869. height:30px;
  4870. display:flex;
  4871. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4872. font-weight:400;
  4873. font-style:normal;
  4874. font-size:11px;
  4875. color:#606266;
  4876. }
  4877. #u10259 .text {
  4878. position:absolute;
  4879. align-self:center;
  4880. padding:2px 2px 2px 0px;
  4881. box-sizing:border-box;
  4882. width:100%;
  4883. }
  4884. #u10259_text {
  4885. border-width:0px;
  4886. word-wrap:break-word;
  4887. text-transform:none;
  4888. visibility:hidden;
  4889. }
  4890. #u10260 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:0px;
  4894. top:0px;
  4895. width:0px;
  4896. height:0px;
  4897. }
  4898. #u10261_div {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:59px;
  4904. height:30px;
  4905. background:inherit;
  4906. background-color:rgba(41, 143, 255, 1);
  4907. border:none;
  4908. border-radius:4px;
  4909. -moz-box-shadow:none;
  4910. -webkit-box-shadow:none;
  4911. box-shadow:none;
  4912. font-family:'Microsoft YaHei', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:14px;
  4916. color:#FFFFFF;
  4917. }
  4918. #u10261 {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:688px;
  4922. top:369px;
  4923. width:59px;
  4924. height:30px;
  4925. display:flex;
  4926. font-family:'Microsoft YaHei', sans-serif;
  4927. font-weight:400;
  4928. font-style:normal;
  4929. font-size:14px;
  4930. color:#FFFFFF;
  4931. }
  4932. #u10261 .text {
  4933. position:absolute;
  4934. align-self:center;
  4935. padding:5px 15px 5px 15px;
  4936. box-sizing:border-box;
  4937. width:100%;
  4938. }
  4939. #u10261_text {
  4940. border-width:0px;
  4941. white-space:nowrap;
  4942. text-transform:none;
  4943. }
  4944. #u10262_div {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:55px;
  4950. height:30px;
  4951. background:inherit;
  4952. background-color:rgba(255, 255, 255, 1);
  4953. box-sizing:border-box;
  4954. border-width:1px;
  4955. border-style:solid;
  4956. border-color:rgba(170, 170, 170, 1);
  4957. border-radius:4px;
  4958. -moz-box-shadow:none;
  4959. -webkit-box-shadow:none;
  4960. box-shadow:none;
  4961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:12px;
  4965. color:#555555;
  4966. }
  4967. #u10262 {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:757px;
  4971. top:369px;
  4972. width:55px;
  4973. height:30px;
  4974. display:flex;
  4975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4976. font-weight:400;
  4977. font-style:normal;
  4978. font-size:12px;
  4979. color:#555555;
  4980. }
  4981. #u10262 .text {
  4982. position:absolute;
  4983. align-self:center;
  4984. padding:5px 15px 5px 15px;
  4985. box-sizing:border-box;
  4986. width:100%;
  4987. }
  4988. #u10262_text {
  4989. border-width:0px;
  4990. white-space:nowrap;
  4991. text-transform:none;
  4992. }
  4993. #u10263 {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:0px;
  4997. top:0px;
  4998. width:0px;
  4999. height:0px;
  5000. }
  5001. #u10264 {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:0px;
  5005. top:0px;
  5006. width:0px;
  5007. height:0px;
  5008. }
  5009. #u10265_div {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:0px;
  5013. top:0px;
  5014. width:31px;
  5015. height:30px;
  5016. background:inherit;
  5017. background-color:rgba(255, 255, 255, 1);
  5018. box-sizing:border-box;
  5019. border-width:1px;
  5020. border-style:solid;
  5021. border-color:rgba(228, 228, 228, 1);
  5022. border-radius:4px;
  5023. -moz-box-shadow:none;
  5024. -webkit-box-shadow:none;
  5025. box-shadow:none;
  5026. font-family:'Microsoft YaHei', sans-serif;
  5027. font-weight:400;
  5028. font-style:normal;
  5029. font-size:12px;
  5030. }
  5031. #u10265 {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:931px;
  5035. top:874px;
  5036. width:31px;
  5037. height:30px;
  5038. display:flex;
  5039. font-family:'Microsoft YaHei', sans-serif;
  5040. font-weight:400;
  5041. font-style:normal;
  5042. font-size:12px;
  5043. }
  5044. #u10265 .text {
  5045. position:absolute;
  5046. align-self:center;
  5047. padding:2px 2px 2px 2px;
  5048. box-sizing:border-box;
  5049. width:100%;
  5050. }
  5051. #u10265_text {
  5052. border-width:0px;
  5053. word-wrap:break-word;
  5054. text-transform:none;
  5055. visibility:hidden;
  5056. }
  5057. #u10266_img {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:0px;
  5061. top:0px;
  5062. width:8px;
  5063. height:14px;
  5064. }
  5065. #u10266 {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:943px;
  5069. top:882px;
  5070. width:8px;
  5071. height:14px;
  5072. display:flex;
  5073. font-family:'Microsoft YaHei', sans-serif;
  5074. font-weight:400;
  5075. font-style:normal;
  5076. font-size:12px;
  5077. }
  5078. #u10266 .text {
  5079. position:absolute;
  5080. align-self:center;
  5081. padding:2px 2px 2px 2px;
  5082. box-sizing:border-box;
  5083. width:100%;
  5084. }
  5085. #u10266_text {
  5086. border-width:0px;
  5087. word-wrap:break-word;
  5088. text-transform:none;
  5089. visibility:hidden;
  5090. }
  5091. #u10267 {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:0px;
  5097. height:0px;
  5098. }
  5099. #u10268_div {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:0px;
  5103. top:0px;
  5104. width:31px;
  5105. height:30px;
  5106. background:inherit;
  5107. background-color:rgba(255, 255, 255, 1);
  5108. box-sizing:border-box;
  5109. border-width:1px;
  5110. border-style:solid;
  5111. border-color:rgba(228, 228, 228, 1);
  5112. border-radius:4px;
  5113. -moz-box-shadow:none;
  5114. -webkit-box-shadow:none;
  5115. box-shadow:none;
  5116. font-family:'Microsoft YaHei', sans-serif;
  5117. font-weight:400;
  5118. font-style:normal;
  5119. font-size:12px;
  5120. }
  5121. #u10268 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:1016px;
  5125. top:874px;
  5126. width:31px;
  5127. height:30px;
  5128. display:flex;
  5129. font-family:'Microsoft YaHei', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. font-size:12px;
  5133. }
  5134. #u10268 .text {
  5135. position:absolute;
  5136. align-self:center;
  5137. padding:2px 2px 2px 2px;
  5138. box-sizing:border-box;
  5139. width:100%;
  5140. }
  5141. #u10268_text {
  5142. border-width:0px;
  5143. word-wrap:break-word;
  5144. text-transform:none;
  5145. visibility:hidden;
  5146. }
  5147. #u10269_img {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:8px;
  5153. height:14px;
  5154. }
  5155. #u10269 {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:1029px;
  5159. top:882px;
  5160. width:8px;
  5161. height:14px;
  5162. display:flex;
  5163. font-family:'Microsoft YaHei', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:12px;
  5167. }
  5168. #u10269 .text {
  5169. position:absolute;
  5170. align-self:center;
  5171. padding:2px 2px 2px 2px;
  5172. box-sizing:border-box;
  5173. width:100%;
  5174. }
  5175. #u10269_text {
  5176. border-width:0px;
  5177. word-wrap:break-word;
  5178. text-transform:none;
  5179. visibility:hidden;
  5180. }
  5181. #u10270_div {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:32px;
  5187. height:21px;
  5188. background:inherit;
  5189. background-color:rgba(255, 255, 255, 1);
  5190. border:none;
  5191. border-radius:15px;
  5192. -moz-box-shadow:none;
  5193. -webkit-box-shadow:none;
  5194. box-shadow:none;
  5195. font-family:'Microsoft YaHei', sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:14px;
  5199. color:#1E1E1E;
  5200. }
  5201. #u10270 {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:972px;
  5205. top:879px;
  5206. width:32px;
  5207. height:21px;
  5208. display:flex;
  5209. font-family:'Microsoft YaHei', sans-serif;
  5210. font-weight:400;
  5211. font-style:normal;
  5212. font-size:14px;
  5213. color:#1E1E1E;
  5214. }
  5215. #u10270 .text {
  5216. position:absolute;
  5217. align-self:center;
  5218. padding:2px 2px 2px 2px;
  5219. box-sizing:border-box;
  5220. width:100%;
  5221. }
  5222. #u10270_text {
  5223. border-width:0px;
  5224. white-space:nowrap;
  5225. text-transform:none;
  5226. }
  5227. #u10271 {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:0px;
  5231. top:0px;
  5232. width:0px;
  5233. height:0px;
  5234. }
  5235. #u10272_div {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:140px;
  5241. height:30px;
  5242. background:inherit;
  5243. background-color:rgba(255, 255, 255, 1);
  5244. box-sizing:border-box;
  5245. border-width:1px;
  5246. border-style:solid;
  5247. border-color:rgba(215, 215, 215, 1);
  5248. border-radius:4px;
  5249. -moz-box-shadow:none;
  5250. -webkit-box-shadow:none;
  5251. box-shadow:none;
  5252. font-size:11px;
  5253. }
  5254. #u10272 {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:388px;
  5258. top:370px;
  5259. width:140px;
  5260. height:30px;
  5261. display:flex;
  5262. font-size:11px;
  5263. }
  5264. #u10272 .text {
  5265. position:absolute;
  5266. align-self:center;
  5267. padding:2px 2px 2px 2px;
  5268. box-sizing:border-box;
  5269. width:100%;
  5270. }
  5271. #u10272_text {
  5272. border-width:0px;
  5273. word-wrap:break-word;
  5274. text-transform:none;
  5275. visibility:hidden;
  5276. }
  5277. #u10273_input {
  5278. position:absolute;
  5279. left:0px;
  5280. top:0px;
  5281. width:120px;
  5282. height:23px;
  5283. padding:2px 2px 2px 2px;
  5284. font-family:'ArialMT', 'Arial', sans-serif;
  5285. font-weight:400;
  5286. font-style:normal;
  5287. font-size:11px;
  5288. letter-spacing:normal;
  5289. color:#AAAAAA;
  5290. vertical-align:none;
  5291. text-align:left;
  5292. text-transform:none;
  5293. background-color:transparent;
  5294. border-color:transparent;
  5295. }
  5296. #u10273_input.disabled {
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:120px;
  5301. height:23px;
  5302. padding:2px 2px 2px 2px;
  5303. font-family:'ArialMT', 'Arial', sans-serif;
  5304. font-weight:400;
  5305. font-style:normal;
  5306. font-size:11px;
  5307. letter-spacing:normal;
  5308. color:#AAAAAA;
  5309. vertical-align:none;
  5310. text-align:left;
  5311. text-transform:none;
  5312. background-color:transparent;
  5313. border-color:transparent;
  5314. }
  5315. #u10273_div {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:120px;
  5321. height:23px;
  5322. background:inherit;
  5323. background-color:rgba(255, 255, 255, 1);
  5324. border:none;
  5325. border-radius:0px;
  5326. -moz-box-shadow:none;
  5327. -webkit-box-shadow:none;
  5328. box-shadow:none;
  5329. font-size:11px;
  5330. color:#AAAAAA;
  5331. }
  5332. #u10273 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:395px;
  5336. top:372px;
  5337. width:120px;
  5338. height:23px;
  5339. display:flex;
  5340. font-size:11px;
  5341. color:#AAAAAA;
  5342. }
  5343. #u10273 .text {
  5344. position:absolute;
  5345. align-self:flex-start;
  5346. padding:2px 2px 2px 2px;
  5347. box-sizing:border-box;
  5348. width:100%;
  5349. }
  5350. #u10273_div.disabled {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:120px;
  5356. height:23px;
  5357. background:inherit;
  5358. background-color:rgba(240, 240, 240, 1);
  5359. border:none;
  5360. border-radius:0px;
  5361. -moz-box-shadow:none;
  5362. -webkit-box-shadow:none;
  5363. box-shadow:none;
  5364. font-size:11px;
  5365. color:#AAAAAA;
  5366. }
  5367. #u10273.disabled {
  5368. }
  5369. .u10273_input_option {
  5370. font-size:11px;
  5371. }
  5372. #u10274 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:0px;
  5376. top:0px;
  5377. width:0px;
  5378. height:0px;
  5379. }
  5380. #u10275_div {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:0px;
  5384. top:0px;
  5385. width:140px;
  5386. height:30px;
  5387. background:inherit;
  5388. background-color:rgba(255, 255, 255, 1);
  5389. box-sizing:border-box;
  5390. border-width:1px;
  5391. border-style:solid;
  5392. border-color:rgba(201, 201, 201, 1);
  5393. border-radius:4px;
  5394. -moz-box-shadow:none;
  5395. -webkit-box-shadow:none;
  5396. box-shadow:none;
  5397. font-family:'Microsoft YaHei', sans-serif;
  5398. font-weight:400;
  5399. font-style:normal;
  5400. font-size:14px;
  5401. color:#CCCCCC;
  5402. text-align:left;
  5403. }
  5404. #u10275 {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:88px;
  5408. top:330px;
  5409. width:140px;
  5410. height:30px;
  5411. display:flex;
  5412. font-family:'Microsoft YaHei', sans-serif;
  5413. font-weight:400;
  5414. font-style:normal;
  5415. font-size:14px;
  5416. color:#CCCCCC;
  5417. text-align:left;
  5418. }
  5419. #u10275 .text {
  5420. position:absolute;
  5421. align-self:center;
  5422. padding:2px 8px 2px 8px;
  5423. box-sizing:border-box;
  5424. width:100%;
  5425. }
  5426. #u10275_text {
  5427. border-width:0px;
  5428. word-wrap:break-word;
  5429. text-transform:none;
  5430. visibility:hidden;
  5431. }
  5432. #u10276_input {
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:127px;
  5437. height:25px;
  5438. padding:2px 2px 2px 2px;
  5439. font-family:'Microsoft YaHei', sans-serif;
  5440. font-weight:400;
  5441. font-style:normal;
  5442. font-size:10px;
  5443. letter-spacing:normal;
  5444. color:#000000;
  5445. vertical-align:none;
  5446. text-align:left;
  5447. text-transform:none;
  5448. background-color:transparent;
  5449. border-color:transparent;
  5450. }
  5451. #u10276_input.disabled {
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:127px;
  5456. height:25px;
  5457. padding:2px 2px 2px 2px;
  5458. font-family:'Microsoft YaHei', sans-serif;
  5459. font-weight:400;
  5460. font-style:normal;
  5461. font-size:10px;
  5462. letter-spacing:normal;
  5463. color:#000000;
  5464. vertical-align:none;
  5465. text-align:left;
  5466. text-transform:none;
  5467. background-color:transparent;
  5468. border-color:transparent;
  5469. }
  5470. #u10276_div {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:127px;
  5476. height:25px;
  5477. background:inherit;
  5478. background-color:rgba(255, 255, 255, 1);
  5479. border:none;
  5480. border-radius:0px;
  5481. -moz-box-shadow:none;
  5482. -webkit-box-shadow:none;
  5483. box-shadow:none;
  5484. font-family:'Microsoft YaHei', sans-serif;
  5485. font-weight:400;
  5486. font-style:normal;
  5487. font-size:10px;
  5488. }
  5489. #u10276 {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:96px;
  5493. top:331px;
  5494. width:127px;
  5495. height:25px;
  5496. display:flex;
  5497. font-family:'Microsoft YaHei', sans-serif;
  5498. font-weight:400;
  5499. font-style:normal;
  5500. font-size:10px;
  5501. }
  5502. #u10276 .text {
  5503. position:absolute;
  5504. align-self:center;
  5505. padding:2px 2px 2px 2px;
  5506. box-sizing:border-box;
  5507. width:100%;
  5508. }
  5509. #u10276_div.disabled {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:0px;
  5513. top:0px;
  5514. width:127px;
  5515. height:25px;
  5516. background:inherit;
  5517. background-color:rgba(240, 240, 240, 1);
  5518. border:none;
  5519. border-radius:0px;
  5520. -moz-box-shadow:none;
  5521. -webkit-box-shadow:none;
  5522. box-shadow:none;
  5523. font-family:'Microsoft YaHei', sans-serif;
  5524. font-weight:400;
  5525. font-style:normal;
  5526. font-size:10px;
  5527. }
  5528. #u10276.disabled {
  5529. }
  5530. #u10277 {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:0px;
  5534. top:0px;
  5535. width:0px;
  5536. height:0px;
  5537. }
  5538. #u10278_div {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:0px;
  5542. top:0px;
  5543. width:140px;
  5544. height:30px;
  5545. background:inherit;
  5546. background-color:rgba(255, 255, 255, 1);
  5547. box-sizing:border-box;
  5548. border-width:1px;
  5549. border-style:solid;
  5550. border-color:rgba(215, 215, 215, 1);
  5551. border-radius:4px;
  5552. -moz-box-shadow:none;
  5553. -webkit-box-shadow:none;
  5554. box-shadow:none;
  5555. font-size:11px;
  5556. }
  5557. #u10278 {
  5558. border-width:0px;
  5559. position:absolute;
  5560. left:538px;
  5561. top:370px;
  5562. width:140px;
  5563. height:30px;
  5564. display:flex;
  5565. font-size:11px;
  5566. }
  5567. #u10278 .text {
  5568. position:absolute;
  5569. align-self:center;
  5570. padding:2px 2px 2px 2px;
  5571. box-sizing:border-box;
  5572. width:100%;
  5573. }
  5574. #u10278_text {
  5575. border-width:0px;
  5576. word-wrap:break-word;
  5577. text-transform:none;
  5578. visibility:hidden;
  5579. }
  5580. #u10279_input {
  5581. position:absolute;
  5582. left:0px;
  5583. top:0px;
  5584. width:120px;
  5585. height:23px;
  5586. padding:2px 2px 2px 2px;
  5587. font-family:'ArialMT', 'Arial', sans-serif;
  5588. font-weight:400;
  5589. font-style:normal;
  5590. font-size:11px;
  5591. letter-spacing:normal;
  5592. color:#AAAAAA;
  5593. vertical-align:none;
  5594. text-align:left;
  5595. text-transform:none;
  5596. background-color:transparent;
  5597. border-color:transparent;
  5598. }
  5599. #u10279_input.disabled {
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:120px;
  5604. height:23px;
  5605. padding:2px 2px 2px 2px;
  5606. font-family:'ArialMT', 'Arial', sans-serif;
  5607. font-weight:400;
  5608. font-style:normal;
  5609. font-size:11px;
  5610. letter-spacing:normal;
  5611. color:#AAAAAA;
  5612. vertical-align:none;
  5613. text-align:left;
  5614. text-transform:none;
  5615. background-color:transparent;
  5616. border-color:transparent;
  5617. }
  5618. #u10279_div {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:120px;
  5624. height:23px;
  5625. background:inherit;
  5626. background-color:rgba(255, 255, 255, 1);
  5627. border:none;
  5628. border-radius:0px;
  5629. -moz-box-shadow:none;
  5630. -webkit-box-shadow:none;
  5631. box-shadow:none;
  5632. font-size:11px;
  5633. color:#AAAAAA;
  5634. }
  5635. #u10279 {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:545px;
  5639. top:372px;
  5640. width:120px;
  5641. height:23px;
  5642. display:flex;
  5643. font-size:11px;
  5644. color:#AAAAAA;
  5645. }
  5646. #u10279 .text {
  5647. position:absolute;
  5648. align-self:flex-start;
  5649. padding:2px 2px 2px 2px;
  5650. box-sizing:border-box;
  5651. width:100%;
  5652. }
  5653. #u10279_div.disabled {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:120px;
  5659. height:23px;
  5660. background:inherit;
  5661. background-color:rgba(240, 240, 240, 1);
  5662. border:none;
  5663. border-radius:0px;
  5664. -moz-box-shadow:none;
  5665. -webkit-box-shadow:none;
  5666. box-shadow:none;
  5667. font-size:11px;
  5668. color:#AAAAAA;
  5669. }
  5670. #u10279.disabled {
  5671. }
  5672. .u10279_input_option {
  5673. font-size:11px;
  5674. }
  5675. #u10280 {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:0px;
  5681. height:0px;
  5682. }
  5683. #u10281_div {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:0px;
  5687. top:0px;
  5688. width:140px;
  5689. height:30px;
  5690. background:inherit;
  5691. background-color:rgba(255, 255, 255, 1);
  5692. box-sizing:border-box;
  5693. border-width:1px;
  5694. border-style:solid;
  5695. border-color:rgba(201, 201, 201, 1);
  5696. border-radius:4px;
  5697. -moz-box-shadow:none;
  5698. -webkit-box-shadow:none;
  5699. box-shadow:none;
  5700. font-family:'Microsoft YaHei', sans-serif;
  5701. font-weight:400;
  5702. font-style:normal;
  5703. font-size:14px;
  5704. color:#CCCCCC;
  5705. text-align:left;
  5706. }
  5707. #u10281 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:238px;
  5711. top:330px;
  5712. width:140px;
  5713. height:30px;
  5714. display:flex;
  5715. font-family:'Microsoft YaHei', sans-serif;
  5716. font-weight:400;
  5717. font-style:normal;
  5718. font-size:14px;
  5719. color:#CCCCCC;
  5720. text-align:left;
  5721. }
  5722. #u10281 .text {
  5723. position:absolute;
  5724. align-self:center;
  5725. padding:2px 8px 2px 8px;
  5726. box-sizing:border-box;
  5727. width:100%;
  5728. }
  5729. #u10281_text {
  5730. border-width:0px;
  5731. word-wrap:break-word;
  5732. text-transform:none;
  5733. visibility:hidden;
  5734. }
  5735. #u10282_input {
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:127px;
  5740. height:25px;
  5741. padding:2px 2px 2px 2px;
  5742. font-family:'Microsoft YaHei', sans-serif;
  5743. font-weight:400;
  5744. font-style:normal;
  5745. font-size:10px;
  5746. letter-spacing:normal;
  5747. color:#000000;
  5748. vertical-align:none;
  5749. text-align:left;
  5750. text-transform:none;
  5751. background-color:transparent;
  5752. border-color:transparent;
  5753. }
  5754. #u10282_input.disabled {
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:127px;
  5759. height:25px;
  5760. padding:2px 2px 2px 2px;
  5761. font-family:'Microsoft YaHei', sans-serif;
  5762. font-weight:400;
  5763. font-style:normal;
  5764. font-size:10px;
  5765. letter-spacing:normal;
  5766. color:#000000;
  5767. vertical-align:none;
  5768. text-align:left;
  5769. text-transform:none;
  5770. background-color:transparent;
  5771. border-color:transparent;
  5772. }
  5773. #u10282_div {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:127px;
  5779. height:25px;
  5780. background:inherit;
  5781. background-color:rgba(255, 255, 255, 1);
  5782. border:none;
  5783. border-radius:0px;
  5784. -moz-box-shadow:none;
  5785. -webkit-box-shadow:none;
  5786. box-shadow:none;
  5787. font-family:'Microsoft YaHei', sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. font-size:10px;
  5791. }
  5792. #u10282 {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:246px;
  5796. top:331px;
  5797. width:127px;
  5798. height:25px;
  5799. display:flex;
  5800. font-family:'Microsoft YaHei', sans-serif;
  5801. font-weight:400;
  5802. font-style:normal;
  5803. font-size:10px;
  5804. }
  5805. #u10282 .text {
  5806. position:absolute;
  5807. align-self:center;
  5808. padding:2px 2px 2px 2px;
  5809. box-sizing:border-box;
  5810. width:100%;
  5811. }
  5812. #u10282_div.disabled {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:127px;
  5818. height:25px;
  5819. background:inherit;
  5820. background-color:rgba(240, 240, 240, 1);
  5821. border:none;
  5822. border-radius:0px;
  5823. -moz-box-shadow:none;
  5824. -webkit-box-shadow:none;
  5825. box-shadow:none;
  5826. font-family:'Microsoft YaHei', sans-serif;
  5827. font-weight:400;
  5828. font-style:normal;
  5829. font-size:10px;
  5830. }
  5831. #u10282.disabled {
  5832. }
  5833. #u10283 {
  5834. border-width:0px;
  5835. position:absolute;
  5836. left:0px;
  5837. top:0px;
  5838. width:0px;
  5839. height:0px;
  5840. }
  5841. #u10284_div {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:140px;
  5847. height:30px;
  5848. background:inherit;
  5849. background-color:rgba(255, 255, 255, 1);
  5850. box-sizing:border-box;
  5851. border-width:1px;
  5852. border-style:solid;
  5853. border-color:rgba(201, 201, 201, 1);
  5854. border-radius:4px;
  5855. -moz-box-shadow:none;
  5856. -webkit-box-shadow:none;
  5857. box-shadow:none;
  5858. font-family:'Microsoft YaHei', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:14px;
  5862. color:#CCCCCC;
  5863. text-align:left;
  5864. }
  5865. #u10284 {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:388px;
  5869. top:330px;
  5870. width:140px;
  5871. height:30px;
  5872. display:flex;
  5873. font-family:'Microsoft YaHei', sans-serif;
  5874. font-weight:400;
  5875. font-style:normal;
  5876. font-size:14px;
  5877. color:#CCCCCC;
  5878. text-align:left;
  5879. }
  5880. #u10284 .text {
  5881. position:absolute;
  5882. align-self:center;
  5883. padding:2px 8px 2px 8px;
  5884. box-sizing:border-box;
  5885. width:100%;
  5886. }
  5887. #u10284_text {
  5888. border-width:0px;
  5889. word-wrap:break-word;
  5890. text-transform:none;
  5891. visibility:hidden;
  5892. }
  5893. #u10285_input {
  5894. position:absolute;
  5895. left:0px;
  5896. top:0px;
  5897. width:127px;
  5898. height:25px;
  5899. padding:2px 2px 2px 2px;
  5900. font-family:'Microsoft YaHei', sans-serif;
  5901. font-weight:400;
  5902. font-style:normal;
  5903. font-size:10px;
  5904. letter-spacing:normal;
  5905. color:#000000;
  5906. vertical-align:none;
  5907. text-align:left;
  5908. text-transform:none;
  5909. background-color:transparent;
  5910. border-color:transparent;
  5911. }
  5912. #u10285_input.disabled {
  5913. position:absolute;
  5914. left:0px;
  5915. top:0px;
  5916. width:127px;
  5917. height:25px;
  5918. padding:2px 2px 2px 2px;
  5919. font-family:'Microsoft YaHei', sans-serif;
  5920. font-weight:400;
  5921. font-style:normal;
  5922. font-size:10px;
  5923. letter-spacing:normal;
  5924. color:#000000;
  5925. vertical-align:none;
  5926. text-align:left;
  5927. text-transform:none;
  5928. background-color:transparent;
  5929. border-color:transparent;
  5930. }
  5931. #u10285_div {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:0px;
  5935. top:0px;
  5936. width:127px;
  5937. height:25px;
  5938. background:inherit;
  5939. background-color:rgba(255, 255, 255, 1);
  5940. border:none;
  5941. border-radius:0px;
  5942. -moz-box-shadow:none;
  5943. -webkit-box-shadow:none;
  5944. box-shadow:none;
  5945. font-family:'Microsoft YaHei', sans-serif;
  5946. font-weight:400;
  5947. font-style:normal;
  5948. font-size:10px;
  5949. }
  5950. #u10285 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:396px;
  5954. top:331px;
  5955. width:127px;
  5956. height:25px;
  5957. display:flex;
  5958. font-family:'Microsoft YaHei', sans-serif;
  5959. font-weight:400;
  5960. font-style:normal;
  5961. font-size:10px;
  5962. }
  5963. #u10285 .text {
  5964. position:absolute;
  5965. align-self:center;
  5966. padding:2px 2px 2px 2px;
  5967. box-sizing:border-box;
  5968. width:100%;
  5969. }
  5970. #u10285_div.disabled {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:127px;
  5976. height:25px;
  5977. background:inherit;
  5978. background-color:rgba(240, 240, 240, 1);
  5979. border:none;
  5980. border-radius:0px;
  5981. -moz-box-shadow:none;
  5982. -webkit-box-shadow:none;
  5983. box-shadow:none;
  5984. font-family:'Microsoft YaHei', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. font-size:10px;
  5988. }
  5989. #u10285.disabled {
  5990. }
  5991. #u10286 {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:0px;
  5995. top:0px;
  5996. width:0px;
  5997. height:0px;
  5998. }
  5999. #u10287_div {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:0px;
  6003. top:0px;
  6004. width:140px;
  6005. height:30px;
  6006. background:inherit;
  6007. background-color:rgba(255, 255, 255, 1);
  6008. box-sizing:border-box;
  6009. border-width:1px;
  6010. border-style:solid;
  6011. border-color:rgba(215, 215, 215, 1);
  6012. border-radius:4px;
  6013. -moz-box-shadow:none;
  6014. -webkit-box-shadow:none;
  6015. box-shadow:none;
  6016. font-size:11px;
  6017. }
  6018. #u10287 {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:839px;
  6022. top:330px;
  6023. width:140px;
  6024. height:30px;
  6025. display:flex;
  6026. font-size:11px;
  6027. }
  6028. #u10287 .text {
  6029. position:absolute;
  6030. align-self:center;
  6031. padding:2px 2px 2px 2px;
  6032. box-sizing:border-box;
  6033. width:100%;
  6034. }
  6035. #u10287_text {
  6036. border-width:0px;
  6037. word-wrap:break-word;
  6038. text-transform:none;
  6039. visibility:hidden;
  6040. }
  6041. #u10288_input {
  6042. position:absolute;
  6043. left:0px;
  6044. top:0px;
  6045. width:120px;
  6046. height:23px;
  6047. padding:2px 2px 2px 2px;
  6048. font-family:'ArialMT', 'Arial', sans-serif;
  6049. font-weight:400;
  6050. font-style:normal;
  6051. font-size:11px;
  6052. letter-spacing:normal;
  6053. color:#AAAAAA;
  6054. vertical-align:none;
  6055. text-align:left;
  6056. text-transform:none;
  6057. background-color:transparent;
  6058. border-color:transparent;
  6059. }
  6060. #u10288_input.disabled {
  6061. position:absolute;
  6062. left:0px;
  6063. top:0px;
  6064. width:120px;
  6065. height:23px;
  6066. padding:2px 2px 2px 2px;
  6067. font-family:'ArialMT', 'Arial', sans-serif;
  6068. font-weight:400;
  6069. font-style:normal;
  6070. font-size:11px;
  6071. letter-spacing:normal;
  6072. color:#AAAAAA;
  6073. vertical-align:none;
  6074. text-align:left;
  6075. text-transform:none;
  6076. background-color:transparent;
  6077. border-color:transparent;
  6078. }
  6079. #u10288_div {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:0px;
  6083. top:0px;
  6084. width:120px;
  6085. height:23px;
  6086. background:inherit;
  6087. background-color:rgba(255, 255, 255, 1);
  6088. border:none;
  6089. border-radius:0px;
  6090. -moz-box-shadow:none;
  6091. -webkit-box-shadow:none;
  6092. box-shadow:none;
  6093. font-size:11px;
  6094. color:#AAAAAA;
  6095. }
  6096. #u10288 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:846px;
  6100. top:332px;
  6101. width:120px;
  6102. height:23px;
  6103. display:flex;
  6104. font-size:11px;
  6105. color:#AAAAAA;
  6106. }
  6107. #u10288 .text {
  6108. position:absolute;
  6109. align-self:flex-start;
  6110. padding:2px 2px 2px 2px;
  6111. box-sizing:border-box;
  6112. width:100%;
  6113. }
  6114. #u10288_div.disabled {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:120px;
  6120. height:23px;
  6121. background:inherit;
  6122. background-color:rgba(240, 240, 240, 1);
  6123. border:none;
  6124. border-radius:0px;
  6125. -moz-box-shadow:none;
  6126. -webkit-box-shadow:none;
  6127. box-shadow:none;
  6128. font-size:11px;
  6129. color:#AAAAAA;
  6130. }
  6131. #u10288.disabled {
  6132. }
  6133. .u10288_input_option {
  6134. font-size:11px;
  6135. }
  6136. #u10289 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:0px;
  6140. top:0px;
  6141. width:0px;
  6142. height:0px;
  6143. }
  6144. #u10290_div {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:140px;
  6150. height:30px;
  6151. background:inherit;
  6152. background-color:rgba(255, 255, 255, 1);
  6153. box-sizing:border-box;
  6154. border-width:1px;
  6155. border-style:solid;
  6156. border-color:rgba(201, 201, 201, 1);
  6157. border-radius:4px;
  6158. -moz-box-shadow:none;
  6159. -webkit-box-shadow:none;
  6160. box-shadow:none;
  6161. font-family:'Microsoft YaHei', sans-serif;
  6162. font-weight:400;
  6163. font-style:normal;
  6164. font-size:14px;
  6165. color:#CCCCCC;
  6166. text-align:left;
  6167. }
  6168. #u10290 {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:238px;
  6172. top:370px;
  6173. width:140px;
  6174. height:30px;
  6175. display:flex;
  6176. font-family:'Microsoft YaHei', sans-serif;
  6177. font-weight:400;
  6178. font-style:normal;
  6179. font-size:14px;
  6180. color:#CCCCCC;
  6181. text-align:left;
  6182. }
  6183. #u10290 .text {
  6184. position:absolute;
  6185. align-self:center;
  6186. padding:2px 8px 2px 8px;
  6187. box-sizing:border-box;
  6188. width:100%;
  6189. }
  6190. #u10290_text {
  6191. border-width:0px;
  6192. word-wrap:break-word;
  6193. text-transform:none;
  6194. visibility:hidden;
  6195. }
  6196. #u10291_input {
  6197. position:absolute;
  6198. left:0px;
  6199. top:0px;
  6200. width:127px;
  6201. height:25px;
  6202. padding:2px 2px 2px 2px;
  6203. font-family:'Microsoft YaHei', sans-serif;
  6204. font-weight:400;
  6205. font-style:normal;
  6206. font-size:10px;
  6207. letter-spacing:normal;
  6208. color:#000000;
  6209. vertical-align:none;
  6210. text-align:left;
  6211. text-transform:none;
  6212. background-color:transparent;
  6213. border-color:transparent;
  6214. }
  6215. #u10291_input.disabled {
  6216. position:absolute;
  6217. left:0px;
  6218. top:0px;
  6219. width:127px;
  6220. height:25px;
  6221. padding:2px 2px 2px 2px;
  6222. font-family:'Microsoft YaHei', sans-serif;
  6223. font-weight:400;
  6224. font-style:normal;
  6225. font-size:10px;
  6226. letter-spacing:normal;
  6227. color:#000000;
  6228. vertical-align:none;
  6229. text-align:left;
  6230. text-transform:none;
  6231. background-color:transparent;
  6232. border-color:transparent;
  6233. }
  6234. #u10291_div {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:127px;
  6240. height:25px;
  6241. background:inherit;
  6242. background-color:rgba(255, 255, 255, 1);
  6243. border:none;
  6244. border-radius:0px;
  6245. -moz-box-shadow:none;
  6246. -webkit-box-shadow:none;
  6247. box-shadow:none;
  6248. font-family:'Microsoft YaHei', sans-serif;
  6249. font-weight:400;
  6250. font-style:normal;
  6251. font-size:10px;
  6252. }
  6253. #u10291 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:246px;
  6257. top:371px;
  6258. width:127px;
  6259. height:25px;
  6260. display:flex;
  6261. font-family:'Microsoft YaHei', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. font-size:10px;
  6265. }
  6266. #u10291 .text {
  6267. position:absolute;
  6268. align-self:center;
  6269. padding:2px 2px 2px 2px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u10291_div.disabled {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:0px;
  6277. top:0px;
  6278. width:127px;
  6279. height:25px;
  6280. background:inherit;
  6281. background-color:rgba(240, 240, 240, 1);
  6282. border:none;
  6283. border-radius:0px;
  6284. -moz-box-shadow:none;
  6285. -webkit-box-shadow:none;
  6286. box-shadow:none;
  6287. font-family:'Microsoft YaHei', sans-serif;
  6288. font-weight:400;
  6289. font-style:normal;
  6290. font-size:10px;
  6291. }
  6292. #u10291.disabled {
  6293. }
  6294. #u10292_div {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:0px;
  6298. top:0px;
  6299. width:55px;
  6300. height:30px;
  6301. background:inherit;
  6302. background-color:rgba(255, 255, 255, 1);
  6303. box-sizing:border-box;
  6304. border-width:1px;
  6305. border-style:solid;
  6306. border-color:rgba(170, 170, 170, 1);
  6307. border-radius:4px;
  6308. -moz-box-shadow:none;
  6309. -webkit-box-shadow:none;
  6310. box-shadow:none;
  6311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6312. font-weight:400;
  6313. font-style:normal;
  6314. font-size:12px;
  6315. color:#555555;
  6316. }
  6317. #u10292 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:980px;
  6321. top:290px;
  6322. width:55px;
  6323. height:30px;
  6324. display:flex;
  6325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6326. font-weight:400;
  6327. font-style:normal;
  6328. font-size:12px;
  6329. color:#555555;
  6330. }
  6331. #u10292 .text {
  6332. position:absolute;
  6333. align-self:center;
  6334. padding:5px 15px 5px 15px;
  6335. box-sizing:border-box;
  6336. width:100%;
  6337. }
  6338. #u10292_text {
  6339. border-width:0px;
  6340. white-space:nowrap;
  6341. text-transform:none;
  6342. }
  6343. #u10293 {
  6344. border-width:0px;
  6345. position:absolute;
  6346. left:0px;
  6347. top:0px;
  6348. width:0px;
  6349. height:0px;
  6350. }
  6351. #u10294_div {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:0px;
  6355. top:0px;
  6356. width:140px;
  6357. height:30px;
  6358. background:inherit;
  6359. background-color:rgba(255, 255, 255, 1);
  6360. box-sizing:border-box;
  6361. border-width:1px;
  6362. border-style:solid;
  6363. border-color:rgba(215, 215, 215, 1);
  6364. border-radius:4px;
  6365. -moz-box-shadow:none;
  6366. -webkit-box-shadow:none;
  6367. box-shadow:none;
  6368. font-size:11px;
  6369. }
  6370. #u10294 {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:88px;
  6374. top:370px;
  6375. width:140px;
  6376. height:30px;
  6377. display:flex;
  6378. font-size:11px;
  6379. }
  6380. #u10294 .text {
  6381. position:absolute;
  6382. align-self:center;
  6383. padding:2px 2px 2px 2px;
  6384. box-sizing:border-box;
  6385. width:100%;
  6386. }
  6387. #u10294_text {
  6388. border-width:0px;
  6389. word-wrap:break-word;
  6390. text-transform:none;
  6391. visibility:hidden;
  6392. }
  6393. #u10295_input {
  6394. position:absolute;
  6395. left:0px;
  6396. top:0px;
  6397. width:125px;
  6398. height:23px;
  6399. padding:2px 2px 2px 2px;
  6400. font-family:'ArialMT', 'Arial', sans-serif;
  6401. font-weight:400;
  6402. font-style:normal;
  6403. font-size:11px;
  6404. letter-spacing:normal;
  6405. color:#AAAAAA;
  6406. vertical-align:none;
  6407. text-align:left;
  6408. text-transform:none;
  6409. background-color:transparent;
  6410. border-color:transparent;
  6411. }
  6412. #u10295_input.disabled {
  6413. position:absolute;
  6414. left:0px;
  6415. top:0px;
  6416. width:125px;
  6417. height:23px;
  6418. padding:2px 2px 2px 2px;
  6419. font-family:'ArialMT', 'Arial', sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:11px;
  6423. letter-spacing:normal;
  6424. color:#AAAAAA;
  6425. vertical-align:none;
  6426. text-align:left;
  6427. text-transform:none;
  6428. background-color:transparent;
  6429. border-color:transparent;
  6430. }
  6431. #u10295_div {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:0px;
  6435. top:0px;
  6436. width:125px;
  6437. height:23px;
  6438. background:inherit;
  6439. background-color:rgba(255, 255, 255, 1);
  6440. border:none;
  6441. border-radius:0px;
  6442. -moz-box-shadow:none;
  6443. -webkit-box-shadow:none;
  6444. box-shadow:none;
  6445. font-size:11px;
  6446. color:#AAAAAA;
  6447. }
  6448. #u10295 {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:94px;
  6452. top:372px;
  6453. width:125px;
  6454. height:23px;
  6455. display:flex;
  6456. font-size:11px;
  6457. color:#AAAAAA;
  6458. }
  6459. #u10295 .text {
  6460. position:absolute;
  6461. align-self:flex-start;
  6462. padding:2px 2px 2px 2px;
  6463. box-sizing:border-box;
  6464. width:100%;
  6465. }
  6466. #u10295_div.disabled {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:0px;
  6470. top:0px;
  6471. width:125px;
  6472. height:23px;
  6473. background:inherit;
  6474. background-color:rgba(240, 240, 240, 1);
  6475. border:none;
  6476. border-radius:0px;
  6477. -moz-box-shadow:none;
  6478. -webkit-box-shadow:none;
  6479. box-shadow:none;
  6480. font-size:11px;
  6481. color:#AAAAAA;
  6482. }
  6483. #u10295.disabled {
  6484. }
  6485. .u10295_input_option {
  6486. font-size:11px;
  6487. }
  6488. #u10296 {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:0px;
  6492. top:0px;
  6493. width:0px;
  6494. height:0px;
  6495. }
  6496. #u10297_div {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:0px;
  6500. top:0px;
  6501. width:947px;
  6502. height:150px;
  6503. background:inherit;
  6504. background-color:rgba(242, 242, 242, 0.498039215686275);
  6505. border:none;
  6506. border-radius:6px;
  6507. -moz-box-shadow:none;
  6508. -webkit-box-shadow:none;
  6509. box-shadow:none;
  6510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6511. font-weight:400;
  6512. font-style:normal;
  6513. font-size:18px;
  6514. color:#555555;
  6515. text-align:left;
  6516. line-height:40px;
  6517. }
  6518. #u10297 {
  6519. border-width:0px;
  6520. position:absolute;
  6521. left:88px;
  6522. top:108px;
  6523. width:947px;
  6524. height:150px;
  6525. display:flex;
  6526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6527. font-weight:400;
  6528. font-style:normal;
  6529. font-size:18px;
  6530. color:#555555;
  6531. text-align:left;
  6532. line-height:40px;
  6533. }
  6534. #u10297 .text {
  6535. position:absolute;
  6536. align-self:center;
  6537. padding:2px 2px 2px 30px;
  6538. box-sizing:border-box;
  6539. width:100%;
  6540. }
  6541. #u10297_text {
  6542. border-width:0px;
  6543. word-wrap:break-word;
  6544. text-transform:none;
  6545. visibility:hidden;
  6546. }
  6547. #u10298_div {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:0px;
  6551. top:0px;
  6552. width:187px;
  6553. height:50px;
  6554. background:inherit;
  6555. background-color:rgba(127, 127, 127, 0);
  6556. border:none;
  6557. border-radius:3px;
  6558. -moz-box-shadow:none;
  6559. -webkit-box-shadow:none;
  6560. box-shadow:none;
  6561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6562. font-weight:400;
  6563. font-style:normal;
  6564. font-size:12px;
  6565. line-height:25px;
  6566. }
  6567. #u10298 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:695px;
  6571. top:133px;
  6572. width:187px;
  6573. height:50px;
  6574. display:flex;
  6575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6576. font-weight:400;
  6577. font-style:normal;
  6578. font-size:12px;
  6579. line-height:25px;
  6580. }
  6581. #u10298 .text {
  6582. position:absolute;
  6583. align-self:center;
  6584. padding:0px 0px 0px 0px;
  6585. box-sizing:border-box;
  6586. width:100%;
  6587. }
  6588. #u10298_text {
  6589. border-width:0px;
  6590. white-space:nowrap;
  6591. text-transform:none;
  6592. }
  6593. #u10299_div {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:0px;
  6597. top:0px;
  6598. width:88px;
  6599. height:17px;
  6600. background:inherit;
  6601. background-color:rgba(127, 127, 127, 0);
  6602. border:none;
  6603. border-radius:3px;
  6604. -moz-box-shadow:none;
  6605. -webkit-box-shadow:none;
  6606. box-shadow:none;
  6607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6608. font-weight:400;
  6609. font-style:normal;
  6610. font-size:12px;
  6611. }
  6612. #u10299 {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:118px;
  6616. top:173px;
  6617. width:88px;
  6618. height:17px;
  6619. display:flex;
  6620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6621. font-weight:400;
  6622. font-style:normal;
  6623. font-size:12px;
  6624. }
  6625. #u10299 .text {
  6626. position:absolute;
  6627. align-self:center;
  6628. padding:0px 0px 0px 0px;
  6629. box-sizing:border-box;
  6630. width:100%;
  6631. }
  6632. #u10299_text {
  6633. border-width:0px;
  6634. white-space:nowrap;
  6635. text-transform:none;
  6636. }
  6637. #u10300_div {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:0px;
  6641. top:0px;
  6642. width:98px;
  6643. height:17px;
  6644. background:inherit;
  6645. background-color:rgba(127, 127, 127, 0);
  6646. border:none;
  6647. border-radius:3px;
  6648. -moz-box-shadow:none;
  6649. -webkit-box-shadow:none;
  6650. box-shadow:none;
  6651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6652. font-weight:400;
  6653. font-style:normal;
  6654. font-size:12px;
  6655. }
  6656. #u10300 {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:233px;
  6660. top:173px;
  6661. width:98px;
  6662. height:17px;
  6663. display:flex;
  6664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6665. font-weight:400;
  6666. font-style:normal;
  6667. font-size:12px;
  6668. }
  6669. #u10300 .text {
  6670. position:absolute;
  6671. align-self:center;
  6672. padding:0px 0px 0px 0px;
  6673. box-sizing:border-box;
  6674. width:100%;
  6675. }
  6676. #u10300_text {
  6677. border-width:0px;
  6678. white-space:nowrap;
  6679. text-transform:none;
  6680. }
  6681. #u10301_div {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:0px;
  6685. top:0px;
  6686. width:162px;
  6687. height:25px;
  6688. background:inherit;
  6689. background-color:rgba(255, 255, 255, 0);
  6690. border:none;
  6691. border-radius:0px;
  6692. -moz-box-shadow:none;
  6693. -webkit-box-shadow:none;
  6694. box-shadow:none;
  6695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6696. font-weight:400;
  6697. font-style:normal;
  6698. }
  6699. #u10301 {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:118px;
  6703. top:128px;
  6704. width:162px;
  6705. height:25px;
  6706. display:flex;
  6707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6708. font-weight:400;
  6709. font-style:normal;
  6710. }
  6711. #u10301 .text {
  6712. position:absolute;
  6713. align-self:flex-start;
  6714. padding:0px 0px 0px 0px;
  6715. box-sizing:border-box;
  6716. width:100%;
  6717. }
  6718. #u10301_text {
  6719. border-width:0px;
  6720. white-space:nowrap;
  6721. text-transform:none;
  6722. }
  6723. #u10302_div {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:0px;
  6727. top:0px;
  6728. width:110px;
  6729. height:17px;
  6730. background:inherit;
  6731. background-color:rgba(127, 127, 127, 0);
  6732. border:none;
  6733. border-radius:3px;
  6734. -moz-box-shadow:none;
  6735. -webkit-box-shadow:none;
  6736. box-shadow:none;
  6737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6738. font-weight:400;
  6739. font-style:normal;
  6740. font-size:12px;
  6741. }
  6742. #u10302 {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:362px;
  6746. top:173px;
  6747. width:110px;
  6748. height:17px;
  6749. display:flex;
  6750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6751. font-weight:400;
  6752. font-style:normal;
  6753. font-size:12px;
  6754. }
  6755. #u10302 .text {
  6756. position:absolute;
  6757. align-self:center;
  6758. padding:0px 0px 0px 0px;
  6759. box-sizing:border-box;
  6760. width:100%;
  6761. }
  6762. #u10302_text {
  6763. border-width:0px;
  6764. white-space:nowrap;
  6765. text-transform:none;
  6766. }
  6767. #u10303_div {
  6768. border-width:0px;
  6769. position:absolute;
  6770. left:0px;
  6771. top:0px;
  6772. width:100px;
  6773. height:30px;
  6774. background:inherit;
  6775. background-color:rgba(41, 143, 255, 1);
  6776. border:none;
  6777. border-radius:4px;
  6778. -moz-box-shadow:none;
  6779. -webkit-box-shadow:none;
  6780. box-shadow:none;
  6781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6782. font-weight:400;
  6783. font-style:normal;
  6784. font-size:14px;
  6785. color:#FFFFFF;
  6786. }
  6787. #u10303 {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:118px;
  6791. top:210px;
  6792. width:100px;
  6793. height:30px;
  6794. display:flex;
  6795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6796. font-weight:400;
  6797. font-style:normal;
  6798. font-size:14px;
  6799. color:#FFFFFF;
  6800. }
  6801. #u10303 .text {
  6802. position:absolute;
  6803. align-self:center;
  6804. padding:5px 15px 5px 15px;
  6805. box-sizing:border-box;
  6806. width:100%;
  6807. }
  6808. #u10303_text {
  6809. border-width:0px;
  6810. word-wrap:break-word;
  6811. text-transform:none;
  6812. }
  6813. #u10304_div {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:0px;
  6817. top:0px;
  6818. width:100px;
  6819. height:30px;
  6820. background:inherit;
  6821. background-color:rgba(245, 154, 35, 1);
  6822. border:none;
  6823. border-radius:4px;
  6824. -moz-box-shadow:none;
  6825. -webkit-box-shadow:none;
  6826. box-shadow:none;
  6827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:14px;
  6831. color:#FFFFFF;
  6832. }
  6833. #u10304 {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:228px;
  6837. top:210px;
  6838. width:100px;
  6839. height:30px;
  6840. display:flex;
  6841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6842. font-weight:400;
  6843. font-style:normal;
  6844. font-size:14px;
  6845. color:#FFFFFF;
  6846. }
  6847. #u10304 .text {
  6848. position:absolute;
  6849. align-self:center;
  6850. padding:5px 15px 5px 15px;
  6851. box-sizing:border-box;
  6852. width:100%;
  6853. }
  6854. #u10304_text {
  6855. border-width:0px;
  6856. word-wrap:break-word;
  6857. text-transform:none;
  6858. }
  6859. #u10305 {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:0px;
  6864. width:0px;
  6865. height:0px;
  6866. }
  6867. #u10306_div {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:140px;
  6873. height:30px;
  6874. background:inherit;
  6875. background-color:rgba(255, 255, 255, 1);
  6876. box-sizing:border-box;
  6877. border-width:1px;
  6878. border-style:solid;
  6879. border-color:rgba(201, 201, 201, 1);
  6880. border-radius:4px;
  6881. -moz-box-shadow:none;
  6882. -webkit-box-shadow:none;
  6883. box-shadow:none;
  6884. font-family:'Microsoft YaHei', sans-serif;
  6885. font-weight:400;
  6886. font-style:normal;
  6887. font-size:14px;
  6888. color:#CCCCCC;
  6889. text-align:left;
  6890. }
  6891. #u10306 {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:688px;
  6895. top:330px;
  6896. width:140px;
  6897. height:30px;
  6898. display:flex;
  6899. font-family:'Microsoft YaHei', sans-serif;
  6900. font-weight:400;
  6901. font-style:normal;
  6902. font-size:14px;
  6903. color:#CCCCCC;
  6904. text-align:left;
  6905. }
  6906. #u10306 .text {
  6907. position:absolute;
  6908. align-self:center;
  6909. padding:2px 8px 2px 8px;
  6910. box-sizing:border-box;
  6911. width:100%;
  6912. }
  6913. #u10306_text {
  6914. border-width:0px;
  6915. word-wrap:break-word;
  6916. text-transform:none;
  6917. visibility:hidden;
  6918. }
  6919. #u10307_input {
  6920. position:absolute;
  6921. left:0px;
  6922. top:0px;
  6923. width:127px;
  6924. height:25px;
  6925. padding:2px 2px 2px 2px;
  6926. font-family:'Microsoft YaHei', sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:10px;
  6930. letter-spacing:normal;
  6931. color:#000000;
  6932. vertical-align:none;
  6933. text-align:left;
  6934. text-transform:none;
  6935. background-color:transparent;
  6936. border-color:transparent;
  6937. }
  6938. #u10307_input.disabled {
  6939. position:absolute;
  6940. left:0px;
  6941. top:0px;
  6942. width:127px;
  6943. height:25px;
  6944. padding:2px 2px 2px 2px;
  6945. font-family:'Microsoft YaHei', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. font-size:10px;
  6949. letter-spacing:normal;
  6950. color:#000000;
  6951. vertical-align:none;
  6952. text-align:left;
  6953. text-transform:none;
  6954. background-color:transparent;
  6955. border-color:transparent;
  6956. }
  6957. #u10307_div {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:0px;
  6961. top:0px;
  6962. width:127px;
  6963. height:25px;
  6964. background:inherit;
  6965. background-color:rgba(255, 255, 255, 1);
  6966. border:none;
  6967. border-radius:0px;
  6968. -moz-box-shadow:none;
  6969. -webkit-box-shadow:none;
  6970. box-shadow:none;
  6971. font-family:'Microsoft YaHei', sans-serif;
  6972. font-weight:400;
  6973. font-style:normal;
  6974. font-size:10px;
  6975. }
  6976. #u10307 {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:696px;
  6980. top:331px;
  6981. width:127px;
  6982. height:25px;
  6983. display:flex;
  6984. font-family:'Microsoft YaHei', sans-serif;
  6985. font-weight:400;
  6986. font-style:normal;
  6987. font-size:10px;
  6988. }
  6989. #u10307 .text {
  6990. position:absolute;
  6991. align-self:center;
  6992. padding:2px 2px 2px 2px;
  6993. box-sizing:border-box;
  6994. width:100%;
  6995. }
  6996. #u10307_div.disabled {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:127px;
  7002. height:25px;
  7003. background:inherit;
  7004. background-color:rgba(240, 240, 240, 1);
  7005. border:none;
  7006. border-radius:0px;
  7007. -moz-box-shadow:none;
  7008. -webkit-box-shadow:none;
  7009. box-shadow:none;
  7010. font-family:'Microsoft YaHei', sans-serif;
  7011. font-weight:400;
  7012. font-style:normal;
  7013. font-size:10px;
  7014. }
  7015. #u10307.disabled {
  7016. }
  7017. #u10308 {
  7018. border-width:0px;
  7019. position:absolute;
  7020. left:0px;
  7021. top:0px;
  7022. width:0px;
  7023. height:0px;
  7024. }
  7025. #u10309_div {
  7026. border-width:0px;
  7027. position:absolute;
  7028. left:0px;
  7029. top:0px;
  7030. width:140px;
  7031. height:30px;
  7032. background:inherit;
  7033. background-color:rgba(255, 255, 255, 1);
  7034. box-sizing:border-box;
  7035. border-width:1px;
  7036. border-style:solid;
  7037. border-color:rgba(215, 215, 215, 1);
  7038. border-radius:4px;
  7039. -moz-box-shadow:none;
  7040. -webkit-box-shadow:none;
  7041. box-shadow:none;
  7042. font-size:11px;
  7043. }
  7044. #u10309 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:538px;
  7048. top:330px;
  7049. width:140px;
  7050. height:30px;
  7051. display:flex;
  7052. font-size:11px;
  7053. }
  7054. #u10309 .text {
  7055. position:absolute;
  7056. align-self:center;
  7057. padding:2px 2px 2px 2px;
  7058. box-sizing:border-box;
  7059. width:100%;
  7060. }
  7061. #u10309_text {
  7062. border-width:0px;
  7063. word-wrap:break-word;
  7064. text-transform:none;
  7065. visibility:hidden;
  7066. }
  7067. #u10310_input {
  7068. position:absolute;
  7069. left:0px;
  7070. top:0px;
  7071. width:120px;
  7072. height:23px;
  7073. padding:2px 2px 2px 2px;
  7074. font-family:'ArialMT', 'Arial', sans-serif;
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:11px;
  7078. letter-spacing:normal;
  7079. color:#AAAAAA;
  7080. vertical-align:none;
  7081. text-align:left;
  7082. text-transform:none;
  7083. background-color:transparent;
  7084. border-color:transparent;
  7085. }
  7086. #u10310_input.disabled {
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:120px;
  7091. height:23px;
  7092. padding:2px 2px 2px 2px;
  7093. font-family:'ArialMT', 'Arial', sans-serif;
  7094. font-weight:400;
  7095. font-style:normal;
  7096. font-size:11px;
  7097. letter-spacing:normal;
  7098. color:#AAAAAA;
  7099. vertical-align:none;
  7100. text-align:left;
  7101. text-transform:none;
  7102. background-color:transparent;
  7103. border-color:transparent;
  7104. }
  7105. #u10310_div {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:0px;
  7109. top:0px;
  7110. width:120px;
  7111. height:23px;
  7112. background:inherit;
  7113. background-color:rgba(255, 255, 255, 1);
  7114. border:none;
  7115. border-radius:0px;
  7116. -moz-box-shadow:none;
  7117. -webkit-box-shadow:none;
  7118. box-shadow:none;
  7119. font-size:11px;
  7120. color:#AAAAAA;
  7121. }
  7122. #u10310 {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:545px;
  7126. top:332px;
  7127. width:120px;
  7128. height:23px;
  7129. display:flex;
  7130. font-size:11px;
  7131. color:#AAAAAA;
  7132. }
  7133. #u10310 .text {
  7134. position:absolute;
  7135. align-self:flex-start;
  7136. padding:2px 2px 2px 2px;
  7137. box-sizing:border-box;
  7138. width:100%;
  7139. }
  7140. #u10310_div.disabled {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:0px;
  7144. top:0px;
  7145. width:120px;
  7146. height:23px;
  7147. background:inherit;
  7148. background-color:rgba(240, 240, 240, 1);
  7149. border:none;
  7150. border-radius:0px;
  7151. -moz-box-shadow:none;
  7152. -webkit-box-shadow:none;
  7153. box-shadow:none;
  7154. font-size:11px;
  7155. color:#AAAAAA;
  7156. }
  7157. #u10310.disabled {
  7158. }
  7159. .u10310_input_option {
  7160. font-size:11px;
  7161. }
  7162. #u10311_div {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:0px;
  7166. top:0px;
  7167. width:40px;
  7168. height:40px;
  7169. background:inherit;
  7170. background-color:rgba(255, 255, 255, 0);
  7171. border:none;
  7172. border-top:0px;
  7173. border-right:0px;
  7174. border-bottom:0px;
  7175. border-radius:0px;
  7176. border-top-left-radius:0px;
  7177. border-bottom-left-radius:0px;
  7178. -moz-box-shadow:none;
  7179. -webkit-box-shadow:none;
  7180. box-shadow:none;
  7181. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7182. font-weight:500;
  7183. font-style:normal;
  7184. font-size:18px;
  7185. text-align:center;
  7186. }
  7187. #u10311 {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:1028px;
  7191. top:45px;
  7192. width:40px;
  7193. height:40px;
  7194. display:flex;
  7195. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7196. font-weight:500;
  7197. font-style:normal;
  7198. font-size:18px;
  7199. text-align:center;
  7200. }
  7201. #u10311 .text {
  7202. position:absolute;
  7203. align-self:center;
  7204. padding:5px 10px 5px 0px;
  7205. box-sizing:border-box;
  7206. width:100%;
  7207. }
  7208. #u10311_text {
  7209. border-width:0px;
  7210. word-wrap:break-word;
  7211. text-transform:none;
  7212. }