styles.css 215 KB

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