styles.css 215 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498
  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. #u10713_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. #u10713 {
  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. #u10713 .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. #u10713_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u10714_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. #u10714 {
  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. #u10714 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u10714_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u10715 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u10716_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u10716 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u10716 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u10716_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u10717_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. #u10717 {
  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. #u10717 .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. #u10717_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u10718_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. #u10718 {
  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. #u10718 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u10718_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u10719_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. #u10719 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u10719 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u10719_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u10720 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u10721_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. #u10721 {
  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. #u10721 .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. #u10721_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u10722_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u10722 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u10722 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u10722_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u10723 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u10724_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. #u10724 {
  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. #u10724 .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. #u10724_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u10725_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u10725 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u10725 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u10725_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u10726 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u10727_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. #u10727 {
  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. #u10727 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u10727_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u10728_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u10728 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u10728 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u10728_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u10729 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u10730_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. #u10730 {
  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. #u10730 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u10730_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u10731_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u10731 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u10731 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u10731_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u10732 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u10733_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. #u10733 {
  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. #u10733 .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. #u10733_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u10734_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u10734 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u10734 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u10734_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u10735 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u10736_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. #u10736 {
  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. #u10736 .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. #u10736_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u10737_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u10737 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u10737 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u10737_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u10738 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u10739_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. #u10739 {
  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. #u10739 .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. #u10739_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u10740_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u10740 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u10740 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u10740_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u10741 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u10742_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. #u10742 {
  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. #u10742 .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. #u10742_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u10743_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u10743 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u10743 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u10743_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u10744 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u10745_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. #u10745 {
  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. #u10745 .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. #u10745_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u10746_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u10746 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u10746 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u10746_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u10747_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. #u10747_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. #u10747_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. #u10747 {
  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. #u10747 .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. #u10747_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. #u10747.disabled {
  1100. }
  1101. .u10747_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u10748_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u10748 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u10748 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u10748_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u10749_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. #u10749 {
  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. #u10749 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u10749_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u10750_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u10750 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u10750 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u10750_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u10751 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u10752_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. #u10752 {
  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. #u10752 .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. #u10752_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u10753_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u10753 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u10753 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u10753_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u10754 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u10755_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. #u10755 {
  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. #u10755 .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. #u10755_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u10756_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u10756 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u10756 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u10756_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u10757 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u10758_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. #u10758 {
  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. #u10758 .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. #u10758_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u10759_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u10759 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u10759 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u10759_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u10760 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u10761_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. #u10761 {
  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. #u10761 .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. #u10761_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u10762_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u10762 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u10762 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u10762_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u10763 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u10764_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. #u10764 {
  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. #u10764 .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. #u10764_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u10765_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u10765 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u10765 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u10765_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u10766_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. #u10766 {
  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. #u10766 .text {
  1657. position:absolute;
  1658. align-self:center;
  1659. padding:2px 2px 2px 2px;
  1660. box-sizing:border-box;
  1661. width:100%;
  1662. }
  1663. #u10766_text {
  1664. border-width:0px;
  1665. word-wrap:break-word;
  1666. text-transform:none;
  1667. visibility:hidden;
  1668. }
  1669. #u10767_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. #u10767 {
  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. #u10767 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u10767_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u10768_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. #u10768 {
  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. #u10768 .text {
  1746. position:absolute;
  1747. align-self:center;
  1748. padding:0px 0px 0px 0px;
  1749. box-sizing:border-box;
  1750. width:100%;
  1751. }
  1752. #u10768_text {
  1753. border-width:0px;
  1754. white-space:nowrap;
  1755. text-transform:none;
  1756. }
  1757. #u10769_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. #u10769 {
  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. #u10769 .text {
  1792. position:absolute;
  1793. align-self:center;
  1794. padding:5px 15px 5px 15px;
  1795. box-sizing:border-box;
  1796. width:100%;
  1797. }
  1798. #u10769_text {
  1799. border-width:0px;
  1800. white-space:nowrap;
  1801. text-transform:none;
  1802. }
  1803. #u10770_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. #u10770 {
  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. #u10770 .text {
  1841. position:absolute;
  1842. align-self:center;
  1843. padding:5px 15px 5px 15px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u10770_text {
  1848. border-width:0px;
  1849. white-space:nowrap;
  1850. text-transform:none;
  1851. }
  1852. #u10771 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:0px;
  1858. height:0px;
  1859. }
  1860. #u10772_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. #u10772 {
  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. #u10772 .text {
  1900. position:absolute;
  1901. align-self:center;
  1902. padding:2px 8px 2px 8px;
  1903. box-sizing:border-box;
  1904. width:100%;
  1905. }
  1906. #u10772_text {
  1907. border-width:0px;
  1908. word-wrap:break-word;
  1909. text-transform:none;
  1910. visibility:hidden;
  1911. }
  1912. #u10773_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. #u10773_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. #u10773_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. #u10773 {
  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. #u10773 .text {
  1983. position:absolute;
  1984. align-self:center;
  1985. padding:2px 2px 2px 2px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u10773_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. #u10773.disabled {
  2009. }
  2010. #u10774 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:0px;
  2016. height:0px;
  2017. }
  2018. #u10775_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. #u10775 {
  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. #u10775 .text {
  2048. position:absolute;
  2049. align-self:center;
  2050. padding:2px 2px 2px 2px;
  2051. box-sizing:border-box;
  2052. width:100%;
  2053. }
  2054. #u10775_text {
  2055. border-width:0px;
  2056. word-wrap:break-word;
  2057. text-transform:none;
  2058. visibility:hidden;
  2059. }
  2060. #u10776_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. #u10776_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. #u10776_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. #u10776 {
  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. #u10776 .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. #u10776_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. #u10776.disabled {
  2151. }
  2152. .u10776_input_option {
  2153. font-size:11px;
  2154. }
  2155. #u10777 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:0px;
  2161. height:0px;
  2162. }
  2163. #u10778_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. #u10778 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:120px;
  2182. top:50px;
  2183. width:200px;
  2184. height:1192px;
  2185. display:flex;
  2186. }
  2187. #u10778 .text {
  2188. position:absolute;
  2189. align-self:center;
  2190. padding:2px 2px 2px 2px;
  2191. box-sizing:border-box;
  2192. width:100%;
  2193. }
  2194. #u10778_text {
  2195. border-width:0px;
  2196. word-wrap:break-word;
  2197. text-transform:none;
  2198. visibility:hidden;
  2199. }
  2200. #u10779_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. #u10779 {
  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. #u10779 .text {
  2233. position:absolute;
  2234. align-self:center;
  2235. padding:0px 0px 0px 20px;
  2236. box-sizing:border-box;
  2237. width:100%;
  2238. }
  2239. #u10779_text {
  2240. border-width:0px;
  2241. word-wrap:break-word;
  2242. text-transform:none;
  2243. }
  2244. #u10780_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. #u10780 {
  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. #u10780 .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. #u10780_text {
  2284. border-width:0px;
  2285. white-space:nowrap;
  2286. text-transform:none;
  2287. }
  2288. #u10781_img {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:201px;
  2294. height:2px;
  2295. }
  2296. #u10781 {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:120px;
  2300. top:212px;
  2301. width:200px;
  2302. height:1px;
  2303. display:flex;
  2304. }
  2305. #u10781 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 2px 2px 2px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u10781_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. visibility:hidden;
  2317. }
  2318. #u10782_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. #u10782 {
  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. #u10782 .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. #u10782_text {
  2358. border-width:0px;
  2359. white-space:nowrap;
  2360. text-transform:none;
  2361. }
  2362. #u10783_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. #u10783 {
  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. #u10783 .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. #u10783_text {
  2404. border-width:0px;
  2405. white-space:nowrap;
  2406. text-transform:none;
  2407. }
  2408. #u10784_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. #u10784 {
  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. #u10784 .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. #u10784_text {
  2450. border-width:0px;
  2451. white-space:nowrap;
  2452. text-transform:none;
  2453. }
  2454. #u10785_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. #u10785 {
  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. #u10785 .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. #u10785_text {
  2494. border-width:0px;
  2495. white-space:nowrap;
  2496. text-transform:none;
  2497. }
  2498. #u10786_img {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:201px;
  2504. height:2px;
  2505. }
  2506. #u10786 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:120px;
  2510. top:361px;
  2511. width:200px;
  2512. height:1px;
  2513. display:flex;
  2514. }
  2515. #u10786 .text {
  2516. position:absolute;
  2517. align-self:center;
  2518. padding:2px 2px 2px 2px;
  2519. box-sizing:border-box;
  2520. width:100%;
  2521. }
  2522. #u10786_text {
  2523. border-width:0px;
  2524. word-wrap:break-word;
  2525. text-transform:none;
  2526. visibility:hidden;
  2527. }
  2528. #u10787_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. #u10787 {
  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. #u10787 .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. #u10787_text {
  2570. border-width:0px;
  2571. white-space:nowrap;
  2572. text-transform:none;
  2573. }
  2574. #u10788_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. #u10788 {
  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. #u10788 .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. #u10788_text {
  2614. border-width:0px;
  2615. white-space:nowrap;
  2616. text-transform:none;
  2617. }
  2618. #u10789_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. #u10789 {
  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. #u10789 .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. #u10789_text {
  2658. border-width:0px;
  2659. white-space:nowrap;
  2660. text-transform:none;
  2661. }
  2662. #u10790_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. #u10790 {
  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. #u10790 .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. #u10790_text {
  2702. border-width:0px;
  2703. white-space:nowrap;
  2704. text-transform:none;
  2705. }
  2706. #u10791_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. #u10791 {
  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. #u10791 .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. #u10791_text {
  2746. border-width:0px;
  2747. white-space:nowrap;
  2748. text-transform:none;
  2749. }
  2750. #u10792_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. #u10792 {
  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. #u10792 .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. #u10792_text {
  2790. border-width:0px;
  2791. white-space:nowrap;
  2792. text-transform:none;
  2793. }
  2794. #u10793_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. #u10793 {
  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. #u10793 .text {
  2834. position:absolute;
  2835. align-self:center;
  2836. padding:0px 0px 0px 0px;
  2837. box-sizing:border-box;
  2838. width:100%;
  2839. }
  2840. #u10793_text {
  2841. border-width:0px;
  2842. white-space:nowrap;
  2843. text-transform:none;
  2844. }
  2845. #u10794_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. #u10794 {
  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. #u10794 .text {
  2883. position:absolute;
  2884. align-self:center;
  2885. padding:0px 0px 0px 0px;
  2886. box-sizing:border-box;
  2887. width:100%;
  2888. }
  2889. #u10794_text {
  2890. border-width:0px;
  2891. white-space:nowrap;
  2892. text-transform:none;
  2893. }
  2894. #u10795_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. #u10795 {
  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. #u10795 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:2px 2px 2px 2px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u10795_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. visibility:hidden;
  2932. }
  2933. #u10796_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. #u10796 {
  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. #u10796 .text {
  2960. position:absolute;
  2961. align-self:center;
  2962. padding:2px 2px 2px 2px;
  2963. box-sizing:border-box;
  2964. width:100%;
  2965. }
  2966. #u10796_text {
  2967. border-width:0px;
  2968. word-wrap:break-word;
  2969. text-transform:none;
  2970. visibility:hidden;
  2971. }
  2972. #u10797_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. #u10797 {
  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. #u10797 .text {
  3010. position:absolute;
  3011. align-self:center;
  3012. padding:0px 0px 0px 0px;
  3013. box-sizing:border-box;
  3014. width:100%;
  3015. }
  3016. #u10797_text {
  3017. border-width:0px;
  3018. white-space:nowrap;
  3019. text-transform:none;
  3020. }
  3021. #u10798_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. #u10798 {
  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. #u10798 .text {
  3056. position:absolute;
  3057. align-self:center;
  3058. padding:5px 15px 5px 15px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u10798_text {
  3063. border-width:0px;
  3064. white-space:nowrap;
  3065. text-transform:none;
  3066. }
  3067. #u10799_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. #u10799 {
  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. #u10799 .text {
  3105. position:absolute;
  3106. align-self:center;
  3107. padding:5px 15px 5px 15px;
  3108. box-sizing:border-box;
  3109. width:100%;
  3110. }
  3111. #u10799_text {
  3112. border-width:0px;
  3113. white-space:nowrap;
  3114. text-transform:none;
  3115. }
  3116. #u10800 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:0px;
  3122. height:0px;
  3123. }
  3124. #u10801_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. #u10801 {
  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. #u10801 .text {
  3164. position:absolute;
  3165. align-self:center;
  3166. padding:2px 8px 2px 8px;
  3167. box-sizing:border-box;
  3168. width:100%;
  3169. }
  3170. #u10801_text {
  3171. border-width:0px;
  3172. word-wrap:break-word;
  3173. text-transform:none;
  3174. visibility:hidden;
  3175. }
  3176. #u10802_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. #u10802_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. #u10802_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. #u10802 {
  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. #u10802 .text {
  3247. position:absolute;
  3248. align-self:center;
  3249. padding:2px 2px 2px 2px;
  3250. box-sizing:border-box;
  3251. width:100%;
  3252. }
  3253. #u10802_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. #u10802.disabled {
  3273. }
  3274. #u10803 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:0px;
  3280. height:0px;
  3281. }
  3282. #u10804_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. #u10804 {
  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. #u10804 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:2px 2px 2px 2px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u10804_text {
  3319. border-width:0px;
  3320. word-wrap:break-word;
  3321. text-transform:none;
  3322. visibility:hidden;
  3323. }
  3324. #u10805_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. #u10805_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. #u10805_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. #u10805 {
  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. #u10805 .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. #u10805_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. #u10805.disabled {
  3415. }
  3416. .u10805_input_option {
  3417. font-size:11px;
  3418. }
  3419. #u10806_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. #u10806 {
  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. #u10806 .text {
  3457. position:absolute;
  3458. align-self:center;
  3459. padding:0px 0px 0px 0px;
  3460. box-sizing:border-box;
  3461. width:100%;
  3462. }
  3463. #u10806_text {
  3464. border-width:0px;
  3465. white-space:nowrap;
  3466. text-transform:none;
  3467. }
  3468. #u10807_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. #u10807 {
  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. #u10807 .text {
  3508. position:absolute;
  3509. align-self:center;
  3510. padding:0px 0px 0px 0px;
  3511. box-sizing:border-box;
  3512. width:100%;
  3513. }
  3514. #u10807_text {
  3515. border-width:0px;
  3516. white-space:nowrap;
  3517. text-transform:none;
  3518. }
  3519. #u10808 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:351px;
  3523. top:230px;
  3524. width:1222px;
  3525. height:363px;
  3526. }
  3527. #u10809_img {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:112px;
  3533. height:38px;
  3534. }
  3535. #u10809 {
  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. #u10809 .text {
  3550. position:absolute;
  3551. align-self:center;
  3552. padding:2px 2px 2px 0px;
  3553. box-sizing:border-box;
  3554. width:100%;
  3555. }
  3556. #u10809_text {
  3557. border-width:0px;
  3558. word-wrap:break-word;
  3559. text-transform:none;
  3560. }
  3561. #u10810_img {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:0px;
  3565. top:0px;
  3566. width:100px;
  3567. height:38px;
  3568. }
  3569. #u10810 {
  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. #u10810 .text {
  3584. position:absolute;
  3585. align-self:center;
  3586. padding:2px 2px 2px 0px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u10810_text {
  3591. border-width:0px;
  3592. word-wrap:break-word;
  3593. text-transform:none;
  3594. }
  3595. #u10811_img {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:0px;
  3599. top:0px;
  3600. width:100px;
  3601. height:38px;
  3602. }
  3603. #u10811 {
  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. #u10811 .text {
  3618. position:absolute;
  3619. align-self:center;
  3620. padding:2px 2px 2px 0px;
  3621. box-sizing:border-box;
  3622. width:100%;
  3623. }
  3624. #u10811_text {
  3625. border-width:0px;
  3626. word-wrap:break-word;
  3627. text-transform:none;
  3628. }
  3629. #u10812_img {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:0px;
  3633. top:0px;
  3634. width:114px;
  3635. height:38px;
  3636. }
  3637. #u10812 {
  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. #u10812 .text {
  3652. position:absolute;
  3653. align-self:center;
  3654. padding:2px 2px 2px 0px;
  3655. box-sizing:border-box;
  3656. width:100%;
  3657. }
  3658. #u10812_text {
  3659. border-width:0px;
  3660. word-wrap:break-word;
  3661. text-transform:none;
  3662. }
  3663. #u10813_img {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:0px;
  3667. top:0px;
  3668. width:100px;
  3669. height:38px;
  3670. }
  3671. #u10813 {
  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. #u10813 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:2px 2px 2px 0px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u10813_text {
  3693. border-width:0px;
  3694. word-wrap:break-word;
  3695. text-transform:none;
  3696. }
  3697. #u10814_img {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:112px;
  3703. height:38px;
  3704. }
  3705. #u10814 {
  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. #u10814 .text {
  3720. position:absolute;
  3721. align-self:center;
  3722. padding:2px 2px 2px 0px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u10814_text {
  3727. border-width:0px;
  3728. word-wrap:break-word;
  3729. text-transform:none;
  3730. }
  3731. #u10815_img {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:114px;
  3737. height:38px;
  3738. }
  3739. #u10815 {
  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. #u10815 .text {
  3754. position:absolute;
  3755. align-self:center;
  3756. padding:2px 2px 2px 0px;
  3757. box-sizing:border-box;
  3758. width:100%;
  3759. }
  3760. #u10815_text {
  3761. border-width:0px;
  3762. word-wrap:break-word;
  3763. text-transform:none;
  3764. }
  3765. #u10816_img {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:0px;
  3769. top:0px;
  3770. width:112px;
  3771. height:38px;
  3772. }
  3773. #u10816 {
  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. #u10816 .text {
  3788. position:absolute;
  3789. align-self:center;
  3790. padding:2px 2px 2px 0px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u10816_text {
  3795. border-width:0px;
  3796. word-wrap:break-word;
  3797. text-transform:none;
  3798. }
  3799. #u10817_img {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:114px;
  3805. height:38px;
  3806. }
  3807. #u10817 {
  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. #u10817 .text {
  3822. position:absolute;
  3823. align-self:center;
  3824. padding:2px 2px 2px 0px;
  3825. box-sizing:border-box;
  3826. width:100%;
  3827. }
  3828. #u10817_text {
  3829. border-width:0px;
  3830. word-wrap:break-word;
  3831. text-transform:none;
  3832. }
  3833. #u10818_img {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:114px;
  3839. height:38px;
  3840. }
  3841. #u10818 {
  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. #u10818 .text {
  3856. position:absolute;
  3857. align-self:center;
  3858. padding:2px 2px 2px 0px;
  3859. box-sizing:border-box;
  3860. width:100%;
  3861. }
  3862. #u10818_text {
  3863. border-width:0px;
  3864. word-wrap:break-word;
  3865. text-transform:none;
  3866. }
  3867. #u10819_img {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:130px;
  3873. height:38px;
  3874. }
  3875. #u10819 {
  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. #u10819 .text {
  3890. position:absolute;
  3891. align-self:center;
  3892. padding:2px 2px 2px 0px;
  3893. box-sizing:border-box;
  3894. width:100%;
  3895. }
  3896. #u10819_text {
  3897. border-width:0px;
  3898. word-wrap:break-word;
  3899. text-transform:none;
  3900. }
  3901. #u10820_img {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:112px;
  3907. height:38px;
  3908. }
  3909. #u10820 {
  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. #u10820 .text {
  3923. position:absolute;
  3924. align-self:center;
  3925. padding:2px 2px 2px 0px;
  3926. box-sizing:border-box;
  3927. width:100%;
  3928. }
  3929. #u10820_text {
  3930. border-width:0px;
  3931. word-wrap:break-word;
  3932. text-transform:none;
  3933. }
  3934. #u10821_img {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:100px;
  3940. height:38px;
  3941. }
  3942. #u10821 {
  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. #u10821 .text {
  3956. position:absolute;
  3957. align-self:center;
  3958. padding:2px 2px 2px 0px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u10821_text {
  3963. border-width:0px;
  3964. word-wrap:break-word;
  3965. text-transform:none;
  3966. visibility:hidden;
  3967. }
  3968. #u10822_img {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:100px;
  3974. height:38px;
  3975. }
  3976. #u10822 {
  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. #u10822 .text {
  3990. position:absolute;
  3991. align-self:center;
  3992. padding:2px 2px 2px 0px;
  3993. box-sizing:border-box;
  3994. width:100%;
  3995. }
  3996. #u10822_text {
  3997. border-width:0px;
  3998. word-wrap:break-word;
  3999. text-transform:none;
  4000. visibility:hidden;
  4001. }
  4002. #u10823_img {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:114px;
  4008. height:38px;
  4009. }
  4010. #u10823 {
  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. #u10823 .text {
  4024. position:absolute;
  4025. align-self:center;
  4026. padding:2px 2px 2px 0px;
  4027. box-sizing:border-box;
  4028. width:100%;
  4029. }
  4030. #u10823_text {
  4031. border-width:0px;
  4032. word-wrap:break-word;
  4033. text-transform:none;
  4034. visibility:hidden;
  4035. }
  4036. #u10824_img {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:0px;
  4040. top:0px;
  4041. width:100px;
  4042. height:38px;
  4043. }
  4044. #u10824 {
  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. #u10824 .text {
  4058. position:absolute;
  4059. align-self:center;
  4060. padding:2px 2px 2px 0px;
  4061. box-sizing:border-box;
  4062. width:100%;
  4063. }
  4064. #u10824_text {
  4065. border-width:0px;
  4066. word-wrap:break-word;
  4067. text-transform:none;
  4068. visibility:hidden;
  4069. }
  4070. #u10825_img {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:112px;
  4076. height:38px;
  4077. }
  4078. #u10825 {
  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. #u10825 .text {
  4092. position:absolute;
  4093. align-self:center;
  4094. padding:2px 2px 2px 0px;
  4095. box-sizing:border-box;
  4096. width:100%;
  4097. }
  4098. #u10825_text {
  4099. border-width:0px;
  4100. word-wrap:break-word;
  4101. text-transform:none;
  4102. }
  4103. #u10826_img {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:114px;
  4109. height:38px;
  4110. }
  4111. #u10826 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:638px;
  4115. top:38px;
  4116. width:114px;
  4117. height:38px;
  4118. display:flex;
  4119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4120. font-weight:400;
  4121. font-style:normal;
  4122. font-size:12px;
  4123. }
  4124. #u10826 .text {
  4125. position:absolute;
  4126. align-self:center;
  4127. padding:2px 2px 2px 0px;
  4128. box-sizing:border-box;
  4129. width:100%;
  4130. }
  4131. #u10826_text {
  4132. border-width:0px;
  4133. word-wrap:break-word;
  4134. text-transform:none;
  4135. }
  4136. #u10827_img {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:112px;
  4142. height:38px;
  4143. }
  4144. #u10827 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:752px;
  4148. top:38px;
  4149. width:112px;
  4150. height:38px;
  4151. display:flex;
  4152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:12px;
  4156. }
  4157. #u10827 .text {
  4158. position:absolute;
  4159. align-self:center;
  4160. padding:2px 2px 2px 0px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u10827_text {
  4165. border-width:0px;
  4166. word-wrap:break-word;
  4167. text-transform:none;
  4168. }
  4169. #u10828_img {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:114px;
  4175. height:38px;
  4176. }
  4177. #u10828 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:864px;
  4181. top:38px;
  4182. width:114px;
  4183. height:38px;
  4184. display:flex;
  4185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4186. font-weight:400;
  4187. font-style:normal;
  4188. font-size:12px;
  4189. }
  4190. #u10828 .text {
  4191. position:absolute;
  4192. align-self:center;
  4193. padding:2px 2px 2px 0px;
  4194. box-sizing:border-box;
  4195. width:100%;
  4196. }
  4197. #u10828_text {
  4198. border-width:0px;
  4199. word-wrap:break-word;
  4200. text-transform:none;
  4201. }
  4202. #u10829_img {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:0px;
  4206. top:0px;
  4207. width:114px;
  4208. height:38px;
  4209. }
  4210. #u10829 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:978px;
  4214. top:38px;
  4215. width:114px;
  4216. height:38px;
  4217. display:flex;
  4218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4219. font-weight:400;
  4220. font-style:normal;
  4221. font-size:12px;
  4222. }
  4223. #u10829 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 0px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u10829_text {
  4231. border-width:0px;
  4232. word-wrap:break-word;
  4233. text-transform:none;
  4234. }
  4235. #u10830_img {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:130px;
  4241. height:38px;
  4242. }
  4243. #u10830 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:1092px;
  4247. top:38px;
  4248. width:130px;
  4249. height:38px;
  4250. display:flex;
  4251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4252. font-weight:400;
  4253. font-style:normal;
  4254. font-size:12px;
  4255. color:#1890FF;
  4256. }
  4257. #u10830 .text {
  4258. position:absolute;
  4259. align-self:center;
  4260. padding:2px 2px 2px 0px;
  4261. box-sizing:border-box;
  4262. width:100%;
  4263. }
  4264. #u10830_text {
  4265. border-width:0px;
  4266. word-wrap:break-word;
  4267. text-transform:none;
  4268. }
  4269. #u10831_img {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:112px;
  4275. height:38px;
  4276. }
  4277. #u10831 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:0px;
  4281. top:76px;
  4282. width:112px;
  4283. height:38px;
  4284. display:flex;
  4285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4286. font-weight:400;
  4287. font-style:normal;
  4288. font-size:12px;
  4289. }
  4290. #u10831 .text {
  4291. position:absolute;
  4292. align-self:center;
  4293. padding:2px 2px 2px 0px;
  4294. box-sizing:border-box;
  4295. width:100%;
  4296. }
  4297. #u10831_text {
  4298. border-width:0px;
  4299. word-wrap:break-word;
  4300. text-transform:none;
  4301. visibility:hidden;
  4302. }
  4303. #u10832_img {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:0px;
  4307. top:0px;
  4308. width:100px;
  4309. height:38px;
  4310. }
  4311. #u10832 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:112px;
  4315. top:76px;
  4316. width:100px;
  4317. height:38px;
  4318. display:flex;
  4319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4320. font-weight:400;
  4321. font-style:normal;
  4322. font-size:12px;
  4323. }
  4324. #u10832 .text {
  4325. position:absolute;
  4326. align-self:center;
  4327. padding:2px 2px 2px 0px;
  4328. box-sizing:border-box;
  4329. width:100%;
  4330. }
  4331. #u10832_text {
  4332. border-width:0px;
  4333. word-wrap:break-word;
  4334. text-transform:none;
  4335. visibility:hidden;
  4336. }
  4337. #u10833_img {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:100px;
  4343. height:38px;
  4344. }
  4345. #u10833 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:212px;
  4349. top:76px;
  4350. width:100px;
  4351. height:38px;
  4352. display:flex;
  4353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4354. font-weight:400;
  4355. font-style:normal;
  4356. font-size:12px;
  4357. }
  4358. #u10833 .text {
  4359. position:absolute;
  4360. align-self:center;
  4361. padding:2px 2px 2px 0px;
  4362. box-sizing:border-box;
  4363. width:100%;
  4364. }
  4365. #u10833_text {
  4366. border-width:0px;
  4367. word-wrap:break-word;
  4368. text-transform:none;
  4369. visibility:hidden;
  4370. }
  4371. #u10834_img {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:0px;
  4375. top:0px;
  4376. width:114px;
  4377. height:38px;
  4378. }
  4379. #u10834 {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:312px;
  4383. top:76px;
  4384. width:114px;
  4385. height:38px;
  4386. display:flex;
  4387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4388. font-weight:400;
  4389. font-style:normal;
  4390. font-size:12px;
  4391. }
  4392. #u10834 .text {
  4393. position:absolute;
  4394. align-self:center;
  4395. padding:2px 2px 2px 0px;
  4396. box-sizing:border-box;
  4397. width:100%;
  4398. }
  4399. #u10834_text {
  4400. border-width:0px;
  4401. word-wrap:break-word;
  4402. text-transform:none;
  4403. visibility:hidden;
  4404. }
  4405. #u10835_img {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:100px;
  4411. height:38px;
  4412. }
  4413. #u10835 {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:426px;
  4417. top:76px;
  4418. width:100px;
  4419. height:38px;
  4420. display:flex;
  4421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4422. font-weight:400;
  4423. font-style:normal;
  4424. font-size:12px;
  4425. }
  4426. #u10835 .text {
  4427. position:absolute;
  4428. align-self:center;
  4429. padding:2px 2px 2px 0px;
  4430. box-sizing:border-box;
  4431. width:100%;
  4432. }
  4433. #u10835_text {
  4434. border-width:0px;
  4435. word-wrap:break-word;
  4436. text-transform:none;
  4437. visibility:hidden;
  4438. }
  4439. #u10836_img {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:0px;
  4443. top:0px;
  4444. width:112px;
  4445. height:38px;
  4446. }
  4447. #u10836 {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:526px;
  4451. top:76px;
  4452. width:112px;
  4453. height:38px;
  4454. display:flex;
  4455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:12px;
  4459. }
  4460. #u10836 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:2px 2px 2px 0px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u10836_text {
  4468. border-width:0px;
  4469. word-wrap:break-word;
  4470. text-transform:none;
  4471. visibility:hidden;
  4472. }
  4473. #u10837_img {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:114px;
  4479. height:38px;
  4480. }
  4481. #u10837 {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:638px;
  4485. top:76px;
  4486. width:114px;
  4487. height:38px;
  4488. display:flex;
  4489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:12px;
  4493. }
  4494. #u10837 .text {
  4495. position:absolute;
  4496. align-self:center;
  4497. padding:2px 2px 2px 0px;
  4498. box-sizing:border-box;
  4499. width:100%;
  4500. }
  4501. #u10837_text {
  4502. border-width:0px;
  4503. word-wrap:break-word;
  4504. text-transform:none;
  4505. visibility:hidden;
  4506. }
  4507. #u10838_img {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:112px;
  4513. height:38px;
  4514. }
  4515. #u10838 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:752px;
  4519. top:76px;
  4520. width:112px;
  4521. height:38px;
  4522. display:flex;
  4523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4524. font-weight:400;
  4525. font-style:normal;
  4526. font-size:12px;
  4527. }
  4528. #u10838 .text {
  4529. position:absolute;
  4530. align-self:center;
  4531. padding:2px 2px 2px 0px;
  4532. box-sizing:border-box;
  4533. width:100%;
  4534. }
  4535. #u10838_text {
  4536. border-width:0px;
  4537. word-wrap:break-word;
  4538. text-transform:none;
  4539. visibility:hidden;
  4540. }
  4541. #u10839_img {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:0px;
  4545. top:0px;
  4546. width:114px;
  4547. height:38px;
  4548. }
  4549. #u10839 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:864px;
  4553. top:76px;
  4554. width:114px;
  4555. height:38px;
  4556. display:flex;
  4557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:12px;
  4561. }
  4562. #u10839 .text {
  4563. position:absolute;
  4564. align-self:center;
  4565. padding:2px 2px 2px 0px;
  4566. box-sizing:border-box;
  4567. width:100%;
  4568. }
  4569. #u10839_text {
  4570. border-width:0px;
  4571. word-wrap:break-word;
  4572. text-transform:none;
  4573. visibility:hidden;
  4574. }
  4575. #u10840_img {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:114px;
  4581. height:38px;
  4582. }
  4583. #u10840 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:978px;
  4587. top:76px;
  4588. width:114px;
  4589. height:38px;
  4590. display:flex;
  4591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4592. font-weight:400;
  4593. font-style:normal;
  4594. font-size:12px;
  4595. }
  4596. #u10840 .text {
  4597. position:absolute;
  4598. align-self:center;
  4599. padding:2px 2px 2px 0px;
  4600. box-sizing:border-box;
  4601. width:100%;
  4602. }
  4603. #u10840_text {
  4604. border-width:0px;
  4605. word-wrap:break-word;
  4606. text-transform:none;
  4607. visibility:hidden;
  4608. }
  4609. #u10841_img {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:0px;
  4613. top:0px;
  4614. width:130px;
  4615. height:38px;
  4616. }
  4617. #u10841 {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:1092px;
  4621. top:76px;
  4622. width:130px;
  4623. height:38px;
  4624. display:flex;
  4625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4626. font-weight:400;
  4627. font-style:normal;
  4628. font-size:12px;
  4629. color:#1890FF;
  4630. }
  4631. #u10841 .text {
  4632. position:absolute;
  4633. align-self:center;
  4634. padding:2px 2px 2px 0px;
  4635. box-sizing:border-box;
  4636. width:100%;
  4637. }
  4638. #u10841_text {
  4639. border-width:0px;
  4640. word-wrap:break-word;
  4641. text-transform:none;
  4642. }
  4643. #u10842_img {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:112px;
  4649. height:38px;
  4650. }
  4651. #u10842 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:114px;
  4656. width:112px;
  4657. height:38px;
  4658. display:flex;
  4659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4660. font-weight:400;
  4661. font-style:normal;
  4662. font-size:12px;
  4663. }
  4664. #u10842 .text {
  4665. position:absolute;
  4666. align-self:center;
  4667. padding:2px 2px 2px 0px;
  4668. box-sizing:border-box;
  4669. width:100%;
  4670. }
  4671. #u10842_text {
  4672. border-width:0px;
  4673. word-wrap:break-word;
  4674. text-transform:none;
  4675. visibility:hidden;
  4676. }
  4677. #u10843_img {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:0px;
  4681. top:0px;
  4682. width:100px;
  4683. height:38px;
  4684. }
  4685. #u10843 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:112px;
  4689. top:114px;
  4690. width:100px;
  4691. height:38px;
  4692. display:flex;
  4693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4694. font-weight:400;
  4695. font-style:normal;
  4696. font-size:12px;
  4697. }
  4698. #u10843 .text {
  4699. position:absolute;
  4700. align-self:center;
  4701. padding:2px 2px 2px 0px;
  4702. box-sizing:border-box;
  4703. width:100%;
  4704. }
  4705. #u10843_text {
  4706. border-width:0px;
  4707. word-wrap:break-word;
  4708. text-transform:none;
  4709. visibility:hidden;
  4710. }
  4711. #u10844_img {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:0px;
  4715. top:0px;
  4716. width:100px;
  4717. height:38px;
  4718. }
  4719. #u10844 {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:212px;
  4723. top:114px;
  4724. width:100px;
  4725. height:38px;
  4726. display:flex;
  4727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4728. font-weight:400;
  4729. font-style:normal;
  4730. font-size:12px;
  4731. }
  4732. #u10844 .text {
  4733. position:absolute;
  4734. align-self:center;
  4735. padding:2px 2px 2px 0px;
  4736. box-sizing:border-box;
  4737. width:100%;
  4738. }
  4739. #u10844_text {
  4740. border-width:0px;
  4741. word-wrap:break-word;
  4742. text-transform:none;
  4743. visibility:hidden;
  4744. }
  4745. #u10845_img {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:114px;
  4751. height:38px;
  4752. }
  4753. #u10845 {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:312px;
  4757. top:114px;
  4758. width:114px;
  4759. height:38px;
  4760. display:flex;
  4761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4762. font-weight:400;
  4763. font-style:normal;
  4764. font-size:12px;
  4765. }
  4766. #u10845 .text {
  4767. position:absolute;
  4768. align-self:center;
  4769. padding:2px 2px 2px 0px;
  4770. box-sizing:border-box;
  4771. width:100%;
  4772. }
  4773. #u10845_text {
  4774. border-width:0px;
  4775. word-wrap:break-word;
  4776. text-transform:none;
  4777. visibility:hidden;
  4778. }
  4779. #u10846_img {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:100px;
  4785. height:38px;
  4786. }
  4787. #u10846 {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:426px;
  4791. top:114px;
  4792. width:100px;
  4793. height:38px;
  4794. display:flex;
  4795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4796. font-weight:400;
  4797. font-style:normal;
  4798. font-size:12px;
  4799. }
  4800. #u10846 .text {
  4801. position:absolute;
  4802. align-self:center;
  4803. padding:2px 2px 2px 0px;
  4804. box-sizing:border-box;
  4805. width:100%;
  4806. }
  4807. #u10846_text {
  4808. border-width:0px;
  4809. word-wrap:break-word;
  4810. text-transform:none;
  4811. visibility:hidden;
  4812. }
  4813. #u10847_img {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:0px;
  4817. top:0px;
  4818. width:112px;
  4819. height:38px;
  4820. }
  4821. #u10847 {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:526px;
  4825. top:114px;
  4826. width:112px;
  4827. height:38px;
  4828. display:flex;
  4829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4830. font-weight:400;
  4831. font-style:normal;
  4832. font-size:12px;
  4833. }
  4834. #u10847 .text {
  4835. position:absolute;
  4836. align-self:center;
  4837. padding:2px 2px 2px 0px;
  4838. box-sizing:border-box;
  4839. width:100%;
  4840. }
  4841. #u10847_text {
  4842. border-width:0px;
  4843. word-wrap:break-word;
  4844. text-transform:none;
  4845. visibility:hidden;
  4846. }
  4847. #u10848_img {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:0px;
  4851. top:0px;
  4852. width:114px;
  4853. height:38px;
  4854. }
  4855. #u10848 {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:638px;
  4859. top:114px;
  4860. width:114px;
  4861. height:38px;
  4862. display:flex;
  4863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4864. font-weight:400;
  4865. font-style:normal;
  4866. font-size:12px;
  4867. }
  4868. #u10848 .text {
  4869. position:absolute;
  4870. align-self:center;
  4871. padding:2px 2px 2px 0px;
  4872. box-sizing:border-box;
  4873. width:100%;
  4874. }
  4875. #u10848_text {
  4876. border-width:0px;
  4877. word-wrap:break-word;
  4878. text-transform:none;
  4879. visibility:hidden;
  4880. }
  4881. #u10849_img {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:0px;
  4885. top:0px;
  4886. width:112px;
  4887. height:38px;
  4888. }
  4889. #u10849 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:752px;
  4893. top:114px;
  4894. width:112px;
  4895. height:38px;
  4896. display:flex;
  4897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4898. font-weight:400;
  4899. font-style:normal;
  4900. font-size:12px;
  4901. }
  4902. #u10849 .text {
  4903. position:absolute;
  4904. align-self:center;
  4905. padding:2px 2px 2px 0px;
  4906. box-sizing:border-box;
  4907. width:100%;
  4908. }
  4909. #u10849_text {
  4910. border-width:0px;
  4911. word-wrap:break-word;
  4912. text-transform:none;
  4913. visibility:hidden;
  4914. }
  4915. #u10850_img {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:0px;
  4919. top:0px;
  4920. width:114px;
  4921. height:38px;
  4922. }
  4923. #u10850 {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:864px;
  4927. top:114px;
  4928. width:114px;
  4929. height:38px;
  4930. display:flex;
  4931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4932. font-weight:400;
  4933. font-style:normal;
  4934. font-size:12px;
  4935. }
  4936. #u10850 .text {
  4937. position:absolute;
  4938. align-self:center;
  4939. padding:2px 2px 2px 0px;
  4940. box-sizing:border-box;
  4941. width:100%;
  4942. }
  4943. #u10850_text {
  4944. border-width:0px;
  4945. word-wrap:break-word;
  4946. text-transform:none;
  4947. visibility:hidden;
  4948. }
  4949. #u10851_img {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:0px;
  4953. top:0px;
  4954. width:114px;
  4955. height:38px;
  4956. }
  4957. #u10851 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:978px;
  4961. top:114px;
  4962. width:114px;
  4963. height:38px;
  4964. display:flex;
  4965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4966. font-weight:400;
  4967. font-style:normal;
  4968. font-size:12px;
  4969. }
  4970. #u10851 .text {
  4971. position:absolute;
  4972. align-self:center;
  4973. padding:2px 2px 2px 0px;
  4974. box-sizing:border-box;
  4975. width:100%;
  4976. }
  4977. #u10851_text {
  4978. border-width:0px;
  4979. word-wrap:break-word;
  4980. text-transform:none;
  4981. visibility:hidden;
  4982. }
  4983. #u10852_img {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:130px;
  4989. height:38px;
  4990. }
  4991. #u10852 {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:1092px;
  4995. top:114px;
  4996. width:130px;
  4997. height:38px;
  4998. display:flex;
  4999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5000. font-weight:400;
  5001. font-style:normal;
  5002. font-size:12px;
  5003. color:#1890FF;
  5004. }
  5005. #u10852 .text {
  5006. position:absolute;
  5007. align-self:center;
  5008. padding:2px 2px 2px 0px;
  5009. box-sizing:border-box;
  5010. width:100%;
  5011. }
  5012. #u10852_text {
  5013. border-width:0px;
  5014. word-wrap:break-word;
  5015. text-transform:none;
  5016. visibility:hidden;
  5017. }
  5018. #u10853_img {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:112px;
  5024. height:38px;
  5025. }
  5026. #u10853 {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:0px;
  5030. top:152px;
  5031. width:112px;
  5032. height:38px;
  5033. display:flex;
  5034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5035. font-weight:400;
  5036. font-style:normal;
  5037. font-size:12px;
  5038. }
  5039. #u10853 .text {
  5040. position:absolute;
  5041. align-self:center;
  5042. padding:2px 2px 2px 0px;
  5043. box-sizing:border-box;
  5044. width:100%;
  5045. }
  5046. #u10853_text {
  5047. border-width:0px;
  5048. word-wrap:break-word;
  5049. text-transform:none;
  5050. visibility:hidden;
  5051. }
  5052. #u10854_img {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:0px;
  5056. top:0px;
  5057. width:100px;
  5058. height:38px;
  5059. }
  5060. #u10854 {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:112px;
  5064. top:152px;
  5065. width:100px;
  5066. height:38px;
  5067. display:flex;
  5068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5069. font-weight:400;
  5070. font-style:normal;
  5071. font-size:12px;
  5072. }
  5073. #u10854 .text {
  5074. position:absolute;
  5075. align-self:center;
  5076. padding:2px 2px 2px 0px;
  5077. box-sizing:border-box;
  5078. width:100%;
  5079. }
  5080. #u10854_text {
  5081. border-width:0px;
  5082. word-wrap:break-word;
  5083. text-transform:none;
  5084. visibility:hidden;
  5085. }
  5086. #u10855_img {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:100px;
  5092. height:38px;
  5093. }
  5094. #u10855 {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:212px;
  5098. top:152px;
  5099. width:100px;
  5100. height:38px;
  5101. display:flex;
  5102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5103. font-weight:400;
  5104. font-style:normal;
  5105. font-size:12px;
  5106. }
  5107. #u10855 .text {
  5108. position:absolute;
  5109. align-self:center;
  5110. padding:2px 2px 2px 0px;
  5111. box-sizing:border-box;
  5112. width:100%;
  5113. }
  5114. #u10855_text {
  5115. border-width:0px;
  5116. word-wrap:break-word;
  5117. text-transform:none;
  5118. visibility:hidden;
  5119. }
  5120. #u10856_img {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:0px;
  5124. top:0px;
  5125. width:114px;
  5126. height:38px;
  5127. }
  5128. #u10856 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:312px;
  5132. top:152px;
  5133. width:114px;
  5134. height:38px;
  5135. display:flex;
  5136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5137. font-weight:400;
  5138. font-style:normal;
  5139. font-size:12px;
  5140. }
  5141. #u10856 .text {
  5142. position:absolute;
  5143. align-self:center;
  5144. padding:2px 2px 2px 0px;
  5145. box-sizing:border-box;
  5146. width:100%;
  5147. }
  5148. #u10856_text {
  5149. border-width:0px;
  5150. word-wrap:break-word;
  5151. text-transform:none;
  5152. visibility:hidden;
  5153. }
  5154. #u10857_img {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:0px;
  5158. top:0px;
  5159. width:100px;
  5160. height:38px;
  5161. }
  5162. #u10857 {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:426px;
  5166. top:152px;
  5167. width:100px;
  5168. height:38px;
  5169. display:flex;
  5170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:12px;
  5174. }
  5175. #u10857 .text {
  5176. position:absolute;
  5177. align-self:center;
  5178. padding:2px 2px 2px 0px;
  5179. box-sizing:border-box;
  5180. width:100%;
  5181. }
  5182. #u10857_text {
  5183. border-width:0px;
  5184. word-wrap:break-word;
  5185. text-transform:none;
  5186. visibility:hidden;
  5187. }
  5188. #u10858_img {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:112px;
  5194. height:38px;
  5195. }
  5196. #u10858 {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:526px;
  5200. top:152px;
  5201. width:112px;
  5202. height:38px;
  5203. display:flex;
  5204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5205. font-weight:400;
  5206. font-style:normal;
  5207. font-size:12px;
  5208. }
  5209. #u10858 .text {
  5210. position:absolute;
  5211. align-self:center;
  5212. padding:2px 2px 2px 0px;
  5213. box-sizing:border-box;
  5214. width:100%;
  5215. }
  5216. #u10858_text {
  5217. border-width:0px;
  5218. word-wrap:break-word;
  5219. text-transform:none;
  5220. visibility:hidden;
  5221. }
  5222. #u10859_img {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:0px;
  5226. top:0px;
  5227. width:114px;
  5228. height:38px;
  5229. }
  5230. #u10859 {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:638px;
  5234. top:152px;
  5235. width:114px;
  5236. height:38px;
  5237. display:flex;
  5238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. font-size:12px;
  5242. }
  5243. #u10859 .text {
  5244. position:absolute;
  5245. align-self:center;
  5246. padding:2px 2px 2px 0px;
  5247. box-sizing:border-box;
  5248. width:100%;
  5249. }
  5250. #u10859_text {
  5251. border-width:0px;
  5252. word-wrap:break-word;
  5253. text-transform:none;
  5254. visibility:hidden;
  5255. }
  5256. #u10860_img {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:112px;
  5262. height:38px;
  5263. }
  5264. #u10860 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:752px;
  5268. top:152px;
  5269. width:112px;
  5270. height:38px;
  5271. display:flex;
  5272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. font-size:12px;
  5276. }
  5277. #u10860 .text {
  5278. position:absolute;
  5279. align-self:center;
  5280. padding:2px 2px 2px 0px;
  5281. box-sizing:border-box;
  5282. width:100%;
  5283. }
  5284. #u10860_text {
  5285. border-width:0px;
  5286. word-wrap:break-word;
  5287. text-transform:none;
  5288. visibility:hidden;
  5289. }
  5290. #u10861_img {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:0px;
  5294. top:0px;
  5295. width:114px;
  5296. height:38px;
  5297. }
  5298. #u10861 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:864px;
  5302. top:152px;
  5303. width:114px;
  5304. height:38px;
  5305. display:flex;
  5306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5307. font-weight:400;
  5308. font-style:normal;
  5309. font-size:12px;
  5310. }
  5311. #u10861 .text {
  5312. position:absolute;
  5313. align-self:center;
  5314. padding:2px 2px 2px 0px;
  5315. box-sizing:border-box;
  5316. width:100%;
  5317. }
  5318. #u10861_text {
  5319. border-width:0px;
  5320. word-wrap:break-word;
  5321. text-transform:none;
  5322. visibility:hidden;
  5323. }
  5324. #u10862_img {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:114px;
  5330. height:38px;
  5331. }
  5332. #u10862 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:978px;
  5336. top:152px;
  5337. width:114px;
  5338. height:38px;
  5339. display:flex;
  5340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5341. font-weight:400;
  5342. font-style:normal;
  5343. font-size:12px;
  5344. }
  5345. #u10862 .text {
  5346. position:absolute;
  5347. align-self:center;
  5348. padding:2px 2px 2px 0px;
  5349. box-sizing:border-box;
  5350. width:100%;
  5351. }
  5352. #u10862_text {
  5353. border-width:0px;
  5354. word-wrap:break-word;
  5355. text-transform:none;
  5356. visibility:hidden;
  5357. }
  5358. #u10863_img {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:130px;
  5364. height:38px;
  5365. }
  5366. #u10863 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:1092px;
  5370. top:152px;
  5371. width:130px;
  5372. height:38px;
  5373. display:flex;
  5374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5375. font-weight:400;
  5376. font-style:normal;
  5377. font-size:12px;
  5378. color:#1890FF;
  5379. }
  5380. #u10863 .text {
  5381. position:absolute;
  5382. align-self:center;
  5383. padding:2px 2px 2px 0px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u10863_text {
  5388. border-width:0px;
  5389. word-wrap:break-word;
  5390. text-transform:none;
  5391. visibility:hidden;
  5392. }
  5393. #u10864_img {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:0px;
  5397. top:0px;
  5398. width:112px;
  5399. height:35px;
  5400. }
  5401. #u10864 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:0px;
  5405. top:190px;
  5406. width:112px;
  5407. height:35px;
  5408. display:flex;
  5409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. font-size:12px;
  5413. color:#606266;
  5414. }
  5415. #u10864 .text {
  5416. position:absolute;
  5417. align-self:center;
  5418. padding:2px 2px 2px 0px;
  5419. box-sizing:border-box;
  5420. width:100%;
  5421. }
  5422. #u10864_text {
  5423. border-width:0px;
  5424. word-wrap:break-word;
  5425. text-transform:none;
  5426. visibility:hidden;
  5427. }
  5428. #u10865_img {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:100px;
  5434. height:35px;
  5435. }
  5436. #u10865 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:112px;
  5440. top:190px;
  5441. width:100px;
  5442. height:35px;
  5443. display:flex;
  5444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. font-size:12px;
  5448. color:#606266;
  5449. }
  5450. #u10865 .text {
  5451. position:absolute;
  5452. align-self:center;
  5453. padding:2px 2px 2px 0px;
  5454. box-sizing:border-box;
  5455. width:100%;
  5456. }
  5457. #u10865_text {
  5458. border-width:0px;
  5459. word-wrap:break-word;
  5460. text-transform:none;
  5461. visibility:hidden;
  5462. }
  5463. #u10866_img {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:100px;
  5469. height:35px;
  5470. }
  5471. #u10866 {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:212px;
  5475. top:190px;
  5476. width:100px;
  5477. height:35px;
  5478. display:flex;
  5479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5480. font-weight:400;
  5481. font-style:normal;
  5482. font-size:12px;
  5483. color:#606266;
  5484. }
  5485. #u10866 .text {
  5486. position:absolute;
  5487. align-self:center;
  5488. padding:2px 2px 2px 0px;
  5489. box-sizing:border-box;
  5490. width:100%;
  5491. }
  5492. #u10866_text {
  5493. border-width:0px;
  5494. word-wrap:break-word;
  5495. text-transform:none;
  5496. visibility:hidden;
  5497. }
  5498. #u10867_img {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:0px;
  5502. top:0px;
  5503. width:114px;
  5504. height:35px;
  5505. }
  5506. #u10867 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:312px;
  5510. top:190px;
  5511. width:114px;
  5512. height:35px;
  5513. display:flex;
  5514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:12px;
  5518. color:#606266;
  5519. }
  5520. #u10867 .text {
  5521. position:absolute;
  5522. align-self:center;
  5523. padding:2px 2px 2px 0px;
  5524. box-sizing:border-box;
  5525. width:100%;
  5526. }
  5527. #u10867_text {
  5528. border-width:0px;
  5529. word-wrap:break-word;
  5530. text-transform:none;
  5531. visibility:hidden;
  5532. }
  5533. #u10868_img {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:100px;
  5539. height:35px;
  5540. }
  5541. #u10868 {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:426px;
  5545. top:190px;
  5546. width:100px;
  5547. height:35px;
  5548. display:flex;
  5549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5550. font-weight:400;
  5551. font-style:normal;
  5552. font-size:12px;
  5553. color:#606266;
  5554. }
  5555. #u10868 .text {
  5556. position:absolute;
  5557. align-self:center;
  5558. padding:2px 2px 2px 0px;
  5559. box-sizing:border-box;
  5560. width:100%;
  5561. }
  5562. #u10868_text {
  5563. border-width:0px;
  5564. word-wrap:break-word;
  5565. text-transform:none;
  5566. visibility:hidden;
  5567. }
  5568. #u10869_img {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:112px;
  5574. height:35px;
  5575. }
  5576. #u10869 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:526px;
  5580. top:190px;
  5581. width:112px;
  5582. height:35px;
  5583. display:flex;
  5584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:12px;
  5588. color:#606266;
  5589. }
  5590. #u10869 .text {
  5591. position:absolute;
  5592. align-self:center;
  5593. padding:2px 2px 2px 0px;
  5594. box-sizing:border-box;
  5595. width:100%;
  5596. }
  5597. #u10869_text {
  5598. border-width:0px;
  5599. word-wrap:break-word;
  5600. text-transform:none;
  5601. visibility:hidden;
  5602. }
  5603. #u10870_img {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:114px;
  5609. height:35px;
  5610. }
  5611. #u10870 {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:638px;
  5615. top:190px;
  5616. width:114px;
  5617. height:35px;
  5618. display:flex;
  5619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5620. font-weight:400;
  5621. font-style:normal;
  5622. font-size:12px;
  5623. color:#606266;
  5624. }
  5625. #u10870 .text {
  5626. position:absolute;
  5627. align-self:center;
  5628. padding:2px 2px 2px 0px;
  5629. box-sizing:border-box;
  5630. width:100%;
  5631. }
  5632. #u10870_text {
  5633. border-width:0px;
  5634. word-wrap:break-word;
  5635. text-transform:none;
  5636. visibility:hidden;
  5637. }
  5638. #u10871_img {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:112px;
  5644. height:35px;
  5645. }
  5646. #u10871 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:752px;
  5650. top:190px;
  5651. width:112px;
  5652. height:35px;
  5653. display:flex;
  5654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:12px;
  5658. color:#606266;
  5659. }
  5660. #u10871 .text {
  5661. position:absolute;
  5662. align-self:center;
  5663. padding:2px 2px 2px 0px;
  5664. box-sizing:border-box;
  5665. width:100%;
  5666. }
  5667. #u10871_text {
  5668. border-width:0px;
  5669. word-wrap:break-word;
  5670. text-transform:none;
  5671. visibility:hidden;
  5672. }
  5673. #u10872_img {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:114px;
  5679. height:35px;
  5680. }
  5681. #u10872 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:864px;
  5685. top:190px;
  5686. width:114px;
  5687. height:35px;
  5688. display:flex;
  5689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5690. font-weight:400;
  5691. font-style:normal;
  5692. font-size:12px;
  5693. color:#606266;
  5694. }
  5695. #u10872 .text {
  5696. position:absolute;
  5697. align-self:center;
  5698. padding:2px 2px 2px 0px;
  5699. box-sizing:border-box;
  5700. width:100%;
  5701. }
  5702. #u10872_text {
  5703. border-width:0px;
  5704. word-wrap:break-word;
  5705. text-transform:none;
  5706. visibility:hidden;
  5707. }
  5708. #u10873_img {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:114px;
  5714. height:35px;
  5715. }
  5716. #u10873 {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:978px;
  5720. top:190px;
  5721. width:114px;
  5722. height:35px;
  5723. display:flex;
  5724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. font-size:12px;
  5728. color:#606266;
  5729. }
  5730. #u10873 .text {
  5731. position:absolute;
  5732. align-self:center;
  5733. padding:2px 2px 2px 0px;
  5734. box-sizing:border-box;
  5735. width:100%;
  5736. }
  5737. #u10873_text {
  5738. border-width:0px;
  5739. word-wrap:break-word;
  5740. text-transform:none;
  5741. visibility:hidden;
  5742. }
  5743. #u10874_img {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:130px;
  5749. height:35px;
  5750. }
  5751. #u10874 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:1092px;
  5755. top:190px;
  5756. width:130px;
  5757. height:35px;
  5758. display:flex;
  5759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5760. font-weight:400;
  5761. font-style:normal;
  5762. font-size:12px;
  5763. color:#02A7F0;
  5764. }
  5765. #u10874 .text {
  5766. position:absolute;
  5767. align-self:center;
  5768. padding:2px 2px 2px 0px;
  5769. box-sizing:border-box;
  5770. width:100%;
  5771. }
  5772. #u10874_text {
  5773. border-width:0px;
  5774. word-wrap:break-word;
  5775. text-transform:none;
  5776. visibility:hidden;
  5777. }
  5778. #u10875_img {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:112px;
  5784. height:35px;
  5785. }
  5786. #u10875 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:0px;
  5790. top:225px;
  5791. width:112px;
  5792. height:35px;
  5793. display:flex;
  5794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:12px;
  5798. color:#606266;
  5799. }
  5800. #u10875 .text {
  5801. position:absolute;
  5802. align-self:center;
  5803. padding:2px 2px 2px 0px;
  5804. box-sizing:border-box;
  5805. width:100%;
  5806. }
  5807. #u10875_text {
  5808. border-width:0px;
  5809. word-wrap:break-word;
  5810. text-transform:none;
  5811. visibility:hidden;
  5812. }
  5813. #u10876_img {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:0px;
  5817. top:0px;
  5818. width:100px;
  5819. height:35px;
  5820. }
  5821. #u10876 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:112px;
  5825. top:225px;
  5826. width:100px;
  5827. height:35px;
  5828. display:flex;
  5829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:12px;
  5833. color:#606266;
  5834. }
  5835. #u10876 .text {
  5836. position:absolute;
  5837. align-self:center;
  5838. padding:2px 2px 2px 0px;
  5839. box-sizing:border-box;
  5840. width:100%;
  5841. }
  5842. #u10876_text {
  5843. border-width:0px;
  5844. word-wrap:break-word;
  5845. text-transform:none;
  5846. visibility:hidden;
  5847. }
  5848. #u10877_img {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:0px;
  5852. top:0px;
  5853. width:100px;
  5854. height:35px;
  5855. }
  5856. #u10877 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:212px;
  5860. top:225px;
  5861. width:100px;
  5862. height:35px;
  5863. display:flex;
  5864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:12px;
  5868. color:#606266;
  5869. }
  5870. #u10877 .text {
  5871. position:absolute;
  5872. align-self:center;
  5873. padding:2px 2px 2px 0px;
  5874. box-sizing:border-box;
  5875. width:100%;
  5876. }
  5877. #u10877_text {
  5878. border-width:0px;
  5879. word-wrap:break-word;
  5880. text-transform:none;
  5881. visibility:hidden;
  5882. }
  5883. #u10878_img {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:0px;
  5887. top:0px;
  5888. width:114px;
  5889. height:35px;
  5890. }
  5891. #u10878 {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:312px;
  5895. top:225px;
  5896. width:114px;
  5897. height:35px;
  5898. display:flex;
  5899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5900. font-weight:400;
  5901. font-style:normal;
  5902. font-size:12px;
  5903. color:#606266;
  5904. }
  5905. #u10878 .text {
  5906. position:absolute;
  5907. align-self:center;
  5908. padding:2px 2px 2px 0px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u10878_text {
  5913. border-width:0px;
  5914. word-wrap:break-word;
  5915. text-transform:none;
  5916. visibility:hidden;
  5917. }
  5918. #u10879_img {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:100px;
  5924. height:35px;
  5925. }
  5926. #u10879 {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:426px;
  5930. top:225px;
  5931. width:100px;
  5932. height:35px;
  5933. display:flex;
  5934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5935. font-weight:400;
  5936. font-style:normal;
  5937. font-size:12px;
  5938. color:#606266;
  5939. }
  5940. #u10879 .text {
  5941. position:absolute;
  5942. align-self:center;
  5943. padding:2px 2px 2px 0px;
  5944. box-sizing:border-box;
  5945. width:100%;
  5946. }
  5947. #u10879_text {
  5948. border-width:0px;
  5949. word-wrap:break-word;
  5950. text-transform:none;
  5951. visibility:hidden;
  5952. }
  5953. #u10880_img {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:0px;
  5957. top:0px;
  5958. width:112px;
  5959. height:35px;
  5960. }
  5961. #u10880 {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:526px;
  5965. top:225px;
  5966. width:112px;
  5967. height:35px;
  5968. display:flex;
  5969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:12px;
  5973. color:#606266;
  5974. }
  5975. #u10880 .text {
  5976. position:absolute;
  5977. align-self:center;
  5978. padding:2px 2px 2px 0px;
  5979. box-sizing:border-box;
  5980. width:100%;
  5981. }
  5982. #u10880_text {
  5983. border-width:0px;
  5984. word-wrap:break-word;
  5985. text-transform:none;
  5986. visibility:hidden;
  5987. }
  5988. #u10881_img {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:114px;
  5994. height:35px;
  5995. }
  5996. #u10881 {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:638px;
  6000. top:225px;
  6001. width:114px;
  6002. height:35px;
  6003. display:flex;
  6004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:12px;
  6008. color:#606266;
  6009. }
  6010. #u10881 .text {
  6011. position:absolute;
  6012. align-self:center;
  6013. padding:2px 2px 2px 0px;
  6014. box-sizing:border-box;
  6015. width:100%;
  6016. }
  6017. #u10881_text {
  6018. border-width:0px;
  6019. word-wrap:break-word;
  6020. text-transform:none;
  6021. visibility:hidden;
  6022. }
  6023. #u10882_img {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:112px;
  6029. height:35px;
  6030. }
  6031. #u10882 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:752px;
  6035. top:225px;
  6036. width:112px;
  6037. height:35px;
  6038. display:flex;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:12px;
  6043. color:#606266;
  6044. }
  6045. #u10882 .text {
  6046. position:absolute;
  6047. align-self:center;
  6048. padding:2px 2px 2px 0px;
  6049. box-sizing:border-box;
  6050. width:100%;
  6051. }
  6052. #u10882_text {
  6053. border-width:0px;
  6054. word-wrap:break-word;
  6055. text-transform:none;
  6056. visibility:hidden;
  6057. }
  6058. #u10883_img {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:0px;
  6062. top:0px;
  6063. width:114px;
  6064. height:35px;
  6065. }
  6066. #u10883 {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:864px;
  6070. top:225px;
  6071. width:114px;
  6072. height:35px;
  6073. display:flex;
  6074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:12px;
  6078. color:#606266;
  6079. }
  6080. #u10883 .text {
  6081. position:absolute;
  6082. align-self:center;
  6083. padding:2px 2px 2px 0px;
  6084. box-sizing:border-box;
  6085. width:100%;
  6086. }
  6087. #u10883_text {
  6088. border-width:0px;
  6089. word-wrap:break-word;
  6090. text-transform:none;
  6091. visibility:hidden;
  6092. }
  6093. #u10884_img {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:0px;
  6097. top:0px;
  6098. width:114px;
  6099. height:35px;
  6100. }
  6101. #u10884 {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:978px;
  6105. top:225px;
  6106. width:114px;
  6107. height:35px;
  6108. display:flex;
  6109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6110. font-weight:400;
  6111. font-style:normal;
  6112. font-size:12px;
  6113. color:#606266;
  6114. }
  6115. #u10884 .text {
  6116. position:absolute;
  6117. align-self:center;
  6118. padding:2px 2px 2px 0px;
  6119. box-sizing:border-box;
  6120. width:100%;
  6121. }
  6122. #u10884_text {
  6123. border-width:0px;
  6124. word-wrap:break-word;
  6125. text-transform:none;
  6126. visibility:hidden;
  6127. }
  6128. #u10885_img {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:0px;
  6132. top:0px;
  6133. width:130px;
  6134. height:35px;
  6135. }
  6136. #u10885 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:1092px;
  6140. top:225px;
  6141. width:130px;
  6142. height:35px;
  6143. display:flex;
  6144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:12px;
  6148. color:#02A7F0;
  6149. }
  6150. #u10885 .text {
  6151. position:absolute;
  6152. align-self:center;
  6153. padding:2px 2px 2px 0px;
  6154. box-sizing:border-box;
  6155. width:100%;
  6156. }
  6157. #u10885_text {
  6158. border-width:0px;
  6159. word-wrap:break-word;
  6160. text-transform:none;
  6161. visibility:hidden;
  6162. }
  6163. #u10886_img {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:112px;
  6169. height:35px;
  6170. }
  6171. #u10886 {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:0px;
  6175. top:260px;
  6176. width:112px;
  6177. height:35px;
  6178. display:flex;
  6179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. font-size:12px;
  6183. color:#606266;
  6184. }
  6185. #u10886 .text {
  6186. position:absolute;
  6187. align-self:center;
  6188. padding:2px 2px 2px 0px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u10886_text {
  6193. border-width:0px;
  6194. word-wrap:break-word;
  6195. text-transform:none;
  6196. visibility:hidden;
  6197. }
  6198. #u10887_img {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:100px;
  6204. height:35px;
  6205. }
  6206. #u10887 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:112px;
  6210. top:260px;
  6211. width:100px;
  6212. height:35px;
  6213. display:flex;
  6214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. font-size:12px;
  6218. color:#606266;
  6219. }
  6220. #u10887 .text {
  6221. position:absolute;
  6222. align-self:center;
  6223. padding:2px 2px 2px 0px;
  6224. box-sizing:border-box;
  6225. width:100%;
  6226. }
  6227. #u10887_text {
  6228. border-width:0px;
  6229. word-wrap:break-word;
  6230. text-transform:none;
  6231. visibility:hidden;
  6232. }
  6233. #u10888_img {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:100px;
  6239. height:35px;
  6240. }
  6241. #u10888 {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:212px;
  6245. top:260px;
  6246. width:100px;
  6247. height:35px;
  6248. display:flex;
  6249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:12px;
  6253. color:#606266;
  6254. }
  6255. #u10888 .text {
  6256. position:absolute;
  6257. align-self:center;
  6258. padding:2px 2px 2px 0px;
  6259. box-sizing:border-box;
  6260. width:100%;
  6261. }
  6262. #u10888_text {
  6263. border-width:0px;
  6264. word-wrap:break-word;
  6265. text-transform:none;
  6266. visibility:hidden;
  6267. }
  6268. #u10889_img {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:114px;
  6274. height:35px;
  6275. }
  6276. #u10889 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:312px;
  6280. top:260px;
  6281. width:114px;
  6282. height:35px;
  6283. display:flex;
  6284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:12px;
  6288. color:#606266;
  6289. }
  6290. #u10889 .text {
  6291. position:absolute;
  6292. align-self:center;
  6293. padding:2px 2px 2px 0px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u10889_text {
  6298. border-width:0px;
  6299. word-wrap:break-word;
  6300. text-transform:none;
  6301. visibility:hidden;
  6302. }
  6303. #u10890_img {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:100px;
  6309. height:35px;
  6310. }
  6311. #u10890 {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:426px;
  6315. top:260px;
  6316. width:100px;
  6317. height:35px;
  6318. display:flex;
  6319. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6320. font-weight:400;
  6321. font-style:normal;
  6322. font-size:12px;
  6323. color:#606266;
  6324. }
  6325. #u10890 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:2px 2px 2px 0px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u10890_text {
  6333. border-width:0px;
  6334. word-wrap:break-word;
  6335. text-transform:none;
  6336. visibility:hidden;
  6337. }
  6338. #u10891_img {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:112px;
  6344. height:35px;
  6345. }
  6346. #u10891 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:526px;
  6350. top:260px;
  6351. width:112px;
  6352. height:35px;
  6353. display:flex;
  6354. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:12px;
  6358. color:#606266;
  6359. }
  6360. #u10891 .text {
  6361. position:absolute;
  6362. align-self:center;
  6363. padding:2px 2px 2px 0px;
  6364. box-sizing:border-box;
  6365. width:100%;
  6366. }
  6367. #u10891_text {
  6368. border-width:0px;
  6369. word-wrap:break-word;
  6370. text-transform:none;
  6371. visibility:hidden;
  6372. }
  6373. #u10892_img {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:0px;
  6377. top:0px;
  6378. width:114px;
  6379. height:35px;
  6380. }
  6381. #u10892 {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:638px;
  6385. top:260px;
  6386. width:114px;
  6387. height:35px;
  6388. display:flex;
  6389. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6390. font-weight:400;
  6391. font-style:normal;
  6392. font-size:12px;
  6393. color:#606266;
  6394. }
  6395. #u10892 .text {
  6396. position:absolute;
  6397. align-self:center;
  6398. padding:2px 2px 2px 0px;
  6399. box-sizing:border-box;
  6400. width:100%;
  6401. }
  6402. #u10892_text {
  6403. border-width:0px;
  6404. word-wrap:break-word;
  6405. text-transform:none;
  6406. visibility:hidden;
  6407. }
  6408. #u10893_img {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:112px;
  6414. height:35px;
  6415. }
  6416. #u10893 {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:752px;
  6420. top:260px;
  6421. width:112px;
  6422. height:35px;
  6423. display:flex;
  6424. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6425. font-weight:400;
  6426. font-style:normal;
  6427. font-size:12px;
  6428. color:#606266;
  6429. }
  6430. #u10893 .text {
  6431. position:absolute;
  6432. align-self:center;
  6433. padding:2px 2px 2px 0px;
  6434. box-sizing:border-box;
  6435. width:100%;
  6436. }
  6437. #u10893_text {
  6438. border-width:0px;
  6439. word-wrap:break-word;
  6440. text-transform:none;
  6441. visibility:hidden;
  6442. }
  6443. #u10894_img {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:114px;
  6449. height:35px;
  6450. }
  6451. #u10894 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:864px;
  6455. top:260px;
  6456. width:114px;
  6457. height:35px;
  6458. display:flex;
  6459. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6460. font-weight:400;
  6461. font-style:normal;
  6462. font-size:12px;
  6463. color:#606266;
  6464. }
  6465. #u10894 .text {
  6466. position:absolute;
  6467. align-self:center;
  6468. padding:2px 2px 2px 0px;
  6469. box-sizing:border-box;
  6470. width:100%;
  6471. }
  6472. #u10894_text {
  6473. border-width:0px;
  6474. word-wrap:break-word;
  6475. text-transform:none;
  6476. visibility:hidden;
  6477. }
  6478. #u10895_img {
  6479. border-width:0px;
  6480. position:absolute;
  6481. left:0px;
  6482. top:0px;
  6483. width:114px;
  6484. height:35px;
  6485. }
  6486. #u10895 {
  6487. border-width:0px;
  6488. position:absolute;
  6489. left:978px;
  6490. top:260px;
  6491. width:114px;
  6492. height:35px;
  6493. display:flex;
  6494. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6495. font-weight:400;
  6496. font-style:normal;
  6497. font-size:12px;
  6498. color:#606266;
  6499. }
  6500. #u10895 .text {
  6501. position:absolute;
  6502. align-self:center;
  6503. padding:2px 2px 2px 0px;
  6504. box-sizing:border-box;
  6505. width:100%;
  6506. }
  6507. #u10895_text {
  6508. border-width:0px;
  6509. word-wrap:break-word;
  6510. text-transform:none;
  6511. visibility:hidden;
  6512. }
  6513. #u10896_img {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:130px;
  6519. height:35px;
  6520. }
  6521. #u10896 {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:1092px;
  6525. top:260px;
  6526. width:130px;
  6527. height:35px;
  6528. display:flex;
  6529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6530. font-weight:400;
  6531. font-style:normal;
  6532. font-size:12px;
  6533. color:#02A7F0;
  6534. }
  6535. #u10896 .text {
  6536. position:absolute;
  6537. align-self:center;
  6538. padding:2px 2px 2px 0px;
  6539. box-sizing:border-box;
  6540. width:100%;
  6541. }
  6542. #u10896_text {
  6543. border-width:0px;
  6544. word-wrap:break-word;
  6545. text-transform:none;
  6546. visibility:hidden;
  6547. }
  6548. #u10897_img {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:112px;
  6554. height:35px;
  6555. }
  6556. #u10897 {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:0px;
  6560. top:295px;
  6561. width:112px;
  6562. height:35px;
  6563. display:flex;
  6564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6565. font-weight:400;
  6566. font-style:normal;
  6567. font-size:12px;
  6568. color:#606266;
  6569. }
  6570. #u10897 .text {
  6571. position:absolute;
  6572. align-self:center;
  6573. padding:2px 2px 2px 0px;
  6574. box-sizing:border-box;
  6575. width:100%;
  6576. }
  6577. #u10897_text {
  6578. border-width:0px;
  6579. word-wrap:break-word;
  6580. text-transform:none;
  6581. visibility:hidden;
  6582. }
  6583. #u10898_img {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:0px;
  6588. width:100px;
  6589. height:35px;
  6590. }
  6591. #u10898 {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:112px;
  6595. top:295px;
  6596. width:100px;
  6597. height:35px;
  6598. display:flex;
  6599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:12px;
  6603. color:#606266;
  6604. }
  6605. #u10898 .text {
  6606. position:absolute;
  6607. align-self:center;
  6608. padding:2px 2px 2px 0px;
  6609. box-sizing:border-box;
  6610. width:100%;
  6611. }
  6612. #u10898_text {
  6613. border-width:0px;
  6614. word-wrap:break-word;
  6615. text-transform:none;
  6616. visibility:hidden;
  6617. }
  6618. #u10899_img {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:100px;
  6624. height:35px;
  6625. }
  6626. #u10899 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:212px;
  6630. top:295px;
  6631. width:100px;
  6632. height:35px;
  6633. display:flex;
  6634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:12px;
  6638. color:#606266;
  6639. }
  6640. #u10899 .text {
  6641. position:absolute;
  6642. align-self:center;
  6643. padding:2px 2px 2px 0px;
  6644. box-sizing:border-box;
  6645. width:100%;
  6646. }
  6647. #u10899_text {
  6648. border-width:0px;
  6649. word-wrap:break-word;
  6650. text-transform:none;
  6651. visibility:hidden;
  6652. }
  6653. #u10900_img {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:114px;
  6659. height:35px;
  6660. }
  6661. #u10900 {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:312px;
  6665. top:295px;
  6666. width:114px;
  6667. height:35px;
  6668. display:flex;
  6669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6670. font-weight:400;
  6671. font-style:normal;
  6672. font-size:12px;
  6673. color:#606266;
  6674. }
  6675. #u10900 .text {
  6676. position:absolute;
  6677. align-self:center;
  6678. padding:2px 2px 2px 0px;
  6679. box-sizing:border-box;
  6680. width:100%;
  6681. }
  6682. #u10900_text {
  6683. border-width:0px;
  6684. word-wrap:break-word;
  6685. text-transform:none;
  6686. visibility:hidden;
  6687. }
  6688. #u10901_img {
  6689. border-width:0px;
  6690. position:absolute;
  6691. left:0px;
  6692. top:0px;
  6693. width:100px;
  6694. height:35px;
  6695. }
  6696. #u10901 {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:426px;
  6700. top:295px;
  6701. width:100px;
  6702. height:35px;
  6703. display:flex;
  6704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6705. font-weight:400;
  6706. font-style:normal;
  6707. font-size:12px;
  6708. color:#606266;
  6709. }
  6710. #u10901 .text {
  6711. position:absolute;
  6712. align-self:center;
  6713. padding:2px 2px 2px 0px;
  6714. box-sizing:border-box;
  6715. width:100%;
  6716. }
  6717. #u10901_text {
  6718. border-width:0px;
  6719. word-wrap:break-word;
  6720. text-transform:none;
  6721. visibility:hidden;
  6722. }
  6723. #u10902_img {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:0px;
  6727. top:0px;
  6728. width:112px;
  6729. height:35px;
  6730. }
  6731. #u10902 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:526px;
  6735. top:295px;
  6736. width:112px;
  6737. height:35px;
  6738. display:flex;
  6739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:12px;
  6743. color:#606266;
  6744. }
  6745. #u10902 .text {
  6746. position:absolute;
  6747. align-self:center;
  6748. padding:2px 2px 2px 0px;
  6749. box-sizing:border-box;
  6750. width:100%;
  6751. }
  6752. #u10902_text {
  6753. border-width:0px;
  6754. word-wrap:break-word;
  6755. text-transform:none;
  6756. visibility:hidden;
  6757. }
  6758. #u10903_img {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:0px;
  6762. top:0px;
  6763. width:114px;
  6764. height:35px;
  6765. }
  6766. #u10903 {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:638px;
  6770. top:295px;
  6771. width:114px;
  6772. height:35px;
  6773. display:flex;
  6774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6775. font-weight:400;
  6776. font-style:normal;
  6777. font-size:12px;
  6778. color:#606266;
  6779. }
  6780. #u10903 .text {
  6781. position:absolute;
  6782. align-self:center;
  6783. padding:2px 2px 2px 0px;
  6784. box-sizing:border-box;
  6785. width:100%;
  6786. }
  6787. #u10903_text {
  6788. border-width:0px;
  6789. word-wrap:break-word;
  6790. text-transform:none;
  6791. visibility:hidden;
  6792. }
  6793. #u10904_img {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:112px;
  6799. height:35px;
  6800. }
  6801. #u10904 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:752px;
  6805. top:295px;
  6806. width:112px;
  6807. height:35px;
  6808. display:flex;
  6809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6810. font-weight:400;
  6811. font-style:normal;
  6812. font-size:12px;
  6813. color:#606266;
  6814. }
  6815. #u10904 .text {
  6816. position:absolute;
  6817. align-self:center;
  6818. padding:2px 2px 2px 0px;
  6819. box-sizing:border-box;
  6820. width:100%;
  6821. }
  6822. #u10904_text {
  6823. border-width:0px;
  6824. word-wrap:break-word;
  6825. text-transform:none;
  6826. visibility:hidden;
  6827. }
  6828. #u10905_img {
  6829. border-width:0px;
  6830. position:absolute;
  6831. left:0px;
  6832. top:0px;
  6833. width:114px;
  6834. height:35px;
  6835. }
  6836. #u10905 {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:864px;
  6840. top:295px;
  6841. width:114px;
  6842. height:35px;
  6843. display:flex;
  6844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:12px;
  6848. color:#606266;
  6849. }
  6850. #u10905 .text {
  6851. position:absolute;
  6852. align-self:center;
  6853. padding:2px 2px 2px 0px;
  6854. box-sizing:border-box;
  6855. width:100%;
  6856. }
  6857. #u10905_text {
  6858. border-width:0px;
  6859. word-wrap:break-word;
  6860. text-transform:none;
  6861. visibility:hidden;
  6862. }
  6863. #u10906_img {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:0px;
  6867. top:0px;
  6868. width:114px;
  6869. height:35px;
  6870. }
  6871. #u10906 {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:978px;
  6875. top:295px;
  6876. width:114px;
  6877. height:35px;
  6878. display:flex;
  6879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6880. font-weight:400;
  6881. font-style:normal;
  6882. font-size:12px;
  6883. color:#606266;
  6884. }
  6885. #u10906 .text {
  6886. position:absolute;
  6887. align-self:center;
  6888. padding:2px 2px 2px 0px;
  6889. box-sizing:border-box;
  6890. width:100%;
  6891. }
  6892. #u10906_text {
  6893. border-width:0px;
  6894. word-wrap:break-word;
  6895. text-transform:none;
  6896. visibility:hidden;
  6897. }
  6898. #u10907_img {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:0px;
  6902. top:0px;
  6903. width:130px;
  6904. height:35px;
  6905. }
  6906. #u10907 {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:1092px;
  6910. top:295px;
  6911. width:130px;
  6912. height:35px;
  6913. display:flex;
  6914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6915. font-weight:400;
  6916. font-style:normal;
  6917. font-size:12px;
  6918. color:#02A7F0;
  6919. }
  6920. #u10907 .text {
  6921. position:absolute;
  6922. align-self:center;
  6923. padding:2px 2px 2px 0px;
  6924. box-sizing:border-box;
  6925. width:100%;
  6926. }
  6927. #u10907_text {
  6928. border-width:0px;
  6929. word-wrap:break-word;
  6930. text-transform:none;
  6931. visibility:hidden;
  6932. }
  6933. #u10908_img {
  6934. border-width:0px;
  6935. position:absolute;
  6936. left:0px;
  6937. top:0px;
  6938. width:112px;
  6939. height:33px;
  6940. }
  6941. #u10908 {
  6942. border-width:0px;
  6943. position:absolute;
  6944. left:0px;
  6945. top:330px;
  6946. width:112px;
  6947. height:33px;
  6948. display:flex;
  6949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6950. font-weight:400;
  6951. font-style:normal;
  6952. font-size:12px;
  6953. color:#606266;
  6954. }
  6955. #u10908 .text {
  6956. position:absolute;
  6957. align-self:center;
  6958. padding:2px 2px 2px 0px;
  6959. box-sizing:border-box;
  6960. width:100%;
  6961. }
  6962. #u10908_text {
  6963. border-width:0px;
  6964. word-wrap:break-word;
  6965. text-transform:none;
  6966. visibility:hidden;
  6967. }
  6968. #u10909_img {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:0px;
  6972. top:0px;
  6973. width:100px;
  6974. height:33px;
  6975. }
  6976. #u10909 {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:112px;
  6980. top:330px;
  6981. width:100px;
  6982. height:33px;
  6983. display:flex;
  6984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6985. font-weight:400;
  6986. font-style:normal;
  6987. font-size:12px;
  6988. color:#606266;
  6989. }
  6990. #u10909 .text {
  6991. position:absolute;
  6992. align-self:center;
  6993. padding:2px 2px 2px 0px;
  6994. box-sizing:border-box;
  6995. width:100%;
  6996. }
  6997. #u10909_text {
  6998. border-width:0px;
  6999. word-wrap:break-word;
  7000. text-transform:none;
  7001. visibility:hidden;
  7002. }
  7003. #u10910_img {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:100px;
  7009. height:33px;
  7010. }
  7011. #u10910 {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:212px;
  7015. top:330px;
  7016. width:100px;
  7017. height:33px;
  7018. display:flex;
  7019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7020. font-weight:400;
  7021. font-style:normal;
  7022. font-size:12px;
  7023. color:#606266;
  7024. }
  7025. #u10910 .text {
  7026. position:absolute;
  7027. align-self:center;
  7028. padding:2px 2px 2px 0px;
  7029. box-sizing:border-box;
  7030. width:100%;
  7031. }
  7032. #u10910_text {
  7033. border-width:0px;
  7034. word-wrap:break-word;
  7035. text-transform:none;
  7036. visibility:hidden;
  7037. }
  7038. #u10911_img {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:114px;
  7044. height:33px;
  7045. }
  7046. #u10911 {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:312px;
  7050. top:330px;
  7051. width:114px;
  7052. height:33px;
  7053. display:flex;
  7054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7055. font-weight:400;
  7056. font-style:normal;
  7057. font-size:12px;
  7058. color:#606266;
  7059. }
  7060. #u10911 .text {
  7061. position:absolute;
  7062. align-self:center;
  7063. padding:2px 2px 2px 0px;
  7064. box-sizing:border-box;
  7065. width:100%;
  7066. }
  7067. #u10911_text {
  7068. border-width:0px;
  7069. word-wrap:break-word;
  7070. text-transform:none;
  7071. visibility:hidden;
  7072. }
  7073. #u10912_img {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:0px;
  7077. top:0px;
  7078. width:100px;
  7079. height:33px;
  7080. }
  7081. #u10912 {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:426px;
  7085. top:330px;
  7086. width:100px;
  7087. height:33px;
  7088. display:flex;
  7089. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. font-size:12px;
  7093. color:#606266;
  7094. }
  7095. #u10912 .text {
  7096. position:absolute;
  7097. align-self:center;
  7098. padding:2px 2px 2px 0px;
  7099. box-sizing:border-box;
  7100. width:100%;
  7101. }
  7102. #u10912_text {
  7103. border-width:0px;
  7104. word-wrap:break-word;
  7105. text-transform:none;
  7106. visibility:hidden;
  7107. }
  7108. #u10913_img {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:0px;
  7112. top:0px;
  7113. width:112px;
  7114. height:33px;
  7115. }
  7116. #u10913 {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:526px;
  7120. top:330px;
  7121. width:112px;
  7122. height:33px;
  7123. display:flex;
  7124. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:12px;
  7128. color:#606266;
  7129. }
  7130. #u10913 .text {
  7131. position:absolute;
  7132. align-self:center;
  7133. padding:2px 2px 2px 0px;
  7134. box-sizing:border-box;
  7135. width:100%;
  7136. }
  7137. #u10913_text {
  7138. border-width:0px;
  7139. word-wrap:break-word;
  7140. text-transform:none;
  7141. visibility:hidden;
  7142. }
  7143. #u10914_img {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:114px;
  7149. height:33px;
  7150. }
  7151. #u10914 {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:638px;
  7155. top:330px;
  7156. width:114px;
  7157. height:33px;
  7158. display:flex;
  7159. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7160. font-weight:400;
  7161. font-style:normal;
  7162. font-size:12px;
  7163. color:#606266;
  7164. }
  7165. #u10914 .text {
  7166. position:absolute;
  7167. align-self:center;
  7168. padding:2px 2px 2px 0px;
  7169. box-sizing:border-box;
  7170. width:100%;
  7171. }
  7172. #u10914_text {
  7173. border-width:0px;
  7174. word-wrap:break-word;
  7175. text-transform:none;
  7176. visibility:hidden;
  7177. }
  7178. #u10915_img {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:112px;
  7184. height:33px;
  7185. }
  7186. #u10915 {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:752px;
  7190. top:330px;
  7191. width:112px;
  7192. height:33px;
  7193. display:flex;
  7194. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7195. font-weight:400;
  7196. font-style:normal;
  7197. font-size:12px;
  7198. color:#606266;
  7199. }
  7200. #u10915 .text {
  7201. position:absolute;
  7202. align-self:center;
  7203. padding:2px 2px 2px 0px;
  7204. box-sizing:border-box;
  7205. width:100%;
  7206. }
  7207. #u10915_text {
  7208. border-width:0px;
  7209. word-wrap:break-word;
  7210. text-transform:none;
  7211. visibility:hidden;
  7212. }
  7213. #u10916_img {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:0px;
  7217. top:0px;
  7218. width:114px;
  7219. height:33px;
  7220. }
  7221. #u10916 {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:864px;
  7225. top:330px;
  7226. width:114px;
  7227. height:33px;
  7228. display:flex;
  7229. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7230. font-weight:400;
  7231. font-style:normal;
  7232. font-size:12px;
  7233. color:#606266;
  7234. }
  7235. #u10916 .text {
  7236. position:absolute;
  7237. align-self:center;
  7238. padding:2px 2px 2px 0px;
  7239. box-sizing:border-box;
  7240. width:100%;
  7241. }
  7242. #u10916_text {
  7243. border-width:0px;
  7244. word-wrap:break-word;
  7245. text-transform:none;
  7246. visibility:hidden;
  7247. }
  7248. #u10917_img {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:0px;
  7252. top:0px;
  7253. width:114px;
  7254. height:33px;
  7255. }
  7256. #u10917 {
  7257. border-width:0px;
  7258. position:absolute;
  7259. left:978px;
  7260. top:330px;
  7261. width:114px;
  7262. height:33px;
  7263. display:flex;
  7264. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7265. font-weight:400;
  7266. font-style:normal;
  7267. font-size:12px;
  7268. color:#606266;
  7269. }
  7270. #u10917 .text {
  7271. position:absolute;
  7272. align-self:center;
  7273. padding:2px 2px 2px 0px;
  7274. box-sizing:border-box;
  7275. width:100%;
  7276. }
  7277. #u10917_text {
  7278. border-width:0px;
  7279. word-wrap:break-word;
  7280. text-transform:none;
  7281. visibility:hidden;
  7282. }
  7283. #u10918_img {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:0px;
  7287. top:0px;
  7288. width:130px;
  7289. height:33px;
  7290. }
  7291. #u10918 {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:1092px;
  7295. top:330px;
  7296. width:130px;
  7297. height:33px;
  7298. display:flex;
  7299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7300. font-weight:400;
  7301. font-style:normal;
  7302. font-size:12px;
  7303. color:#02A7F0;
  7304. }
  7305. #u10918 .text {
  7306. position:absolute;
  7307. align-self:center;
  7308. padding:2px 2px 2px 0px;
  7309. box-sizing:border-box;
  7310. width:100%;
  7311. }
  7312. #u10918_text {
  7313. border-width:0px;
  7314. word-wrap:break-word;
  7315. text-transform:none;
  7316. visibility:hidden;
  7317. }
  7318. #u10919 {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:1669px;
  7322. top:230px;
  7323. width:1332px;
  7324. height:364px;
  7325. }
  7326. #u10920_img {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:80px;
  7332. height:39px;
  7333. }
  7334. #u10920 {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:0px;
  7338. top:0px;
  7339. width:80px;
  7340. height:39px;
  7341. display:flex;
  7342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7343. font-weight:400;
  7344. font-style:normal;
  7345. font-size:12px;
  7346. color:#FFFFFF;
  7347. }
  7348. #u10920 .text {
  7349. position:absolute;
  7350. align-self:center;
  7351. padding:2px 2px 2px 0px;
  7352. box-sizing:border-box;
  7353. width:100%;
  7354. }
  7355. #u10920_text {
  7356. border-width:0px;
  7357. word-wrap:break-word;
  7358. text-transform:none;
  7359. }
  7360. #u10921_img {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:0px;
  7364. top:0px;
  7365. width:80px;
  7366. height:39px;
  7367. }
  7368. #u10921 {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:80px;
  7372. top:0px;
  7373. width:80px;
  7374. height:39px;
  7375. display:flex;
  7376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7377. font-weight:400;
  7378. font-style:normal;
  7379. font-size:12px;
  7380. color:#FFFFFF;
  7381. }
  7382. #u10921 .text {
  7383. position:absolute;
  7384. align-self:center;
  7385. padding:2px 2px 2px 0px;
  7386. box-sizing:border-box;
  7387. width:100%;
  7388. }
  7389. #u10921_text {
  7390. border-width:0px;
  7391. word-wrap:break-word;
  7392. text-transform:none;
  7393. }
  7394. #u10922_img {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:0px;
  7398. top:0px;
  7399. width:80px;
  7400. height:39px;
  7401. }
  7402. #u10922 {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:160px;
  7406. top:0px;
  7407. width:80px;
  7408. height:39px;
  7409. display:flex;
  7410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7411. font-weight:400;
  7412. font-style:normal;
  7413. font-size:12px;
  7414. color:#FFFFFF;
  7415. }
  7416. #u10922 .text {
  7417. position:absolute;
  7418. align-self:center;
  7419. padding:2px 2px 2px 0px;
  7420. box-sizing:border-box;
  7421. width:100%;
  7422. }
  7423. #u10922_text {
  7424. border-width:0px;
  7425. word-wrap:break-word;
  7426. text-transform:none;
  7427. }
  7428. #u10923_img {
  7429. border-width:0px;
  7430. position:absolute;
  7431. left:0px;
  7432. top:0px;
  7433. width:80px;
  7434. height:39px;
  7435. }
  7436. #u10923 {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:240px;
  7440. top:0px;
  7441. width:80px;
  7442. height:39px;
  7443. display:flex;
  7444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7445. font-weight:400;
  7446. font-style:normal;
  7447. font-size:12px;
  7448. color:#FFFFFF;
  7449. }
  7450. #u10923 .text {
  7451. position:absolute;
  7452. align-self:center;
  7453. padding:2px 2px 2px 0px;
  7454. box-sizing:border-box;
  7455. width:100%;
  7456. }
  7457. #u10923_text {
  7458. border-width:0px;
  7459. word-wrap:break-word;
  7460. text-transform:none;
  7461. }
  7462. #u10924_img {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:80px;
  7468. height:39px;
  7469. }
  7470. #u10924 {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:320px;
  7474. top:0px;
  7475. width:80px;
  7476. height:39px;
  7477. display:flex;
  7478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7479. font-weight:400;
  7480. font-style:normal;
  7481. font-size:12px;
  7482. color:#FFFFFF;
  7483. }
  7484. #u10924 .text {
  7485. position:absolute;
  7486. align-self:center;
  7487. padding:2px 2px 2px 0px;
  7488. box-sizing:border-box;
  7489. width:100%;
  7490. }
  7491. #u10924_text {
  7492. border-width:0px;
  7493. word-wrap:break-word;
  7494. text-transform:none;
  7495. }
  7496. #u10925_img {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:0px;
  7500. top:0px;
  7501. width:80px;
  7502. height:39px;
  7503. }
  7504. #u10925 {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:400px;
  7508. top:0px;
  7509. width:80px;
  7510. height:39px;
  7511. display:flex;
  7512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7513. font-weight:400;
  7514. font-style:normal;
  7515. font-size:12px;
  7516. color:#FFFFFF;
  7517. }
  7518. #u10925 .text {
  7519. position:absolute;
  7520. align-self:center;
  7521. padding:2px 2px 2px 0px;
  7522. box-sizing:border-box;
  7523. width:100%;
  7524. }
  7525. #u10925_text {
  7526. border-width:0px;
  7527. word-wrap:break-word;
  7528. text-transform:none;
  7529. }
  7530. #u10926_img {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:0px;
  7534. top:0px;
  7535. width:80px;
  7536. height:39px;
  7537. }
  7538. #u10926 {
  7539. border-width:0px;
  7540. position:absolute;
  7541. left:480px;
  7542. top:0px;
  7543. width:80px;
  7544. height:39px;
  7545. display:flex;
  7546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7547. font-weight:400;
  7548. font-style:normal;
  7549. font-size:12px;
  7550. color:#FFFFFF;
  7551. }
  7552. #u10926 .text {
  7553. position:absolute;
  7554. align-self:center;
  7555. padding:2px 2px 2px 0px;
  7556. box-sizing:border-box;
  7557. width:100%;
  7558. }
  7559. #u10926_text {
  7560. border-width:0px;
  7561. word-wrap:break-word;
  7562. text-transform:none;
  7563. }
  7564. #u10927_img {
  7565. border-width:0px;
  7566. position:absolute;
  7567. left:0px;
  7568. top:0px;
  7569. width:102px;
  7570. height:39px;
  7571. }
  7572. #u10927 {
  7573. border-width:0px;
  7574. position:absolute;
  7575. left:560px;
  7576. top:0px;
  7577. width:102px;
  7578. height:39px;
  7579. display:flex;
  7580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7581. font-weight:400;
  7582. font-style:normal;
  7583. font-size:12px;
  7584. color:#FFFFFF;
  7585. }
  7586. #u10927 .text {
  7587. position:absolute;
  7588. align-self:center;
  7589. padding:2px 2px 2px 0px;
  7590. box-sizing:border-box;
  7591. width:100%;
  7592. }
  7593. #u10927_text {
  7594. border-width:0px;
  7595. word-wrap:break-word;
  7596. text-transform:none;
  7597. }
  7598. #u10928_img {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:0px;
  7602. top:0px;
  7603. width:90px;
  7604. height:39px;
  7605. }
  7606. #u10928 {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:662px;
  7610. top:0px;
  7611. width:90px;
  7612. height:39px;
  7613. display:flex;
  7614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7615. font-weight:400;
  7616. font-style:normal;
  7617. font-size:12px;
  7618. color:#FFFFFF;
  7619. }
  7620. #u10928 .text {
  7621. position:absolute;
  7622. align-self:center;
  7623. padding:2px 2px 2px 0px;
  7624. box-sizing:border-box;
  7625. width:100%;
  7626. }
  7627. #u10928_text {
  7628. border-width:0px;
  7629. word-wrap:break-word;
  7630. text-transform:none;
  7631. }
  7632. #u10929_img {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:0px;
  7636. top:0px;
  7637. width:80px;
  7638. height:39px;
  7639. }
  7640. #u10929 {
  7641. border-width:0px;
  7642. position:absolute;
  7643. left:752px;
  7644. top:0px;
  7645. width:80px;
  7646. height:39px;
  7647. display:flex;
  7648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7649. font-weight:400;
  7650. font-style:normal;
  7651. font-size:12px;
  7652. color:#FFFFFF;
  7653. }
  7654. #u10929 .text {
  7655. position:absolute;
  7656. align-self:center;
  7657. padding:2px 2px 2px 0px;
  7658. box-sizing:border-box;
  7659. width:100%;
  7660. }
  7661. #u10929_text {
  7662. border-width:0px;
  7663. word-wrap:break-word;
  7664. text-transform:none;
  7665. }
  7666. #u10930_img {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:0px;
  7670. top:0px;
  7671. width:80px;
  7672. height:39px;
  7673. }
  7674. #u10930 {
  7675. border-width:0px;
  7676. position:absolute;
  7677. left:832px;
  7678. top:0px;
  7679. width:80px;
  7680. height:39px;
  7681. display:flex;
  7682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7683. font-weight:400;
  7684. font-style:normal;
  7685. font-size:12px;
  7686. color:#FFFFFF;
  7687. }
  7688. #u10930 .text {
  7689. position:absolute;
  7690. align-self:center;
  7691. padding:2px 2px 2px 0px;
  7692. box-sizing:border-box;
  7693. width:100%;
  7694. }
  7695. #u10930_text {
  7696. border-width:0px;
  7697. word-wrap:break-word;
  7698. text-transform:none;
  7699. }
  7700. #u10931_img {
  7701. border-width:0px;
  7702. position:absolute;
  7703. left:0px;
  7704. top:0px;
  7705. width:80px;
  7706. height:39px;
  7707. }
  7708. #u10931 {
  7709. border-width:0px;
  7710. position:absolute;
  7711. left:912px;
  7712. top:0px;
  7713. width:80px;
  7714. height:39px;
  7715. display:flex;
  7716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7717. font-weight:400;
  7718. font-style:normal;
  7719. font-size:12px;
  7720. color:#FFFFFF;
  7721. }
  7722. #u10931 .text {
  7723. position:absolute;
  7724. align-self:center;
  7725. padding:2px 2px 2px 0px;
  7726. box-sizing:border-box;
  7727. width:100%;
  7728. }
  7729. #u10931_text {
  7730. border-width:0px;
  7731. word-wrap:break-word;
  7732. text-transform:none;
  7733. }
  7734. #u10932_img {
  7735. border-width:0px;
  7736. position:absolute;
  7737. left:0px;
  7738. top:0px;
  7739. width:80px;
  7740. height:39px;
  7741. }
  7742. #u10932 {
  7743. border-width:0px;
  7744. position:absolute;
  7745. left:992px;
  7746. top:0px;
  7747. width:80px;
  7748. height:39px;
  7749. display:flex;
  7750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7751. font-weight:400;
  7752. font-style:normal;
  7753. font-size:12px;
  7754. color:#FFFFFF;
  7755. }
  7756. #u10932 .text {
  7757. position:absolute;
  7758. align-self:center;
  7759. padding:2px 2px 2px 0px;
  7760. box-sizing:border-box;
  7761. width:100%;
  7762. }
  7763. #u10932_text {
  7764. border-width:0px;
  7765. word-wrap:break-word;
  7766. text-transform:none;
  7767. }
  7768. #u10933_img {
  7769. border-width:0px;
  7770. position:absolute;
  7771. left:0px;
  7772. top:0px;
  7773. width:80px;
  7774. height:39px;
  7775. }
  7776. #u10933 {
  7777. border-width:0px;
  7778. position:absolute;
  7779. left:1072px;
  7780. top:0px;
  7781. width:80px;
  7782. height:39px;
  7783. display:flex;
  7784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7785. font-weight:400;
  7786. font-style:normal;
  7787. font-size:12px;
  7788. color:#FFFFFF;
  7789. }
  7790. #u10933 .text {
  7791. position:absolute;
  7792. align-self:center;
  7793. padding:2px 2px 2px 0px;
  7794. box-sizing:border-box;
  7795. width:100%;
  7796. }
  7797. #u10933_text {
  7798. border-width:0px;
  7799. word-wrap:break-word;
  7800. text-transform:none;
  7801. }
  7802. #u10934_img {
  7803. border-width:0px;
  7804. position:absolute;
  7805. left:0px;
  7806. top:0px;
  7807. width:180px;
  7808. height:39px;
  7809. }
  7810. #u10934 {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:1152px;
  7814. top:0px;
  7815. width:180px;
  7816. height:39px;
  7817. display:flex;
  7818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7819. font-weight:400;
  7820. font-style:normal;
  7821. font-size:12px;
  7822. color:#FFFFFF;
  7823. }
  7824. #u10934 .text {
  7825. position:absolute;
  7826. align-self:center;
  7827. padding:2px 2px 2px 0px;
  7828. box-sizing:border-box;
  7829. width:100%;
  7830. }
  7831. #u10934_text {
  7832. border-width:0px;
  7833. word-wrap:break-word;
  7834. text-transform:none;
  7835. }
  7836. #u10935_img {
  7837. border-width:0px;
  7838. position:absolute;
  7839. left:0px;
  7840. top:0px;
  7841. width:80px;
  7842. height:38px;
  7843. }
  7844. #u10935 {
  7845. border-width:0px;
  7846. position:absolute;
  7847. left:0px;
  7848. top:39px;
  7849. width:80px;
  7850. height:38px;
  7851. display:flex;
  7852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7853. font-weight:400;
  7854. font-style:normal;
  7855. font-size:12px;
  7856. }
  7857. #u10935 .text {
  7858. position:absolute;
  7859. align-self:center;
  7860. padding:2px 2px 2px 0px;
  7861. box-sizing:border-box;
  7862. width:100%;
  7863. }
  7864. #u10935_text {
  7865. border-width:0px;
  7866. word-wrap:break-word;
  7867. text-transform:none;
  7868. visibility:hidden;
  7869. }
  7870. #u10936_img {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:80px;
  7876. height:38px;
  7877. }
  7878. #u10936 {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:80px;
  7882. top:39px;
  7883. width:80px;
  7884. height:38px;
  7885. display:flex;
  7886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7887. font-weight:400;
  7888. font-style:normal;
  7889. font-size:12px;
  7890. }
  7891. #u10936 .text {
  7892. position:absolute;
  7893. align-self:center;
  7894. padding:2px 2px 2px 0px;
  7895. box-sizing:border-box;
  7896. width:100%;
  7897. }
  7898. #u10936_text {
  7899. border-width:0px;
  7900. word-wrap:break-word;
  7901. text-transform:none;
  7902. visibility:hidden;
  7903. }
  7904. #u10937_img {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:0px;
  7908. top:0px;
  7909. width:80px;
  7910. height:38px;
  7911. }
  7912. #u10937 {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:160px;
  7916. top:39px;
  7917. width:80px;
  7918. height:38px;
  7919. display:flex;
  7920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7921. font-weight:400;
  7922. font-style:normal;
  7923. font-size:12px;
  7924. }
  7925. #u10937 .text {
  7926. position:absolute;
  7927. align-self:center;
  7928. padding:2px 2px 2px 0px;
  7929. box-sizing:border-box;
  7930. width:100%;
  7931. }
  7932. #u10937_text {
  7933. border-width:0px;
  7934. word-wrap:break-word;
  7935. text-transform:none;
  7936. visibility:hidden;
  7937. }
  7938. #u10938_img {
  7939. border-width:0px;
  7940. position:absolute;
  7941. left:0px;
  7942. top:0px;
  7943. width:80px;
  7944. height:38px;
  7945. }
  7946. #u10938 {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:240px;
  7950. top:39px;
  7951. width:80px;
  7952. height:38px;
  7953. display:flex;
  7954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7955. font-weight:400;
  7956. font-style:normal;
  7957. font-size:12px;
  7958. }
  7959. #u10938 .text {
  7960. position:absolute;
  7961. align-self:center;
  7962. padding:2px 2px 2px 0px;
  7963. box-sizing:border-box;
  7964. width:100%;
  7965. }
  7966. #u10938_text {
  7967. border-width:0px;
  7968. word-wrap:break-word;
  7969. text-transform:none;
  7970. }
  7971. #u10939_img {
  7972. border-width:0px;
  7973. position:absolute;
  7974. left:0px;
  7975. top:0px;
  7976. width:80px;
  7977. height:38px;
  7978. }
  7979. #u10939 {
  7980. border-width:0px;
  7981. position:absolute;
  7982. left:320px;
  7983. top:39px;
  7984. width:80px;
  7985. height:38px;
  7986. display:flex;
  7987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7988. font-weight:400;
  7989. font-style:normal;
  7990. font-size:12px;
  7991. }
  7992. #u10939 .text {
  7993. position:absolute;
  7994. align-self:center;
  7995. padding:2px 2px 2px 0px;
  7996. box-sizing:border-box;
  7997. width:100%;
  7998. }
  7999. #u10939_text {
  8000. border-width:0px;
  8001. word-wrap:break-word;
  8002. text-transform:none;
  8003. visibility:hidden;
  8004. }
  8005. #u10940_img {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:0px;
  8009. top:0px;
  8010. width:80px;
  8011. height:38px;
  8012. }
  8013. #u10940 {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:400px;
  8017. top:39px;
  8018. width:80px;
  8019. height:38px;
  8020. display:flex;
  8021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8022. font-weight:400;
  8023. font-style:normal;
  8024. font-size:12px;
  8025. }
  8026. #u10940 .text {
  8027. position:absolute;
  8028. align-self:center;
  8029. padding:2px 2px 2px 0px;
  8030. box-sizing:border-box;
  8031. width:100%;
  8032. }
  8033. #u10940_text {
  8034. border-width:0px;
  8035. word-wrap:break-word;
  8036. text-transform:none;
  8037. visibility:hidden;
  8038. }
  8039. #u10941_img {
  8040. border-width:0px;
  8041. position:absolute;
  8042. left:0px;
  8043. top:0px;
  8044. width:80px;
  8045. height:38px;
  8046. }
  8047. #u10941 {
  8048. border-width:0px;
  8049. position:absolute;
  8050. left:480px;
  8051. top:39px;
  8052. width:80px;
  8053. height:38px;
  8054. display:flex;
  8055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8056. font-weight:400;
  8057. font-style:normal;
  8058. font-size:12px;
  8059. }
  8060. #u10941 .text {
  8061. position:absolute;
  8062. align-self:center;
  8063. padding:2px 2px 2px 0px;
  8064. box-sizing:border-box;
  8065. width:100%;
  8066. }
  8067. #u10941_text {
  8068. border-width:0px;
  8069. word-wrap:break-word;
  8070. text-transform:none;
  8071. }
  8072. #u10942_img {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:0px;
  8076. top:0px;
  8077. width:102px;
  8078. height:38px;
  8079. }
  8080. #u10942 {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:560px;
  8084. top:39px;
  8085. width:102px;
  8086. height:38px;
  8087. display:flex;
  8088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8089. font-weight:400;
  8090. font-style:normal;
  8091. font-size:12px;
  8092. }
  8093. #u10942 .text {
  8094. position:absolute;
  8095. align-self:center;
  8096. padding:2px 2px 2px 0px;
  8097. box-sizing:border-box;
  8098. width:100%;
  8099. }
  8100. #u10942_text {
  8101. border-width:0px;
  8102. word-wrap:break-word;
  8103. text-transform:none;
  8104. }
  8105. #u10943_img {
  8106. border-width:0px;
  8107. position:absolute;
  8108. left:0px;
  8109. top:0px;
  8110. width:90px;
  8111. height:38px;
  8112. }
  8113. #u10943 {
  8114. border-width:0px;
  8115. position:absolute;
  8116. left:662px;
  8117. top:39px;
  8118. width:90px;
  8119. height:38px;
  8120. display:flex;
  8121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8122. font-weight:400;
  8123. font-style:normal;
  8124. font-size:12px;
  8125. color:#333333;
  8126. }
  8127. #u10943 .text {
  8128. position:absolute;
  8129. align-self:center;
  8130. padding:2px 2px 2px 0px;
  8131. box-sizing:border-box;
  8132. width:100%;
  8133. }
  8134. #u10943_text {
  8135. border-width:0px;
  8136. word-wrap:break-word;
  8137. text-transform:none;
  8138. }
  8139. #u10944_img {
  8140. border-width:0px;
  8141. position:absolute;
  8142. left:0px;
  8143. top:0px;
  8144. width:80px;
  8145. height:38px;
  8146. }
  8147. #u10944 {
  8148. border-width:0px;
  8149. position:absolute;
  8150. left:752px;
  8151. top:39px;
  8152. width:80px;
  8153. height:38px;
  8154. display:flex;
  8155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. font-size:12px;
  8159. color:#AAAAAA;
  8160. }
  8161. #u10944 .text {
  8162. position:absolute;
  8163. align-self:center;
  8164. padding:2px 2px 2px 0px;
  8165. box-sizing:border-box;
  8166. width:100%;
  8167. }
  8168. #u10944_text {
  8169. border-width:0px;
  8170. word-wrap:break-word;
  8171. text-transform:none;
  8172. }
  8173. #u10945_img {
  8174. border-width:0px;
  8175. position:absolute;
  8176. left:0px;
  8177. top:0px;
  8178. width:80px;
  8179. height:38px;
  8180. }
  8181. #u10945 {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:832px;
  8185. top:39px;
  8186. width:80px;
  8187. height:38px;
  8188. display:flex;
  8189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8190. font-weight:400;
  8191. font-style:normal;
  8192. font-size:12px;
  8193. color:#333333;
  8194. }
  8195. #u10945 .text {
  8196. position:absolute;
  8197. align-self:center;
  8198. padding:2px 2px 2px 0px;
  8199. box-sizing:border-box;
  8200. width:100%;
  8201. }
  8202. #u10945_text {
  8203. border-width:0px;
  8204. word-wrap:break-word;
  8205. text-transform:none;
  8206. }
  8207. #u10946_img {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:0px;
  8211. top:0px;
  8212. width:80px;
  8213. height:38px;
  8214. }
  8215. #u10946 {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:912px;
  8219. top:39px;
  8220. width:80px;
  8221. height:38px;
  8222. display:flex;
  8223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8224. font-weight:400;
  8225. font-style:normal;
  8226. font-size:12px;
  8227. color:#333333;
  8228. }
  8229. #u10946 .text {
  8230. position:absolute;
  8231. align-self:center;
  8232. padding:2px 2px 2px 0px;
  8233. box-sizing:border-box;
  8234. width:100%;
  8235. }
  8236. #u10946_text {
  8237. border-width:0px;
  8238. word-wrap:break-word;
  8239. text-transform:none;
  8240. }
  8241. #u10947_img {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:0px;
  8245. top:0px;
  8246. width:80px;
  8247. height:38px;
  8248. }
  8249. #u10947 {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:992px;
  8253. top:39px;
  8254. width:80px;
  8255. height:38px;
  8256. display:flex;
  8257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8258. font-weight:400;
  8259. font-style:normal;
  8260. font-size:12px;
  8261. color:#AAAAAA;
  8262. }
  8263. #u10947 .text {
  8264. position:absolute;
  8265. align-self:center;
  8266. padding:2px 2px 2px 0px;
  8267. box-sizing:border-box;
  8268. width:100%;
  8269. }
  8270. #u10947_text {
  8271. border-width:0px;
  8272. word-wrap:break-word;
  8273. text-transform:none;
  8274. }
  8275. #u10948_img {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:80px;
  8281. height:38px;
  8282. }
  8283. #u10948 {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:1072px;
  8287. top:39px;
  8288. width:80px;
  8289. height:38px;
  8290. display:flex;
  8291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8292. font-weight:400;
  8293. font-style:normal;
  8294. font-size:12px;
  8295. color:#AAAAAA;
  8296. }
  8297. #u10948 .text {
  8298. position:absolute;
  8299. align-self:center;
  8300. padding:2px 2px 2px 0px;
  8301. box-sizing:border-box;
  8302. width:100%;
  8303. }
  8304. #u10948_text {
  8305. border-width:0px;
  8306. word-wrap:break-word;
  8307. text-transform:none;
  8308. }
  8309. #u10949_img {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:0px;
  8313. top:0px;
  8314. width:180px;
  8315. height:38px;
  8316. }
  8317. #u10949 {
  8318. border-width:0px;
  8319. position:absolute;
  8320. left:1152px;
  8321. top:39px;
  8322. width:180px;
  8323. height:38px;
  8324. display:flex;
  8325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8326. font-weight:400;
  8327. font-style:normal;
  8328. font-size:12px;
  8329. color:#1890FF;
  8330. }
  8331. #u10949 .text {
  8332. position:absolute;
  8333. align-self:center;
  8334. padding:2px 2px 2px 0px;
  8335. box-sizing:border-box;
  8336. width:100%;
  8337. }
  8338. #u10949_text {
  8339. border-width:0px;
  8340. word-wrap:break-word;
  8341. text-transform:none;
  8342. }
  8343. #u10950_img {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:0px;
  8347. top:0px;
  8348. width:80px;
  8349. height:38px;
  8350. }
  8351. #u10950 {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:0px;
  8355. top:77px;
  8356. width:80px;
  8357. height:38px;
  8358. display:flex;
  8359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8360. font-weight:400;
  8361. font-style:normal;
  8362. font-size:12px;
  8363. }
  8364. #u10950 .text {
  8365. position:absolute;
  8366. align-self:center;
  8367. padding:2px 2px 2px 0px;
  8368. box-sizing:border-box;
  8369. width:100%;
  8370. }
  8371. #u10950_text {
  8372. border-width:0px;
  8373. word-wrap:break-word;
  8374. text-transform:none;
  8375. visibility:hidden;
  8376. }
  8377. #u10951_img {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:0px;
  8381. top:0px;
  8382. width:80px;
  8383. height:38px;
  8384. }
  8385. #u10951 {
  8386. border-width:0px;
  8387. position:absolute;
  8388. left:80px;
  8389. top:77px;
  8390. width:80px;
  8391. height:38px;
  8392. display:flex;
  8393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8394. font-weight:400;
  8395. font-style:normal;
  8396. font-size:12px;
  8397. }
  8398. #u10951 .text {
  8399. position:absolute;
  8400. align-self:center;
  8401. padding:2px 2px 2px 0px;
  8402. box-sizing:border-box;
  8403. width:100%;
  8404. }
  8405. #u10951_text {
  8406. border-width:0px;
  8407. word-wrap:break-word;
  8408. text-transform:none;
  8409. visibility:hidden;
  8410. }
  8411. #u10952_img {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:0px;
  8415. top:0px;
  8416. width:80px;
  8417. height:38px;
  8418. }
  8419. #u10952 {
  8420. border-width:0px;
  8421. position:absolute;
  8422. left:160px;
  8423. top:77px;
  8424. width:80px;
  8425. height:38px;
  8426. display:flex;
  8427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8428. font-weight:400;
  8429. font-style:normal;
  8430. font-size:12px;
  8431. }
  8432. #u10952 .text {
  8433. position:absolute;
  8434. align-self:center;
  8435. padding:2px 2px 2px 0px;
  8436. box-sizing:border-box;
  8437. width:100%;
  8438. }
  8439. #u10952_text {
  8440. border-width:0px;
  8441. word-wrap:break-word;
  8442. text-transform:none;
  8443. visibility:hidden;
  8444. }
  8445. #u10953_img {
  8446. border-width:0px;
  8447. position:absolute;
  8448. left:0px;
  8449. top:0px;
  8450. width:80px;
  8451. height:38px;
  8452. }
  8453. #u10953 {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:240px;
  8457. top:77px;
  8458. width:80px;
  8459. height:38px;
  8460. display:flex;
  8461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8462. font-weight:400;
  8463. font-style:normal;
  8464. font-size:12px;
  8465. }
  8466. #u10953 .text {
  8467. position:absolute;
  8468. align-self:center;
  8469. padding:2px 2px 2px 0px;
  8470. box-sizing:border-box;
  8471. width:100%;
  8472. }
  8473. #u10953_text {
  8474. border-width:0px;
  8475. word-wrap:break-word;
  8476. text-transform:none;
  8477. }
  8478. #u10954_img {
  8479. border-width:0px;
  8480. position:absolute;
  8481. left:0px;
  8482. top:0px;
  8483. width:80px;
  8484. height:38px;
  8485. }
  8486. #u10954 {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:320px;
  8490. top:77px;
  8491. width:80px;
  8492. height:38px;
  8493. display:flex;
  8494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8495. font-weight:400;
  8496. font-style:normal;
  8497. font-size:12px;
  8498. }
  8499. #u10954 .text {
  8500. position:absolute;
  8501. align-self:center;
  8502. padding:2px 2px 2px 0px;
  8503. box-sizing:border-box;
  8504. width:100%;
  8505. }
  8506. #u10954_text {
  8507. border-width:0px;
  8508. word-wrap:break-word;
  8509. text-transform:none;
  8510. visibility:hidden;
  8511. }
  8512. #u10955_img {
  8513. border-width:0px;
  8514. position:absolute;
  8515. left:0px;
  8516. top:0px;
  8517. width:80px;
  8518. height:38px;
  8519. }
  8520. #u10955 {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:400px;
  8524. top:77px;
  8525. width:80px;
  8526. height:38px;
  8527. display:flex;
  8528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8529. font-weight:400;
  8530. font-style:normal;
  8531. font-size:12px;
  8532. }
  8533. #u10955 .text {
  8534. position:absolute;
  8535. align-self:center;
  8536. padding:2px 2px 2px 0px;
  8537. box-sizing:border-box;
  8538. width:100%;
  8539. }
  8540. #u10955_text {
  8541. border-width:0px;
  8542. word-wrap:break-word;
  8543. text-transform:none;
  8544. visibility:hidden;
  8545. }
  8546. #u10956_img {
  8547. border-width:0px;
  8548. position:absolute;
  8549. left:0px;
  8550. top:0px;
  8551. width:80px;
  8552. height:38px;
  8553. }
  8554. #u10956 {
  8555. border-width:0px;
  8556. position:absolute;
  8557. left:480px;
  8558. top:77px;
  8559. width:80px;
  8560. height:38px;
  8561. display:flex;
  8562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8563. font-weight:400;
  8564. font-style:normal;
  8565. font-size:12px;
  8566. }
  8567. #u10956 .text {
  8568. position:absolute;
  8569. align-self:center;
  8570. padding:2px 2px 2px 0px;
  8571. box-sizing:border-box;
  8572. width:100%;
  8573. }
  8574. #u10956_text {
  8575. border-width:0px;
  8576. word-wrap:break-word;
  8577. text-transform:none;
  8578. }
  8579. #u10957_img {
  8580. border-width:0px;
  8581. position:absolute;
  8582. left:0px;
  8583. top:0px;
  8584. width:102px;
  8585. height:38px;
  8586. }
  8587. #u10957 {
  8588. border-width:0px;
  8589. position:absolute;
  8590. left:560px;
  8591. top:77px;
  8592. width:102px;
  8593. height:38px;
  8594. display:flex;
  8595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8596. font-weight:400;
  8597. font-style:normal;
  8598. font-size:12px;
  8599. }
  8600. #u10957 .text {
  8601. position:absolute;
  8602. align-self:center;
  8603. padding:2px 2px 2px 0px;
  8604. box-sizing:border-box;
  8605. width:100%;
  8606. }
  8607. #u10957_text {
  8608. border-width:0px;
  8609. word-wrap:break-word;
  8610. text-transform:none;
  8611. }
  8612. #u10958_img {
  8613. border-width:0px;
  8614. position:absolute;
  8615. left:0px;
  8616. top:0px;
  8617. width:90px;
  8618. height:38px;
  8619. }
  8620. #u10958 {
  8621. border-width:0px;
  8622. position:absolute;
  8623. left:662px;
  8624. top:77px;
  8625. width:90px;
  8626. height:38px;
  8627. display:flex;
  8628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8629. font-weight:400;
  8630. font-style:normal;
  8631. font-size:12px;
  8632. color:#333333;
  8633. }
  8634. #u10958 .text {
  8635. position:absolute;
  8636. align-self:center;
  8637. padding:2px 2px 2px 0px;
  8638. box-sizing:border-box;
  8639. width:100%;
  8640. }
  8641. #u10958_text {
  8642. border-width:0px;
  8643. word-wrap:break-word;
  8644. text-transform:none;
  8645. }
  8646. #u10959_img {
  8647. border-width:0px;
  8648. position:absolute;
  8649. left:0px;
  8650. top:0px;
  8651. width:80px;
  8652. height:38px;
  8653. }
  8654. #u10959 {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:752px;
  8658. top:77px;
  8659. width:80px;
  8660. height:38px;
  8661. display:flex;
  8662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8663. font-weight:400;
  8664. font-style:normal;
  8665. font-size:12px;
  8666. color:#AAAAAA;
  8667. }
  8668. #u10959 .text {
  8669. position:absolute;
  8670. align-self:center;
  8671. padding:2px 2px 2px 0px;
  8672. box-sizing:border-box;
  8673. width:100%;
  8674. }
  8675. #u10959_text {
  8676. border-width:0px;
  8677. word-wrap:break-word;
  8678. text-transform:none;
  8679. }
  8680. #u10960_img {
  8681. border-width:0px;
  8682. position:absolute;
  8683. left:0px;
  8684. top:0px;
  8685. width:80px;
  8686. height:38px;
  8687. }
  8688. #u10960 {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:832px;
  8692. top:77px;
  8693. width:80px;
  8694. height:38px;
  8695. display:flex;
  8696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8697. font-weight:400;
  8698. font-style:normal;
  8699. font-size:12px;
  8700. color:#333333;
  8701. }
  8702. #u10960 .text {
  8703. position:absolute;
  8704. align-self:center;
  8705. padding:2px 2px 2px 0px;
  8706. box-sizing:border-box;
  8707. width:100%;
  8708. }
  8709. #u10960_text {
  8710. border-width:0px;
  8711. word-wrap:break-word;
  8712. text-transform:none;
  8713. }
  8714. #u10961_img {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:0px;
  8718. top:0px;
  8719. width:80px;
  8720. height:38px;
  8721. }
  8722. #u10961 {
  8723. border-width:0px;
  8724. position:absolute;
  8725. left:912px;
  8726. top:77px;
  8727. width:80px;
  8728. height:38px;
  8729. display:flex;
  8730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8731. font-weight:400;
  8732. font-style:normal;
  8733. font-size:12px;
  8734. color:#333333;
  8735. }
  8736. #u10961 .text {
  8737. position:absolute;
  8738. align-self:center;
  8739. padding:2px 2px 2px 0px;
  8740. box-sizing:border-box;
  8741. width:100%;
  8742. }
  8743. #u10961_text {
  8744. border-width:0px;
  8745. word-wrap:break-word;
  8746. text-transform:none;
  8747. }
  8748. #u10962_img {
  8749. border-width:0px;
  8750. position:absolute;
  8751. left:0px;
  8752. top:0px;
  8753. width:80px;
  8754. height:38px;
  8755. }
  8756. #u10962 {
  8757. border-width:0px;
  8758. position:absolute;
  8759. left:992px;
  8760. top:77px;
  8761. width:80px;
  8762. height:38px;
  8763. display:flex;
  8764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8765. font-weight:400;
  8766. font-style:normal;
  8767. font-size:12px;
  8768. color:#333333;
  8769. }
  8770. #u10962 .text {
  8771. position:absolute;
  8772. align-self:center;
  8773. padding:2px 2px 2px 0px;
  8774. box-sizing:border-box;
  8775. width:100%;
  8776. }
  8777. #u10962_text {
  8778. border-width:0px;
  8779. word-wrap:break-word;
  8780. text-transform:none;
  8781. }
  8782. #u10963_img {
  8783. border-width:0px;
  8784. position:absolute;
  8785. left:0px;
  8786. top:0px;
  8787. width:80px;
  8788. height:38px;
  8789. }
  8790. #u10963 {
  8791. border-width:0px;
  8792. position:absolute;
  8793. left:1072px;
  8794. top:77px;
  8795. width:80px;
  8796. height:38px;
  8797. display:flex;
  8798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8799. font-weight:400;
  8800. font-style:normal;
  8801. font-size:12px;
  8802. color:#AAAAAA;
  8803. }
  8804. #u10963 .text {
  8805. position:absolute;
  8806. align-self:center;
  8807. padding:2px 2px 2px 0px;
  8808. box-sizing:border-box;
  8809. width:100%;
  8810. }
  8811. #u10963_text {
  8812. border-width:0px;
  8813. word-wrap:break-word;
  8814. text-transform:none;
  8815. }
  8816. #u10964_img {
  8817. border-width:0px;
  8818. position:absolute;
  8819. left:0px;
  8820. top:0px;
  8821. width:180px;
  8822. height:38px;
  8823. }
  8824. #u10964 {
  8825. border-width:0px;
  8826. position:absolute;
  8827. left:1152px;
  8828. top:77px;
  8829. width:180px;
  8830. height:38px;
  8831. display:flex;
  8832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8833. font-weight:400;
  8834. font-style:normal;
  8835. font-size:12px;
  8836. color:#1890FF;
  8837. }
  8838. #u10964 .text {
  8839. position:absolute;
  8840. align-self:center;
  8841. padding:2px 2px 2px 0px;
  8842. box-sizing:border-box;
  8843. width:100%;
  8844. }
  8845. #u10964_text {
  8846. border-width:0px;
  8847. word-wrap:break-word;
  8848. text-transform:none;
  8849. }
  8850. #u10965_img {
  8851. border-width:0px;
  8852. position:absolute;
  8853. left:0px;
  8854. top:0px;
  8855. width:80px;
  8856. height:38px;
  8857. }
  8858. #u10965 {
  8859. border-width:0px;
  8860. position:absolute;
  8861. left:0px;
  8862. top:115px;
  8863. width:80px;
  8864. height:38px;
  8865. display:flex;
  8866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8867. font-weight:400;
  8868. font-style:normal;
  8869. font-size:12px;
  8870. }
  8871. #u10965 .text {
  8872. position:absolute;
  8873. align-self:center;
  8874. padding:2px 2px 2px 0px;
  8875. box-sizing:border-box;
  8876. width:100%;
  8877. }
  8878. #u10965_text {
  8879. border-width:0px;
  8880. word-wrap:break-word;
  8881. text-transform:none;
  8882. visibility:hidden;
  8883. }
  8884. #u10966_img {
  8885. border-width:0px;
  8886. position:absolute;
  8887. left:0px;
  8888. top:0px;
  8889. width:80px;
  8890. height:38px;
  8891. }
  8892. #u10966 {
  8893. border-width:0px;
  8894. position:absolute;
  8895. left:80px;
  8896. top:115px;
  8897. width:80px;
  8898. height:38px;
  8899. display:flex;
  8900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8901. font-weight:400;
  8902. font-style:normal;
  8903. font-size:12px;
  8904. }
  8905. #u10966 .text {
  8906. position:absolute;
  8907. align-self:center;
  8908. padding:2px 2px 2px 0px;
  8909. box-sizing:border-box;
  8910. width:100%;
  8911. }
  8912. #u10966_text {
  8913. border-width:0px;
  8914. word-wrap:break-word;
  8915. text-transform:none;
  8916. visibility:hidden;
  8917. }
  8918. #u10967_img {
  8919. border-width:0px;
  8920. position:absolute;
  8921. left:0px;
  8922. top:0px;
  8923. width:80px;
  8924. height:38px;
  8925. }
  8926. #u10967 {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:160px;
  8930. top:115px;
  8931. width:80px;
  8932. height:38px;
  8933. display:flex;
  8934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8935. font-weight:400;
  8936. font-style:normal;
  8937. font-size:12px;
  8938. }
  8939. #u10967 .text {
  8940. position:absolute;
  8941. align-self:center;
  8942. padding:2px 2px 2px 0px;
  8943. box-sizing:border-box;
  8944. width:100%;
  8945. }
  8946. #u10967_text {
  8947. border-width:0px;
  8948. word-wrap:break-word;
  8949. text-transform:none;
  8950. visibility:hidden;
  8951. }
  8952. #u10968_img {
  8953. border-width:0px;
  8954. position:absolute;
  8955. left:0px;
  8956. top:0px;
  8957. width:80px;
  8958. height:38px;
  8959. }
  8960. #u10968 {
  8961. border-width:0px;
  8962. position:absolute;
  8963. left:240px;
  8964. top:115px;
  8965. width:80px;
  8966. height:38px;
  8967. display:flex;
  8968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8969. font-weight:400;
  8970. font-style:normal;
  8971. font-size:12px;
  8972. }
  8973. #u10968 .text {
  8974. position:absolute;
  8975. align-self:center;
  8976. padding:2px 2px 2px 0px;
  8977. box-sizing:border-box;
  8978. width:100%;
  8979. }
  8980. #u10968_text {
  8981. border-width:0px;
  8982. word-wrap:break-word;
  8983. text-transform:none;
  8984. }
  8985. #u10969_img {
  8986. border-width:0px;
  8987. position:absolute;
  8988. left:0px;
  8989. top:0px;
  8990. width:80px;
  8991. height:38px;
  8992. }
  8993. #u10969 {
  8994. border-width:0px;
  8995. position:absolute;
  8996. left:320px;
  8997. top:115px;
  8998. width:80px;
  8999. height:38px;
  9000. display:flex;
  9001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9002. font-weight:400;
  9003. font-style:normal;
  9004. font-size:12px;
  9005. }
  9006. #u10969 .text {
  9007. position:absolute;
  9008. align-self:center;
  9009. padding:2px 2px 2px 0px;
  9010. box-sizing:border-box;
  9011. width:100%;
  9012. }
  9013. #u10969_text {
  9014. border-width:0px;
  9015. word-wrap:break-word;
  9016. text-transform:none;
  9017. visibility:hidden;
  9018. }
  9019. #u10970_img {
  9020. border-width:0px;
  9021. position:absolute;
  9022. left:0px;
  9023. top:0px;
  9024. width:80px;
  9025. height:38px;
  9026. }
  9027. #u10970 {
  9028. border-width:0px;
  9029. position:absolute;
  9030. left:400px;
  9031. top:115px;
  9032. width:80px;
  9033. height:38px;
  9034. display:flex;
  9035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9036. font-weight:400;
  9037. font-style:normal;
  9038. font-size:12px;
  9039. }
  9040. #u10970 .text {
  9041. position:absolute;
  9042. align-self:center;
  9043. padding:2px 2px 2px 0px;
  9044. box-sizing:border-box;
  9045. width:100%;
  9046. }
  9047. #u10970_text {
  9048. border-width:0px;
  9049. word-wrap:break-word;
  9050. text-transform:none;
  9051. visibility:hidden;
  9052. }
  9053. #u10971_img {
  9054. border-width:0px;
  9055. position:absolute;
  9056. left:0px;
  9057. top:0px;
  9058. width:80px;
  9059. height:38px;
  9060. }
  9061. #u10971 {
  9062. border-width:0px;
  9063. position:absolute;
  9064. left:480px;
  9065. top:115px;
  9066. width:80px;
  9067. height:38px;
  9068. display:flex;
  9069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9070. font-weight:400;
  9071. font-style:normal;
  9072. font-size:12px;
  9073. }
  9074. #u10971 .text {
  9075. position:absolute;
  9076. align-self:center;
  9077. padding:2px 2px 2px 0px;
  9078. box-sizing:border-box;
  9079. width:100%;
  9080. }
  9081. #u10971_text {
  9082. border-width:0px;
  9083. word-wrap:break-word;
  9084. text-transform:none;
  9085. visibility:hidden;
  9086. }
  9087. #u10972_img {
  9088. border-width:0px;
  9089. position:absolute;
  9090. left:0px;
  9091. top:0px;
  9092. width:102px;
  9093. height:38px;
  9094. }
  9095. #u10972 {
  9096. border-width:0px;
  9097. position:absolute;
  9098. left:560px;
  9099. top:115px;
  9100. width:102px;
  9101. height:38px;
  9102. display:flex;
  9103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9104. font-weight:400;
  9105. font-style:normal;
  9106. font-size:12px;
  9107. }
  9108. #u10972 .text {
  9109. position:absolute;
  9110. align-self:center;
  9111. padding:2px 2px 2px 0px;
  9112. box-sizing:border-box;
  9113. width:100%;
  9114. }
  9115. #u10972_text {
  9116. border-width:0px;
  9117. word-wrap:break-word;
  9118. text-transform:none;
  9119. }
  9120. #u10973_img {
  9121. border-width:0px;
  9122. position:absolute;
  9123. left:0px;
  9124. top:0px;
  9125. width:90px;
  9126. height:38px;
  9127. }
  9128. #u10973 {
  9129. border-width:0px;
  9130. position:absolute;
  9131. left:662px;
  9132. top:115px;
  9133. width:90px;
  9134. height:38px;
  9135. display:flex;
  9136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9137. font-weight:400;
  9138. font-style:normal;
  9139. font-size:12px;
  9140. color:#333333;
  9141. }
  9142. #u10973 .text {
  9143. position:absolute;
  9144. align-self:center;
  9145. padding:2px 2px 2px 0px;
  9146. box-sizing:border-box;
  9147. width:100%;
  9148. }
  9149. #u10973_text {
  9150. border-width:0px;
  9151. word-wrap:break-word;
  9152. text-transform:none;
  9153. }
  9154. #u10974_img {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:0px;
  9158. top:0px;
  9159. width:80px;
  9160. height:38px;
  9161. }
  9162. #u10974 {
  9163. border-width:0px;
  9164. position:absolute;
  9165. left:752px;
  9166. top:115px;
  9167. width:80px;
  9168. height:38px;
  9169. display:flex;
  9170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9171. font-weight:400;
  9172. font-style:normal;
  9173. font-size:12px;
  9174. color:#AAAAAA;
  9175. }
  9176. #u10974 .text {
  9177. position:absolute;
  9178. align-self:center;
  9179. padding:2px 2px 2px 0px;
  9180. box-sizing:border-box;
  9181. width:100%;
  9182. }
  9183. #u10974_text {
  9184. border-width:0px;
  9185. word-wrap:break-word;
  9186. text-transform:none;
  9187. }
  9188. #u10975_img {
  9189. border-width:0px;
  9190. position:absolute;
  9191. left:0px;
  9192. top:0px;
  9193. width:80px;
  9194. height:38px;
  9195. }
  9196. #u10975 {
  9197. border-width:0px;
  9198. position:absolute;
  9199. left:832px;
  9200. top:115px;
  9201. width:80px;
  9202. height:38px;
  9203. display:flex;
  9204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9205. font-weight:400;
  9206. font-style:normal;
  9207. font-size:12px;
  9208. color:#333333;
  9209. }
  9210. #u10975 .text {
  9211. position:absolute;
  9212. align-self:center;
  9213. padding:2px 2px 2px 0px;
  9214. box-sizing:border-box;
  9215. width:100%;
  9216. }
  9217. #u10975_text {
  9218. border-width:0px;
  9219. word-wrap:break-word;
  9220. text-transform:none;
  9221. visibility:hidden;
  9222. }
  9223. #u10976_img {
  9224. border-width:0px;
  9225. position:absolute;
  9226. left:0px;
  9227. top:0px;
  9228. width:80px;
  9229. height:38px;
  9230. }
  9231. #u10976 {
  9232. border-width:0px;
  9233. position:absolute;
  9234. left:912px;
  9235. top:115px;
  9236. width:80px;
  9237. height:38px;
  9238. display:flex;
  9239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9240. font-weight:400;
  9241. font-style:normal;
  9242. font-size:12px;
  9243. color:#333333;
  9244. }
  9245. #u10976 .text {
  9246. position:absolute;
  9247. align-self:center;
  9248. padding:2px 2px 2px 0px;
  9249. box-sizing:border-box;
  9250. width:100%;
  9251. }
  9252. #u10976_text {
  9253. border-width:0px;
  9254. word-wrap:break-word;
  9255. text-transform:none;
  9256. }
  9257. #u10977_img {
  9258. border-width:0px;
  9259. position:absolute;
  9260. left:0px;
  9261. top:0px;
  9262. width:80px;
  9263. height:38px;
  9264. }
  9265. #u10977 {
  9266. border-width:0px;
  9267. position:absolute;
  9268. left:992px;
  9269. top:115px;
  9270. width:80px;
  9271. height:38px;
  9272. display:flex;
  9273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9274. font-weight:400;
  9275. font-style:normal;
  9276. font-size:12px;
  9277. color:#7F7F7F;
  9278. }
  9279. #u10977 .text {
  9280. position:absolute;
  9281. align-self:center;
  9282. padding:2px 2px 2px 0px;
  9283. box-sizing:border-box;
  9284. width:100%;
  9285. }
  9286. #u10977_text {
  9287. border-width:0px;
  9288. word-wrap:break-word;
  9289. text-transform:none;
  9290. }
  9291. #u10978_img {
  9292. border-width:0px;
  9293. position:absolute;
  9294. left:0px;
  9295. top:0px;
  9296. width:80px;
  9297. height:38px;
  9298. }
  9299. #u10978 {
  9300. border-width:0px;
  9301. position:absolute;
  9302. left:1072px;
  9303. top:115px;
  9304. width:80px;
  9305. height:38px;
  9306. display:flex;
  9307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9308. font-weight:400;
  9309. font-style:normal;
  9310. font-size:12px;
  9311. color:#AAAAAA;
  9312. }
  9313. #u10978 .text {
  9314. position:absolute;
  9315. align-self:center;
  9316. padding:2px 2px 2px 0px;
  9317. box-sizing:border-box;
  9318. width:100%;
  9319. }
  9320. #u10978_text {
  9321. border-width:0px;
  9322. word-wrap:break-word;
  9323. text-transform:none;
  9324. }
  9325. #u10979_img {
  9326. border-width:0px;
  9327. position:absolute;
  9328. left:0px;
  9329. top:0px;
  9330. width:180px;
  9331. height:38px;
  9332. }
  9333. #u10979 {
  9334. border-width:0px;
  9335. position:absolute;
  9336. left:1152px;
  9337. top:115px;
  9338. width:180px;
  9339. height:38px;
  9340. display:flex;
  9341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9342. font-weight:400;
  9343. font-style:normal;
  9344. font-size:12px;
  9345. color:#1890FF;
  9346. }
  9347. #u10979 .text {
  9348. position:absolute;
  9349. align-self:center;
  9350. padding:2px 2px 2px 0px;
  9351. box-sizing:border-box;
  9352. width:100%;
  9353. }
  9354. #u10979_text {
  9355. border-width:0px;
  9356. word-wrap:break-word;
  9357. text-transform:none;
  9358. }
  9359. #u10980_img {
  9360. border-width:0px;
  9361. position:absolute;
  9362. left:0px;
  9363. top:0px;
  9364. width:80px;
  9365. height:38px;
  9366. }
  9367. #u10980 {
  9368. border-width:0px;
  9369. position:absolute;
  9370. left:0px;
  9371. top:153px;
  9372. width:80px;
  9373. height:38px;
  9374. display:flex;
  9375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9376. font-weight:400;
  9377. font-style:normal;
  9378. font-size:12px;
  9379. }
  9380. #u10980 .text {
  9381. position:absolute;
  9382. align-self:center;
  9383. padding:2px 2px 2px 0px;
  9384. box-sizing:border-box;
  9385. width:100%;
  9386. }
  9387. #u10980_text {
  9388. border-width:0px;
  9389. word-wrap:break-word;
  9390. text-transform:none;
  9391. visibility:hidden;
  9392. }
  9393. #u10981_img {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:0px;
  9397. top:0px;
  9398. width:80px;
  9399. height:38px;
  9400. }
  9401. #u10981 {
  9402. border-width:0px;
  9403. position:absolute;
  9404. left:80px;
  9405. top:153px;
  9406. width:80px;
  9407. height:38px;
  9408. display:flex;
  9409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9410. font-weight:400;
  9411. font-style:normal;
  9412. font-size:12px;
  9413. }
  9414. #u10981 .text {
  9415. position:absolute;
  9416. align-self:center;
  9417. padding:2px 2px 2px 0px;
  9418. box-sizing:border-box;
  9419. width:100%;
  9420. }
  9421. #u10981_text {
  9422. border-width:0px;
  9423. word-wrap:break-word;
  9424. text-transform:none;
  9425. visibility:hidden;
  9426. }
  9427. #u10982_img {
  9428. border-width:0px;
  9429. position:absolute;
  9430. left:0px;
  9431. top:0px;
  9432. width:80px;
  9433. height:38px;
  9434. }
  9435. #u10982 {
  9436. border-width:0px;
  9437. position:absolute;
  9438. left:160px;
  9439. top:153px;
  9440. width:80px;
  9441. height:38px;
  9442. display:flex;
  9443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9444. font-weight:400;
  9445. font-style:normal;
  9446. font-size:12px;
  9447. }
  9448. #u10982 .text {
  9449. position:absolute;
  9450. align-self:center;
  9451. padding:2px 2px 2px 0px;
  9452. box-sizing:border-box;
  9453. width:100%;
  9454. }
  9455. #u10982_text {
  9456. border-width:0px;
  9457. word-wrap:break-word;
  9458. text-transform:none;
  9459. visibility:hidden;
  9460. }
  9461. #u10983_img {
  9462. border-width:0px;
  9463. position:absolute;
  9464. left:0px;
  9465. top:0px;
  9466. width:80px;
  9467. height:38px;
  9468. }
  9469. #u10983 {
  9470. border-width:0px;
  9471. position:absolute;
  9472. left:240px;
  9473. top:153px;
  9474. width:80px;
  9475. height:38px;
  9476. display:flex;
  9477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9478. font-weight:400;
  9479. font-style:normal;
  9480. font-size:12px;
  9481. }
  9482. #u10983 .text {
  9483. position:absolute;
  9484. align-self:center;
  9485. padding:2px 2px 2px 0px;
  9486. box-sizing:border-box;
  9487. width:100%;
  9488. }
  9489. #u10983_text {
  9490. border-width:0px;
  9491. word-wrap:break-word;
  9492. text-transform:none;
  9493. }
  9494. #u10984_img {
  9495. border-width:0px;
  9496. position:absolute;
  9497. left:0px;
  9498. top:0px;
  9499. width:80px;
  9500. height:38px;
  9501. }
  9502. #u10984 {
  9503. border-width:0px;
  9504. position:absolute;
  9505. left:320px;
  9506. top:153px;
  9507. width:80px;
  9508. height:38px;
  9509. display:flex;
  9510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9511. font-weight:400;
  9512. font-style:normal;
  9513. font-size:12px;
  9514. }
  9515. #u10984 .text {
  9516. position:absolute;
  9517. align-self:center;
  9518. padding:2px 2px 2px 0px;
  9519. box-sizing:border-box;
  9520. width:100%;
  9521. }
  9522. #u10984_text {
  9523. border-width:0px;
  9524. word-wrap:break-word;
  9525. text-transform:none;
  9526. visibility:hidden;
  9527. }
  9528. #u10985_img {
  9529. border-width:0px;
  9530. position:absolute;
  9531. left:0px;
  9532. top:0px;
  9533. width:80px;
  9534. height:38px;
  9535. }
  9536. #u10985 {
  9537. border-width:0px;
  9538. position:absolute;
  9539. left:400px;
  9540. top:153px;
  9541. width:80px;
  9542. height:38px;
  9543. display:flex;
  9544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9545. font-weight:400;
  9546. font-style:normal;
  9547. font-size:12px;
  9548. }
  9549. #u10985 .text {
  9550. position:absolute;
  9551. align-self:center;
  9552. padding:2px 2px 2px 0px;
  9553. box-sizing:border-box;
  9554. width:100%;
  9555. }
  9556. #u10985_text {
  9557. border-width:0px;
  9558. word-wrap:break-word;
  9559. text-transform:none;
  9560. visibility:hidden;
  9561. }
  9562. #u10986_img {
  9563. border-width:0px;
  9564. position:absolute;
  9565. left:0px;
  9566. top:0px;
  9567. width:80px;
  9568. height:38px;
  9569. }
  9570. #u10986 {
  9571. border-width:0px;
  9572. position:absolute;
  9573. left:480px;
  9574. top:153px;
  9575. width:80px;
  9576. height:38px;
  9577. display:flex;
  9578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9579. font-weight:400;
  9580. font-style:normal;
  9581. font-size:12px;
  9582. }
  9583. #u10986 .text {
  9584. position:absolute;
  9585. align-self:center;
  9586. padding:2px 2px 2px 0px;
  9587. box-sizing:border-box;
  9588. width:100%;
  9589. }
  9590. #u10986_text {
  9591. border-width:0px;
  9592. word-wrap:break-word;
  9593. text-transform:none;
  9594. visibility:hidden;
  9595. }
  9596. #u10987_img {
  9597. border-width:0px;
  9598. position:absolute;
  9599. left:0px;
  9600. top:0px;
  9601. width:102px;
  9602. height:38px;
  9603. }
  9604. #u10987 {
  9605. border-width:0px;
  9606. position:absolute;
  9607. left:560px;
  9608. top:153px;
  9609. width:102px;
  9610. height:38px;
  9611. display:flex;
  9612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9613. font-weight:400;
  9614. font-style:normal;
  9615. font-size:12px;
  9616. }
  9617. #u10987 .text {
  9618. position:absolute;
  9619. align-self:center;
  9620. padding:2px 2px 2px 0px;
  9621. box-sizing:border-box;
  9622. width:100%;
  9623. }
  9624. #u10987_text {
  9625. border-width:0px;
  9626. word-wrap:break-word;
  9627. text-transform:none;
  9628. visibility:hidden;
  9629. }
  9630. #u10988_img {
  9631. border-width:0px;
  9632. position:absolute;
  9633. left:0px;
  9634. top:0px;
  9635. width:90px;
  9636. height:38px;
  9637. }
  9638. #u10988 {
  9639. border-width:0px;
  9640. position:absolute;
  9641. left:662px;
  9642. top:153px;
  9643. width:90px;
  9644. height:38px;
  9645. display:flex;
  9646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9647. font-weight:400;
  9648. font-style:normal;
  9649. font-size:12px;
  9650. color:#D7D7D7;
  9651. }
  9652. #u10988 .text {
  9653. position:absolute;
  9654. align-self:center;
  9655. padding:2px 2px 2px 0px;
  9656. box-sizing:border-box;
  9657. width:100%;
  9658. }
  9659. #u10988_text {
  9660. border-width:0px;
  9661. word-wrap:break-word;
  9662. text-transform:none;
  9663. visibility:hidden;
  9664. }
  9665. #u10989_img {
  9666. border-width:0px;
  9667. position:absolute;
  9668. left:0px;
  9669. top:0px;
  9670. width:80px;
  9671. height:38px;
  9672. }
  9673. #u10989 {
  9674. border-width:0px;
  9675. position:absolute;
  9676. left:752px;
  9677. top:153px;
  9678. width:80px;
  9679. height:38px;
  9680. display:flex;
  9681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9682. font-weight:400;
  9683. font-style:normal;
  9684. font-size:12px;
  9685. color:#D7D7D7;
  9686. }
  9687. #u10989 .text {
  9688. position:absolute;
  9689. align-self:center;
  9690. padding:2px 2px 2px 0px;
  9691. box-sizing:border-box;
  9692. width:100%;
  9693. }
  9694. #u10989_text {
  9695. border-width:0px;
  9696. word-wrap:break-word;
  9697. text-transform:none;
  9698. visibility:hidden;
  9699. }
  9700. #u10990_img {
  9701. border-width:0px;
  9702. position:absolute;
  9703. left:0px;
  9704. top:0px;
  9705. width:80px;
  9706. height:38px;
  9707. }
  9708. #u10990 {
  9709. border-width:0px;
  9710. position:absolute;
  9711. left:832px;
  9712. top:153px;
  9713. width:80px;
  9714. height:38px;
  9715. display:flex;
  9716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9717. font-weight:400;
  9718. font-style:normal;
  9719. font-size:12px;
  9720. color:#D7D7D7;
  9721. }
  9722. #u10990 .text {
  9723. position:absolute;
  9724. align-self:center;
  9725. padding:2px 2px 2px 0px;
  9726. box-sizing:border-box;
  9727. width:100%;
  9728. }
  9729. #u10990_text {
  9730. border-width:0px;
  9731. word-wrap:break-word;
  9732. text-transform:none;
  9733. visibility:hidden;
  9734. }
  9735. #u10991_img {
  9736. border-width:0px;
  9737. position:absolute;
  9738. left:0px;
  9739. top:0px;
  9740. width:80px;
  9741. height:38px;
  9742. }
  9743. #u10991 {
  9744. border-width:0px;
  9745. position:absolute;
  9746. left:912px;
  9747. top:153px;
  9748. width:80px;
  9749. height:38px;
  9750. display:flex;
  9751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9752. font-weight:400;
  9753. font-style:normal;
  9754. font-size:12px;
  9755. color:#D7D7D7;
  9756. }
  9757. #u10991 .text {
  9758. position:absolute;
  9759. align-self:center;
  9760. padding:2px 2px 2px 0px;
  9761. box-sizing:border-box;
  9762. width:100%;
  9763. }
  9764. #u10991_text {
  9765. border-width:0px;
  9766. word-wrap:break-word;
  9767. text-transform:none;
  9768. }
  9769. #u10992_img {
  9770. border-width:0px;
  9771. position:absolute;
  9772. left:0px;
  9773. top:0px;
  9774. width:80px;
  9775. height:38px;
  9776. }
  9777. #u10992 {
  9778. border-width:0px;
  9779. position:absolute;
  9780. left:992px;
  9781. top:153px;
  9782. width:80px;
  9783. height:38px;
  9784. display:flex;
  9785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9786. font-weight:400;
  9787. font-style:normal;
  9788. font-size:12px;
  9789. color:#D7D7D7;
  9790. }
  9791. #u10992 .text {
  9792. position:absolute;
  9793. align-self:center;
  9794. padding:2px 2px 2px 0px;
  9795. box-sizing:border-box;
  9796. width:100%;
  9797. }
  9798. #u10992_text {
  9799. border-width:0px;
  9800. word-wrap:break-word;
  9801. text-transform:none;
  9802. visibility:hidden;
  9803. }
  9804. #u10993_img {
  9805. border-width:0px;
  9806. position:absolute;
  9807. left:0px;
  9808. top:0px;
  9809. width:80px;
  9810. height:38px;
  9811. }
  9812. #u10993 {
  9813. border-width:0px;
  9814. position:absolute;
  9815. left:1072px;
  9816. top:153px;
  9817. width:80px;
  9818. height:38px;
  9819. display:flex;
  9820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9821. font-weight:400;
  9822. font-style:normal;
  9823. font-size:12px;
  9824. color:#D7D7D7;
  9825. }
  9826. #u10993 .text {
  9827. position:absolute;
  9828. align-self:center;
  9829. padding:2px 2px 2px 0px;
  9830. box-sizing:border-box;
  9831. width:100%;
  9832. }
  9833. #u10993_text {
  9834. border-width:0px;
  9835. word-wrap:break-word;
  9836. text-transform:none;
  9837. visibility:hidden;
  9838. }
  9839. #u10994_img {
  9840. border-width:0px;
  9841. position:absolute;
  9842. left:0px;
  9843. top:0px;
  9844. width:180px;
  9845. height:38px;
  9846. }
  9847. #u10994 {
  9848. border-width:0px;
  9849. position:absolute;
  9850. left:1152px;
  9851. top:153px;
  9852. width:180px;
  9853. height:38px;
  9854. display:flex;
  9855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9856. font-weight:400;
  9857. font-style:normal;
  9858. font-size:12px;
  9859. color:#1890FF;
  9860. }
  9861. #u10994 .text {
  9862. position:absolute;
  9863. align-self:center;
  9864. padding:2px 2px 2px 0px;
  9865. box-sizing:border-box;
  9866. width:100%;
  9867. }
  9868. #u10994_text {
  9869. border-width:0px;
  9870. word-wrap:break-word;
  9871. text-transform:none;
  9872. visibility:hidden;
  9873. }
  9874. #u10995_img {
  9875. border-width:0px;
  9876. position:absolute;
  9877. left:0px;
  9878. top:0px;
  9879. width:80px;
  9880. height:35px;
  9881. }
  9882. #u10995 {
  9883. border-width:0px;
  9884. position:absolute;
  9885. left:0px;
  9886. top:191px;
  9887. width:80px;
  9888. height:35px;
  9889. display:flex;
  9890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9891. font-weight:400;
  9892. font-style:normal;
  9893. font-size:12px;
  9894. color:#606266;
  9895. }
  9896. #u10995 .text {
  9897. position:absolute;
  9898. align-self:center;
  9899. padding:2px 2px 2px 0px;
  9900. box-sizing:border-box;
  9901. width:100%;
  9902. }
  9903. #u10995_text {
  9904. border-width:0px;
  9905. word-wrap:break-word;
  9906. text-transform:none;
  9907. visibility:hidden;
  9908. }
  9909. #u10996_img {
  9910. border-width:0px;
  9911. position:absolute;
  9912. left:0px;
  9913. top:0px;
  9914. width:80px;
  9915. height:35px;
  9916. }
  9917. #u10996 {
  9918. border-width:0px;
  9919. position:absolute;
  9920. left:80px;
  9921. top:191px;
  9922. width:80px;
  9923. height:35px;
  9924. display:flex;
  9925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9926. font-weight:400;
  9927. font-style:normal;
  9928. font-size:12px;
  9929. color:#606266;
  9930. }
  9931. #u10996 .text {
  9932. position:absolute;
  9933. align-self:center;
  9934. padding:2px 2px 2px 0px;
  9935. box-sizing:border-box;
  9936. width:100%;
  9937. }
  9938. #u10996_text {
  9939. border-width:0px;
  9940. word-wrap:break-word;
  9941. text-transform:none;
  9942. visibility:hidden;
  9943. }
  9944. #u10997_img {
  9945. border-width:0px;
  9946. position:absolute;
  9947. left:0px;
  9948. top:0px;
  9949. width:80px;
  9950. height:35px;
  9951. }
  9952. #u10997 {
  9953. border-width:0px;
  9954. position:absolute;
  9955. left:160px;
  9956. top:191px;
  9957. width:80px;
  9958. height:35px;
  9959. display:flex;
  9960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9961. font-weight:400;
  9962. font-style:normal;
  9963. font-size:12px;
  9964. color:#606266;
  9965. }
  9966. #u10997 .text {
  9967. position:absolute;
  9968. align-self:center;
  9969. padding:2px 2px 2px 0px;
  9970. box-sizing:border-box;
  9971. width:100%;
  9972. }
  9973. #u10997_text {
  9974. border-width:0px;
  9975. word-wrap:break-word;
  9976. text-transform:none;
  9977. visibility:hidden;
  9978. }
  9979. #u10998_img {
  9980. border-width:0px;
  9981. position:absolute;
  9982. left:0px;
  9983. top:0px;
  9984. width:80px;
  9985. height:35px;
  9986. }
  9987. #u10998 {
  9988. border-width:0px;
  9989. position:absolute;
  9990. left:240px;
  9991. top:191px;
  9992. width:80px;
  9993. height:35px;
  9994. display:flex;
  9995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9996. font-weight:400;
  9997. font-style:normal;
  9998. font-size:12px;
  9999. color:#606266;
  10000. }
  10001. #u10998 .text {
  10002. position:absolute;
  10003. align-self:center;
  10004. padding:2px 2px 2px 0px;
  10005. box-sizing:border-box;
  10006. width:100%;
  10007. }
  10008. #u10998_text {
  10009. border-width:0px;
  10010. word-wrap:break-word;
  10011. text-transform:none;
  10012. visibility:hidden;
  10013. }
  10014. #u10999_img {
  10015. border-width:0px;
  10016. position:absolute;
  10017. left:0px;
  10018. top:0px;
  10019. width:80px;
  10020. height:35px;
  10021. }
  10022. #u10999 {
  10023. border-width:0px;
  10024. position:absolute;
  10025. left:320px;
  10026. top:191px;
  10027. width:80px;
  10028. height:35px;
  10029. display:flex;
  10030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10031. font-weight:400;
  10032. font-style:normal;
  10033. font-size:12px;
  10034. color:#606266;
  10035. }
  10036. #u10999 .text {
  10037. position:absolute;
  10038. align-self:center;
  10039. padding:2px 2px 2px 0px;
  10040. box-sizing:border-box;
  10041. width:100%;
  10042. }
  10043. #u10999_text {
  10044. border-width:0px;
  10045. word-wrap:break-word;
  10046. text-transform:none;
  10047. visibility:hidden;
  10048. }
  10049. #u11000_img {
  10050. border-width:0px;
  10051. position:absolute;
  10052. left:0px;
  10053. top:0px;
  10054. width:80px;
  10055. height:35px;
  10056. }
  10057. #u11000 {
  10058. border-width:0px;
  10059. position:absolute;
  10060. left:400px;
  10061. top:191px;
  10062. width:80px;
  10063. height:35px;
  10064. display:flex;
  10065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10066. font-weight:400;
  10067. font-style:normal;
  10068. font-size:12px;
  10069. color:#606266;
  10070. }
  10071. #u11000 .text {
  10072. position:absolute;
  10073. align-self:center;
  10074. padding:2px 2px 2px 0px;
  10075. box-sizing:border-box;
  10076. width:100%;
  10077. }
  10078. #u11000_text {
  10079. border-width:0px;
  10080. word-wrap:break-word;
  10081. text-transform:none;
  10082. visibility:hidden;
  10083. }
  10084. #u11001_img {
  10085. border-width:0px;
  10086. position:absolute;
  10087. left:0px;
  10088. top:0px;
  10089. width:80px;
  10090. height:35px;
  10091. }
  10092. #u11001 {
  10093. border-width:0px;
  10094. position:absolute;
  10095. left:480px;
  10096. top:191px;
  10097. width:80px;
  10098. height:35px;
  10099. display:flex;
  10100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10101. font-weight:400;
  10102. font-style:normal;
  10103. font-size:12px;
  10104. color:#606266;
  10105. }
  10106. #u11001 .text {
  10107. position:absolute;
  10108. align-self:center;
  10109. padding:2px 2px 2px 0px;
  10110. box-sizing:border-box;
  10111. width:100%;
  10112. }
  10113. #u11001_text {
  10114. border-width:0px;
  10115. word-wrap:break-word;
  10116. text-transform:none;
  10117. visibility:hidden;
  10118. }
  10119. #u11002_img {
  10120. border-width:0px;
  10121. position:absolute;
  10122. left:0px;
  10123. top:0px;
  10124. width:102px;
  10125. height:35px;
  10126. }
  10127. #u11002 {
  10128. border-width:0px;
  10129. position:absolute;
  10130. left:560px;
  10131. top:191px;
  10132. width:102px;
  10133. height:35px;
  10134. display:flex;
  10135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10136. font-weight:400;
  10137. font-style:normal;
  10138. font-size:12px;
  10139. color:#606266;
  10140. }
  10141. #u11002 .text {
  10142. position:absolute;
  10143. align-self:center;
  10144. padding:2px 2px 2px 0px;
  10145. box-sizing:border-box;
  10146. width:100%;
  10147. }
  10148. #u11002_text {
  10149. border-width:0px;
  10150. word-wrap:break-word;
  10151. text-transform:none;
  10152. visibility:hidden;
  10153. }
  10154. #u11003_img {
  10155. border-width:0px;
  10156. position:absolute;
  10157. left:0px;
  10158. top:0px;
  10159. width:90px;
  10160. height:35px;
  10161. }
  10162. #u11003 {
  10163. border-width:0px;
  10164. position:absolute;
  10165. left:662px;
  10166. top:191px;
  10167. width:90px;
  10168. height:35px;
  10169. display:flex;
  10170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10171. font-weight:400;
  10172. font-style:normal;
  10173. font-size:12px;
  10174. color:#606266;
  10175. }
  10176. #u11003 .text {
  10177. position:absolute;
  10178. align-self:center;
  10179. padding:2px 2px 2px 0px;
  10180. box-sizing:border-box;
  10181. width:100%;
  10182. }
  10183. #u11003_text {
  10184. border-width:0px;
  10185. word-wrap:break-word;
  10186. text-transform:none;
  10187. visibility:hidden;
  10188. }
  10189. #u11004_img {
  10190. border-width:0px;
  10191. position:absolute;
  10192. left:0px;
  10193. top:0px;
  10194. width:80px;
  10195. height:35px;
  10196. }
  10197. #u11004 {
  10198. border-width:0px;
  10199. position:absolute;
  10200. left:752px;
  10201. top:191px;
  10202. width:80px;
  10203. height:35px;
  10204. display:flex;
  10205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10206. font-weight:400;
  10207. font-style:normal;
  10208. font-size:12px;
  10209. color:#606266;
  10210. }
  10211. #u11004 .text {
  10212. position:absolute;
  10213. align-self:center;
  10214. padding:2px 2px 2px 0px;
  10215. box-sizing:border-box;
  10216. width:100%;
  10217. }
  10218. #u11004_text {
  10219. border-width:0px;
  10220. word-wrap:break-word;
  10221. text-transform:none;
  10222. visibility:hidden;
  10223. }
  10224. #u11005_img {
  10225. border-width:0px;
  10226. position:absolute;
  10227. left:0px;
  10228. top:0px;
  10229. width:80px;
  10230. height:35px;
  10231. }
  10232. #u11005 {
  10233. border-width:0px;
  10234. position:absolute;
  10235. left:832px;
  10236. top:191px;
  10237. width:80px;
  10238. height:35px;
  10239. display:flex;
  10240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10241. font-weight:400;
  10242. font-style:normal;
  10243. font-size:12px;
  10244. color:#606266;
  10245. }
  10246. #u11005 .text {
  10247. position:absolute;
  10248. align-self:center;
  10249. padding:2px 2px 2px 0px;
  10250. box-sizing:border-box;
  10251. width:100%;
  10252. }
  10253. #u11005_text {
  10254. border-width:0px;
  10255. word-wrap:break-word;
  10256. text-transform:none;
  10257. visibility:hidden;
  10258. }
  10259. #u11006_img {
  10260. border-width:0px;
  10261. position:absolute;
  10262. left:0px;
  10263. top:0px;
  10264. width:80px;
  10265. height:35px;
  10266. }
  10267. #u11006 {
  10268. border-width:0px;
  10269. position:absolute;
  10270. left:912px;
  10271. top:191px;
  10272. width:80px;
  10273. height:35px;
  10274. display:flex;
  10275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10276. font-weight:400;
  10277. font-style:normal;
  10278. font-size:12px;
  10279. color:#606266;
  10280. }
  10281. #u11006 .text {
  10282. position:absolute;
  10283. align-self:center;
  10284. padding:2px 2px 2px 0px;
  10285. box-sizing:border-box;
  10286. width:100%;
  10287. }
  10288. #u11006_text {
  10289. border-width:0px;
  10290. word-wrap:break-word;
  10291. text-transform:none;
  10292. visibility:hidden;
  10293. }
  10294. #u11007_img {
  10295. border-width:0px;
  10296. position:absolute;
  10297. left:0px;
  10298. top:0px;
  10299. width:80px;
  10300. height:35px;
  10301. }
  10302. #u11007 {
  10303. border-width:0px;
  10304. position:absolute;
  10305. left:992px;
  10306. top:191px;
  10307. width:80px;
  10308. height:35px;
  10309. display:flex;
  10310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10311. font-weight:400;
  10312. font-style:normal;
  10313. font-size:12px;
  10314. color:#606266;
  10315. }
  10316. #u11007 .text {
  10317. position:absolute;
  10318. align-self:center;
  10319. padding:2px 2px 2px 0px;
  10320. box-sizing:border-box;
  10321. width:100%;
  10322. }
  10323. #u11007_text {
  10324. border-width:0px;
  10325. word-wrap:break-word;
  10326. text-transform:none;
  10327. visibility:hidden;
  10328. }
  10329. #u11008_img {
  10330. border-width:0px;
  10331. position:absolute;
  10332. left:0px;
  10333. top:0px;
  10334. width:80px;
  10335. height:35px;
  10336. }
  10337. #u11008 {
  10338. border-width:0px;
  10339. position:absolute;
  10340. left:1072px;
  10341. top:191px;
  10342. width:80px;
  10343. height:35px;
  10344. display:flex;
  10345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10346. font-weight:400;
  10347. font-style:normal;
  10348. font-size:12px;
  10349. color:#606266;
  10350. }
  10351. #u11008 .text {
  10352. position:absolute;
  10353. align-self:center;
  10354. padding:2px 2px 2px 0px;
  10355. box-sizing:border-box;
  10356. width:100%;
  10357. }
  10358. #u11008_text {
  10359. border-width:0px;
  10360. word-wrap:break-word;
  10361. text-transform:none;
  10362. visibility:hidden;
  10363. }
  10364. #u11009_img {
  10365. border-width:0px;
  10366. position:absolute;
  10367. left:0px;
  10368. top:0px;
  10369. width:180px;
  10370. height:35px;
  10371. }
  10372. #u11009 {
  10373. border-width:0px;
  10374. position:absolute;
  10375. left:1152px;
  10376. top:191px;
  10377. width:180px;
  10378. height:35px;
  10379. display:flex;
  10380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10381. font-weight:400;
  10382. font-style:normal;
  10383. font-size:12px;
  10384. color:#02A7F0;
  10385. }
  10386. #u11009 .text {
  10387. position:absolute;
  10388. align-self:center;
  10389. padding:2px 2px 2px 0px;
  10390. box-sizing:border-box;
  10391. width:100%;
  10392. }
  10393. #u11009_text {
  10394. border-width:0px;
  10395. word-wrap:break-word;
  10396. text-transform:none;
  10397. visibility:hidden;
  10398. }
  10399. #u11010_img {
  10400. border-width:0px;
  10401. position:absolute;
  10402. left:0px;
  10403. top:0px;
  10404. width:80px;
  10405. height:35px;
  10406. }
  10407. #u11010 {
  10408. border-width:0px;
  10409. position:absolute;
  10410. left:0px;
  10411. top:226px;
  10412. width:80px;
  10413. height:35px;
  10414. display:flex;
  10415. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10416. font-weight:400;
  10417. font-style:normal;
  10418. font-size:12px;
  10419. color:#606266;
  10420. }
  10421. #u11010 .text {
  10422. position:absolute;
  10423. align-self:center;
  10424. padding:2px 2px 2px 0px;
  10425. box-sizing:border-box;
  10426. width:100%;
  10427. }
  10428. #u11010_text {
  10429. border-width:0px;
  10430. word-wrap:break-word;
  10431. text-transform:none;
  10432. visibility:hidden;
  10433. }
  10434. #u11011_img {
  10435. border-width:0px;
  10436. position:absolute;
  10437. left:0px;
  10438. top:0px;
  10439. width:80px;
  10440. height:35px;
  10441. }
  10442. #u11011 {
  10443. border-width:0px;
  10444. position:absolute;
  10445. left:80px;
  10446. top:226px;
  10447. width:80px;
  10448. height:35px;
  10449. display:flex;
  10450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10451. font-weight:400;
  10452. font-style:normal;
  10453. font-size:12px;
  10454. color:#606266;
  10455. }
  10456. #u11011 .text {
  10457. position:absolute;
  10458. align-self:center;
  10459. padding:2px 2px 2px 0px;
  10460. box-sizing:border-box;
  10461. width:100%;
  10462. }
  10463. #u11011_text {
  10464. border-width:0px;
  10465. word-wrap:break-word;
  10466. text-transform:none;
  10467. visibility:hidden;
  10468. }
  10469. #u11012_img {
  10470. border-width:0px;
  10471. position:absolute;
  10472. left:0px;
  10473. top:0px;
  10474. width:80px;
  10475. height:35px;
  10476. }
  10477. #u11012 {
  10478. border-width:0px;
  10479. position:absolute;
  10480. left:160px;
  10481. top:226px;
  10482. width:80px;
  10483. height:35px;
  10484. display:flex;
  10485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10486. font-weight:400;
  10487. font-style:normal;
  10488. font-size:12px;
  10489. color:#606266;
  10490. }
  10491. #u11012 .text {
  10492. position:absolute;
  10493. align-self:center;
  10494. padding:2px 2px 2px 0px;
  10495. box-sizing:border-box;
  10496. width:100%;
  10497. }
  10498. #u11012_text {
  10499. border-width:0px;
  10500. word-wrap:break-word;
  10501. text-transform:none;
  10502. visibility:hidden;
  10503. }
  10504. #u11013_img {
  10505. border-width:0px;
  10506. position:absolute;
  10507. left:0px;
  10508. top:0px;
  10509. width:80px;
  10510. height:35px;
  10511. }
  10512. #u11013 {
  10513. border-width:0px;
  10514. position:absolute;
  10515. left:240px;
  10516. top:226px;
  10517. width:80px;
  10518. height:35px;
  10519. display:flex;
  10520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10521. font-weight:400;
  10522. font-style:normal;
  10523. font-size:12px;
  10524. color:#606266;
  10525. }
  10526. #u11013 .text {
  10527. position:absolute;
  10528. align-self:center;
  10529. padding:2px 2px 2px 0px;
  10530. box-sizing:border-box;
  10531. width:100%;
  10532. }
  10533. #u11013_text {
  10534. border-width:0px;
  10535. word-wrap:break-word;
  10536. text-transform:none;
  10537. visibility:hidden;
  10538. }
  10539. #u11014_img {
  10540. border-width:0px;
  10541. position:absolute;
  10542. left:0px;
  10543. top:0px;
  10544. width:80px;
  10545. height:35px;
  10546. }
  10547. #u11014 {
  10548. border-width:0px;
  10549. position:absolute;
  10550. left:320px;
  10551. top:226px;
  10552. width:80px;
  10553. height:35px;
  10554. display:flex;
  10555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10556. font-weight:400;
  10557. font-style:normal;
  10558. font-size:12px;
  10559. color:#606266;
  10560. }
  10561. #u11014 .text {
  10562. position:absolute;
  10563. align-self:center;
  10564. padding:2px 2px 2px 0px;
  10565. box-sizing:border-box;
  10566. width:100%;
  10567. }
  10568. #u11014_text {
  10569. border-width:0px;
  10570. word-wrap:break-word;
  10571. text-transform:none;
  10572. visibility:hidden;
  10573. }
  10574. #u11015_img {
  10575. border-width:0px;
  10576. position:absolute;
  10577. left:0px;
  10578. top:0px;
  10579. width:80px;
  10580. height:35px;
  10581. }
  10582. #u11015 {
  10583. border-width:0px;
  10584. position:absolute;
  10585. left:400px;
  10586. top:226px;
  10587. width:80px;
  10588. height:35px;
  10589. display:flex;
  10590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10591. font-weight:400;
  10592. font-style:normal;
  10593. font-size:12px;
  10594. color:#606266;
  10595. }
  10596. #u11015 .text {
  10597. position:absolute;
  10598. align-self:center;
  10599. padding:2px 2px 2px 0px;
  10600. box-sizing:border-box;
  10601. width:100%;
  10602. }
  10603. #u11015_text {
  10604. border-width:0px;
  10605. word-wrap:break-word;
  10606. text-transform:none;
  10607. visibility:hidden;
  10608. }
  10609. #u11016_img {
  10610. border-width:0px;
  10611. position:absolute;
  10612. left:0px;
  10613. top:0px;
  10614. width:80px;
  10615. height:35px;
  10616. }
  10617. #u11016 {
  10618. border-width:0px;
  10619. position:absolute;
  10620. left:480px;
  10621. top:226px;
  10622. width:80px;
  10623. height:35px;
  10624. display:flex;
  10625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10626. font-weight:400;
  10627. font-style:normal;
  10628. font-size:12px;
  10629. color:#606266;
  10630. }
  10631. #u11016 .text {
  10632. position:absolute;
  10633. align-self:center;
  10634. padding:2px 2px 2px 0px;
  10635. box-sizing:border-box;
  10636. width:100%;
  10637. }
  10638. #u11016_text {
  10639. border-width:0px;
  10640. word-wrap:break-word;
  10641. text-transform:none;
  10642. visibility:hidden;
  10643. }
  10644. #u11017_img {
  10645. border-width:0px;
  10646. position:absolute;
  10647. left:0px;
  10648. top:0px;
  10649. width:102px;
  10650. height:35px;
  10651. }
  10652. #u11017 {
  10653. border-width:0px;
  10654. position:absolute;
  10655. left:560px;
  10656. top:226px;
  10657. width:102px;
  10658. height:35px;
  10659. display:flex;
  10660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10661. font-weight:400;
  10662. font-style:normal;
  10663. font-size:12px;
  10664. color:#606266;
  10665. }
  10666. #u11017 .text {
  10667. position:absolute;
  10668. align-self:center;
  10669. padding:2px 2px 2px 0px;
  10670. box-sizing:border-box;
  10671. width:100%;
  10672. }
  10673. #u11017_text {
  10674. border-width:0px;
  10675. word-wrap:break-word;
  10676. text-transform:none;
  10677. visibility:hidden;
  10678. }
  10679. #u11018_img {
  10680. border-width:0px;
  10681. position:absolute;
  10682. left:0px;
  10683. top:0px;
  10684. width:90px;
  10685. height:35px;
  10686. }
  10687. #u11018 {
  10688. border-width:0px;
  10689. position:absolute;
  10690. left:662px;
  10691. top:226px;
  10692. width:90px;
  10693. height:35px;
  10694. display:flex;
  10695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10696. font-weight:400;
  10697. font-style:normal;
  10698. font-size:12px;
  10699. color:#606266;
  10700. }
  10701. #u11018 .text {
  10702. position:absolute;
  10703. align-self:center;
  10704. padding:2px 2px 2px 0px;
  10705. box-sizing:border-box;
  10706. width:100%;
  10707. }
  10708. #u11018_text {
  10709. border-width:0px;
  10710. word-wrap:break-word;
  10711. text-transform:none;
  10712. visibility:hidden;
  10713. }
  10714. #u11019_img {
  10715. border-width:0px;
  10716. position:absolute;
  10717. left:0px;
  10718. top:0px;
  10719. width:80px;
  10720. height:35px;
  10721. }
  10722. #u11019 {
  10723. border-width:0px;
  10724. position:absolute;
  10725. left:752px;
  10726. top:226px;
  10727. width:80px;
  10728. height:35px;
  10729. display:flex;
  10730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10731. font-weight:400;
  10732. font-style:normal;
  10733. font-size:12px;
  10734. color:#606266;
  10735. }
  10736. #u11019 .text {
  10737. position:absolute;
  10738. align-self:center;
  10739. padding:2px 2px 2px 0px;
  10740. box-sizing:border-box;
  10741. width:100%;
  10742. }
  10743. #u11019_text {
  10744. border-width:0px;
  10745. word-wrap:break-word;
  10746. text-transform:none;
  10747. visibility:hidden;
  10748. }
  10749. #u11020_img {
  10750. border-width:0px;
  10751. position:absolute;
  10752. left:0px;
  10753. top:0px;
  10754. width:80px;
  10755. height:35px;
  10756. }
  10757. #u11020 {
  10758. border-width:0px;
  10759. position:absolute;
  10760. left:832px;
  10761. top:226px;
  10762. width:80px;
  10763. height:35px;
  10764. display:flex;
  10765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10766. font-weight:400;
  10767. font-style:normal;
  10768. font-size:12px;
  10769. color:#606266;
  10770. }
  10771. #u11020 .text {
  10772. position:absolute;
  10773. align-self:center;
  10774. padding:2px 2px 2px 0px;
  10775. box-sizing:border-box;
  10776. width:100%;
  10777. }
  10778. #u11020_text {
  10779. border-width:0px;
  10780. word-wrap:break-word;
  10781. text-transform:none;
  10782. visibility:hidden;
  10783. }
  10784. #u11021_img {
  10785. border-width:0px;
  10786. position:absolute;
  10787. left:0px;
  10788. top:0px;
  10789. width:80px;
  10790. height:35px;
  10791. }
  10792. #u11021 {
  10793. border-width:0px;
  10794. position:absolute;
  10795. left:912px;
  10796. top:226px;
  10797. width:80px;
  10798. height:35px;
  10799. display:flex;
  10800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10801. font-weight:400;
  10802. font-style:normal;
  10803. font-size:12px;
  10804. color:#606266;
  10805. }
  10806. #u11021 .text {
  10807. position:absolute;
  10808. align-self:center;
  10809. padding:2px 2px 2px 0px;
  10810. box-sizing:border-box;
  10811. width:100%;
  10812. }
  10813. #u11021_text {
  10814. border-width:0px;
  10815. word-wrap:break-word;
  10816. text-transform:none;
  10817. visibility:hidden;
  10818. }
  10819. #u11022_img {
  10820. border-width:0px;
  10821. position:absolute;
  10822. left:0px;
  10823. top:0px;
  10824. width:80px;
  10825. height:35px;
  10826. }
  10827. #u11022 {
  10828. border-width:0px;
  10829. position:absolute;
  10830. left:992px;
  10831. top:226px;
  10832. width:80px;
  10833. height:35px;
  10834. display:flex;
  10835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10836. font-weight:400;
  10837. font-style:normal;
  10838. font-size:12px;
  10839. color:#606266;
  10840. }
  10841. #u11022 .text {
  10842. position:absolute;
  10843. align-self:center;
  10844. padding:2px 2px 2px 0px;
  10845. box-sizing:border-box;
  10846. width:100%;
  10847. }
  10848. #u11022_text {
  10849. border-width:0px;
  10850. word-wrap:break-word;
  10851. text-transform:none;
  10852. visibility:hidden;
  10853. }
  10854. #u11023_img {
  10855. border-width:0px;
  10856. position:absolute;
  10857. left:0px;
  10858. top:0px;
  10859. width:80px;
  10860. height:35px;
  10861. }
  10862. #u11023 {
  10863. border-width:0px;
  10864. position:absolute;
  10865. left:1072px;
  10866. top:226px;
  10867. width:80px;
  10868. height:35px;
  10869. display:flex;
  10870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10871. font-weight:400;
  10872. font-style:normal;
  10873. font-size:12px;
  10874. color:#606266;
  10875. }
  10876. #u11023 .text {
  10877. position:absolute;
  10878. align-self:center;
  10879. padding:2px 2px 2px 0px;
  10880. box-sizing:border-box;
  10881. width:100%;
  10882. }
  10883. #u11023_text {
  10884. border-width:0px;
  10885. word-wrap:break-word;
  10886. text-transform:none;
  10887. visibility:hidden;
  10888. }
  10889. #u11024_img {
  10890. border-width:0px;
  10891. position:absolute;
  10892. left:0px;
  10893. top:0px;
  10894. width:180px;
  10895. height:35px;
  10896. }
  10897. #u11024 {
  10898. border-width:0px;
  10899. position:absolute;
  10900. left:1152px;
  10901. top:226px;
  10902. width:180px;
  10903. height:35px;
  10904. display:flex;
  10905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10906. font-weight:400;
  10907. font-style:normal;
  10908. font-size:12px;
  10909. color:#02A7F0;
  10910. }
  10911. #u11024 .text {
  10912. position:absolute;
  10913. align-self:center;
  10914. padding:2px 2px 2px 0px;
  10915. box-sizing:border-box;
  10916. width:100%;
  10917. }
  10918. #u11024_text {
  10919. border-width:0px;
  10920. word-wrap:break-word;
  10921. text-transform:none;
  10922. visibility:hidden;
  10923. }
  10924. #u11025_img {
  10925. border-width:0px;
  10926. position:absolute;
  10927. left:0px;
  10928. top:0px;
  10929. width:80px;
  10930. height:35px;
  10931. }
  10932. #u11025 {
  10933. border-width:0px;
  10934. position:absolute;
  10935. left:0px;
  10936. top:261px;
  10937. width:80px;
  10938. height:35px;
  10939. display:flex;
  10940. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10941. font-weight:400;
  10942. font-style:normal;
  10943. font-size:12px;
  10944. color:#606266;
  10945. }
  10946. #u11025 .text {
  10947. position:absolute;
  10948. align-self:center;
  10949. padding:2px 2px 2px 0px;
  10950. box-sizing:border-box;
  10951. width:100%;
  10952. }
  10953. #u11025_text {
  10954. border-width:0px;
  10955. word-wrap:break-word;
  10956. text-transform:none;
  10957. visibility:hidden;
  10958. }
  10959. #u11026_img {
  10960. border-width:0px;
  10961. position:absolute;
  10962. left:0px;
  10963. top:0px;
  10964. width:80px;
  10965. height:35px;
  10966. }
  10967. #u11026 {
  10968. border-width:0px;
  10969. position:absolute;
  10970. left:80px;
  10971. top:261px;
  10972. width:80px;
  10973. height:35px;
  10974. display:flex;
  10975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10976. font-weight:400;
  10977. font-style:normal;
  10978. font-size:12px;
  10979. color:#606266;
  10980. }
  10981. #u11026 .text {
  10982. position:absolute;
  10983. align-self:center;
  10984. padding:2px 2px 2px 0px;
  10985. box-sizing:border-box;
  10986. width:100%;
  10987. }
  10988. #u11026_text {
  10989. border-width:0px;
  10990. word-wrap:break-word;
  10991. text-transform:none;
  10992. visibility:hidden;
  10993. }
  10994. #u11027_img {
  10995. border-width:0px;
  10996. position:absolute;
  10997. left:0px;
  10998. top:0px;
  10999. width:80px;
  11000. height:35px;
  11001. }
  11002. #u11027 {
  11003. border-width:0px;
  11004. position:absolute;
  11005. left:160px;
  11006. top:261px;
  11007. width:80px;
  11008. height:35px;
  11009. display:flex;
  11010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11011. font-weight:400;
  11012. font-style:normal;
  11013. font-size:12px;
  11014. color:#606266;
  11015. }
  11016. #u11027 .text {
  11017. position:absolute;
  11018. align-self:center;
  11019. padding:2px 2px 2px 0px;
  11020. box-sizing:border-box;
  11021. width:100%;
  11022. }
  11023. #u11027_text {
  11024. border-width:0px;
  11025. word-wrap:break-word;
  11026. text-transform:none;
  11027. visibility:hidden;
  11028. }
  11029. #u11028_img {
  11030. border-width:0px;
  11031. position:absolute;
  11032. left:0px;
  11033. top:0px;
  11034. width:80px;
  11035. height:35px;
  11036. }
  11037. #u11028 {
  11038. border-width:0px;
  11039. position:absolute;
  11040. left:240px;
  11041. top:261px;
  11042. width:80px;
  11043. height:35px;
  11044. display:flex;
  11045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11046. font-weight:400;
  11047. font-style:normal;
  11048. font-size:12px;
  11049. color:#606266;
  11050. }
  11051. #u11028 .text {
  11052. position:absolute;
  11053. align-self:center;
  11054. padding:2px 2px 2px 0px;
  11055. box-sizing:border-box;
  11056. width:100%;
  11057. }
  11058. #u11028_text {
  11059. border-width:0px;
  11060. word-wrap:break-word;
  11061. text-transform:none;
  11062. visibility:hidden;
  11063. }
  11064. #u11029_img {
  11065. border-width:0px;
  11066. position:absolute;
  11067. left:0px;
  11068. top:0px;
  11069. width:80px;
  11070. height:35px;
  11071. }
  11072. #u11029 {
  11073. border-width:0px;
  11074. position:absolute;
  11075. left:320px;
  11076. top:261px;
  11077. width:80px;
  11078. height:35px;
  11079. display:flex;
  11080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11081. font-weight:400;
  11082. font-style:normal;
  11083. font-size:12px;
  11084. color:#606266;
  11085. }
  11086. #u11029 .text {
  11087. position:absolute;
  11088. align-self:center;
  11089. padding:2px 2px 2px 0px;
  11090. box-sizing:border-box;
  11091. width:100%;
  11092. }
  11093. #u11029_text {
  11094. border-width:0px;
  11095. word-wrap:break-word;
  11096. text-transform:none;
  11097. visibility:hidden;
  11098. }
  11099. #u11030_img {
  11100. border-width:0px;
  11101. position:absolute;
  11102. left:0px;
  11103. top:0px;
  11104. width:80px;
  11105. height:35px;
  11106. }
  11107. #u11030 {
  11108. border-width:0px;
  11109. position:absolute;
  11110. left:400px;
  11111. top:261px;
  11112. width:80px;
  11113. height:35px;
  11114. display:flex;
  11115. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11116. font-weight:400;
  11117. font-style:normal;
  11118. font-size:12px;
  11119. color:#606266;
  11120. }
  11121. #u11030 .text {
  11122. position:absolute;
  11123. align-self:center;
  11124. padding:2px 2px 2px 0px;
  11125. box-sizing:border-box;
  11126. width:100%;
  11127. }
  11128. #u11030_text {
  11129. border-width:0px;
  11130. word-wrap:break-word;
  11131. text-transform:none;
  11132. visibility:hidden;
  11133. }
  11134. #u11031_img {
  11135. border-width:0px;
  11136. position:absolute;
  11137. left:0px;
  11138. top:0px;
  11139. width:80px;
  11140. height:35px;
  11141. }
  11142. #u11031 {
  11143. border-width:0px;
  11144. position:absolute;
  11145. left:480px;
  11146. top:261px;
  11147. width:80px;
  11148. height:35px;
  11149. display:flex;
  11150. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11151. font-weight:400;
  11152. font-style:normal;
  11153. font-size:12px;
  11154. color:#606266;
  11155. }
  11156. #u11031 .text {
  11157. position:absolute;
  11158. align-self:center;
  11159. padding:2px 2px 2px 0px;
  11160. box-sizing:border-box;
  11161. width:100%;
  11162. }
  11163. #u11031_text {
  11164. border-width:0px;
  11165. word-wrap:break-word;
  11166. text-transform:none;
  11167. visibility:hidden;
  11168. }
  11169. #u11032_img {
  11170. border-width:0px;
  11171. position:absolute;
  11172. left:0px;
  11173. top:0px;
  11174. width:102px;
  11175. height:35px;
  11176. }
  11177. #u11032 {
  11178. border-width:0px;
  11179. position:absolute;
  11180. left:560px;
  11181. top:261px;
  11182. width:102px;
  11183. height:35px;
  11184. display:flex;
  11185. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11186. font-weight:400;
  11187. font-style:normal;
  11188. font-size:12px;
  11189. color:#606266;
  11190. }
  11191. #u11032 .text {
  11192. position:absolute;
  11193. align-self:center;
  11194. padding:2px 2px 2px 0px;
  11195. box-sizing:border-box;
  11196. width:100%;
  11197. }
  11198. #u11032_text {
  11199. border-width:0px;
  11200. word-wrap:break-word;
  11201. text-transform:none;
  11202. visibility:hidden;
  11203. }
  11204. #u11033_img {
  11205. border-width:0px;
  11206. position:absolute;
  11207. left:0px;
  11208. top:0px;
  11209. width:90px;
  11210. height:35px;
  11211. }
  11212. #u11033 {
  11213. border-width:0px;
  11214. position:absolute;
  11215. left:662px;
  11216. top:261px;
  11217. width:90px;
  11218. height:35px;
  11219. display:flex;
  11220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11221. font-weight:400;
  11222. font-style:normal;
  11223. font-size:12px;
  11224. color:#606266;
  11225. }
  11226. #u11033 .text {
  11227. position:absolute;
  11228. align-self:center;
  11229. padding:2px 2px 2px 0px;
  11230. box-sizing:border-box;
  11231. width:100%;
  11232. }
  11233. #u11033_text {
  11234. border-width:0px;
  11235. word-wrap:break-word;
  11236. text-transform:none;
  11237. visibility:hidden;
  11238. }
  11239. #u11034_img {
  11240. border-width:0px;
  11241. position:absolute;
  11242. left:0px;
  11243. top:0px;
  11244. width:80px;
  11245. height:35px;
  11246. }
  11247. #u11034 {
  11248. border-width:0px;
  11249. position:absolute;
  11250. left:752px;
  11251. top:261px;
  11252. width:80px;
  11253. height:35px;
  11254. display:flex;
  11255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11256. font-weight:400;
  11257. font-style:normal;
  11258. font-size:12px;
  11259. color:#606266;
  11260. }
  11261. #u11034 .text {
  11262. position:absolute;
  11263. align-self:center;
  11264. padding:2px 2px 2px 0px;
  11265. box-sizing:border-box;
  11266. width:100%;
  11267. }
  11268. #u11034_text {
  11269. border-width:0px;
  11270. word-wrap:break-word;
  11271. text-transform:none;
  11272. visibility:hidden;
  11273. }
  11274. #u11035_img {
  11275. border-width:0px;
  11276. position:absolute;
  11277. left:0px;
  11278. top:0px;
  11279. width:80px;
  11280. height:35px;
  11281. }
  11282. #u11035 {
  11283. border-width:0px;
  11284. position:absolute;
  11285. left:832px;
  11286. top:261px;
  11287. width:80px;
  11288. height:35px;
  11289. display:flex;
  11290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11291. font-weight:400;
  11292. font-style:normal;
  11293. font-size:12px;
  11294. color:#606266;
  11295. }
  11296. #u11035 .text {
  11297. position:absolute;
  11298. align-self:center;
  11299. padding:2px 2px 2px 0px;
  11300. box-sizing:border-box;
  11301. width:100%;
  11302. }
  11303. #u11035_text {
  11304. border-width:0px;
  11305. word-wrap:break-word;
  11306. text-transform:none;
  11307. visibility:hidden;
  11308. }
  11309. #u11036_img {
  11310. border-width:0px;
  11311. position:absolute;
  11312. left:0px;
  11313. top:0px;
  11314. width:80px;
  11315. height:35px;
  11316. }
  11317. #u11036 {
  11318. border-width:0px;
  11319. position:absolute;
  11320. left:912px;
  11321. top:261px;
  11322. width:80px;
  11323. height:35px;
  11324. display:flex;
  11325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11326. font-weight:400;
  11327. font-style:normal;
  11328. font-size:12px;
  11329. color:#606266;
  11330. }
  11331. #u11036 .text {
  11332. position:absolute;
  11333. align-self:center;
  11334. padding:2px 2px 2px 0px;
  11335. box-sizing:border-box;
  11336. width:100%;
  11337. }
  11338. #u11036_text {
  11339. border-width:0px;
  11340. word-wrap:break-word;
  11341. text-transform:none;
  11342. visibility:hidden;
  11343. }
  11344. #u11037_img {
  11345. border-width:0px;
  11346. position:absolute;
  11347. left:0px;
  11348. top:0px;
  11349. width:80px;
  11350. height:35px;
  11351. }
  11352. #u11037 {
  11353. border-width:0px;
  11354. position:absolute;
  11355. left:992px;
  11356. top:261px;
  11357. width:80px;
  11358. height:35px;
  11359. display:flex;
  11360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11361. font-weight:400;
  11362. font-style:normal;
  11363. font-size:12px;
  11364. color:#606266;
  11365. }
  11366. #u11037 .text {
  11367. position:absolute;
  11368. align-self:center;
  11369. padding:2px 2px 2px 0px;
  11370. box-sizing:border-box;
  11371. width:100%;
  11372. }
  11373. #u11037_text {
  11374. border-width:0px;
  11375. word-wrap:break-word;
  11376. text-transform:none;
  11377. visibility:hidden;
  11378. }
  11379. #u11038_img {
  11380. border-width:0px;
  11381. position:absolute;
  11382. left:0px;
  11383. top:0px;
  11384. width:80px;
  11385. height:35px;
  11386. }
  11387. #u11038 {
  11388. border-width:0px;
  11389. position:absolute;
  11390. left:1072px;
  11391. top:261px;
  11392. width:80px;
  11393. height:35px;
  11394. display:flex;
  11395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11396. font-weight:400;
  11397. font-style:normal;
  11398. font-size:12px;
  11399. color:#606266;
  11400. }
  11401. #u11038 .text {
  11402. position:absolute;
  11403. align-self:center;
  11404. padding:2px 2px 2px 0px;
  11405. box-sizing:border-box;
  11406. width:100%;
  11407. }
  11408. #u11038_text {
  11409. border-width:0px;
  11410. word-wrap:break-word;
  11411. text-transform:none;
  11412. visibility:hidden;
  11413. }
  11414. #u11039_img {
  11415. border-width:0px;
  11416. position:absolute;
  11417. left:0px;
  11418. top:0px;
  11419. width:180px;
  11420. height:35px;
  11421. }
  11422. #u11039 {
  11423. border-width:0px;
  11424. position:absolute;
  11425. left:1152px;
  11426. top:261px;
  11427. width:180px;
  11428. height:35px;
  11429. display:flex;
  11430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11431. font-weight:400;
  11432. font-style:normal;
  11433. font-size:12px;
  11434. color:#02A7F0;
  11435. }
  11436. #u11039 .text {
  11437. position:absolute;
  11438. align-self:center;
  11439. padding:2px 2px 2px 0px;
  11440. box-sizing:border-box;
  11441. width:100%;
  11442. }
  11443. #u11039_text {
  11444. border-width:0px;
  11445. word-wrap:break-word;
  11446. text-transform:none;
  11447. visibility:hidden;
  11448. }
  11449. #u11040_img {
  11450. border-width:0px;
  11451. position:absolute;
  11452. left:0px;
  11453. top:0px;
  11454. width:80px;
  11455. height:35px;
  11456. }
  11457. #u11040 {
  11458. border-width:0px;
  11459. position:absolute;
  11460. left:0px;
  11461. top:296px;
  11462. width:80px;
  11463. height:35px;
  11464. display:flex;
  11465. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11466. font-weight:400;
  11467. font-style:normal;
  11468. font-size:12px;
  11469. color:#606266;
  11470. }
  11471. #u11040 .text {
  11472. position:absolute;
  11473. align-self:center;
  11474. padding:2px 2px 2px 0px;
  11475. box-sizing:border-box;
  11476. width:100%;
  11477. }
  11478. #u11040_text {
  11479. border-width:0px;
  11480. word-wrap:break-word;
  11481. text-transform:none;
  11482. visibility:hidden;
  11483. }
  11484. #u11041_img {
  11485. border-width:0px;
  11486. position:absolute;
  11487. left:0px;
  11488. top:0px;
  11489. width:80px;
  11490. height:35px;
  11491. }
  11492. #u11041 {
  11493. border-width:0px;
  11494. position:absolute;
  11495. left:80px;
  11496. top:296px;
  11497. width:80px;
  11498. height:35px;
  11499. display:flex;
  11500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11501. font-weight:400;
  11502. font-style:normal;
  11503. font-size:12px;
  11504. color:#606266;
  11505. }
  11506. #u11041 .text {
  11507. position:absolute;
  11508. align-self:center;
  11509. padding:2px 2px 2px 0px;
  11510. box-sizing:border-box;
  11511. width:100%;
  11512. }
  11513. #u11041_text {
  11514. border-width:0px;
  11515. word-wrap:break-word;
  11516. text-transform:none;
  11517. visibility:hidden;
  11518. }
  11519. #u11042_img {
  11520. border-width:0px;
  11521. position:absolute;
  11522. left:0px;
  11523. top:0px;
  11524. width:80px;
  11525. height:35px;
  11526. }
  11527. #u11042 {
  11528. border-width:0px;
  11529. position:absolute;
  11530. left:160px;
  11531. top:296px;
  11532. width:80px;
  11533. height:35px;
  11534. display:flex;
  11535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11536. font-weight:400;
  11537. font-style:normal;
  11538. font-size:12px;
  11539. color:#606266;
  11540. }
  11541. #u11042 .text {
  11542. position:absolute;
  11543. align-self:center;
  11544. padding:2px 2px 2px 0px;
  11545. box-sizing:border-box;
  11546. width:100%;
  11547. }
  11548. #u11042_text {
  11549. border-width:0px;
  11550. word-wrap:break-word;
  11551. text-transform:none;
  11552. visibility:hidden;
  11553. }
  11554. #u11043_img {
  11555. border-width:0px;
  11556. position:absolute;
  11557. left:0px;
  11558. top:0px;
  11559. width:80px;
  11560. height:35px;
  11561. }
  11562. #u11043 {
  11563. border-width:0px;
  11564. position:absolute;
  11565. left:240px;
  11566. top:296px;
  11567. width:80px;
  11568. height:35px;
  11569. display:flex;
  11570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11571. font-weight:400;
  11572. font-style:normal;
  11573. font-size:12px;
  11574. color:#606266;
  11575. }
  11576. #u11043 .text {
  11577. position:absolute;
  11578. align-self:center;
  11579. padding:2px 2px 2px 0px;
  11580. box-sizing:border-box;
  11581. width:100%;
  11582. }
  11583. #u11043_text {
  11584. border-width:0px;
  11585. word-wrap:break-word;
  11586. text-transform:none;
  11587. visibility:hidden;
  11588. }
  11589. #u11044_img {
  11590. border-width:0px;
  11591. position:absolute;
  11592. left:0px;
  11593. top:0px;
  11594. width:80px;
  11595. height:35px;
  11596. }
  11597. #u11044 {
  11598. border-width:0px;
  11599. position:absolute;
  11600. left:320px;
  11601. top:296px;
  11602. width:80px;
  11603. height:35px;
  11604. display:flex;
  11605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11606. font-weight:400;
  11607. font-style:normal;
  11608. font-size:12px;
  11609. color:#606266;
  11610. }
  11611. #u11044 .text {
  11612. position:absolute;
  11613. align-self:center;
  11614. padding:2px 2px 2px 0px;
  11615. box-sizing:border-box;
  11616. width:100%;
  11617. }
  11618. #u11044_text {
  11619. border-width:0px;
  11620. word-wrap:break-word;
  11621. text-transform:none;
  11622. visibility:hidden;
  11623. }
  11624. #u11045_img {
  11625. border-width:0px;
  11626. position:absolute;
  11627. left:0px;
  11628. top:0px;
  11629. width:80px;
  11630. height:35px;
  11631. }
  11632. #u11045 {
  11633. border-width:0px;
  11634. position:absolute;
  11635. left:400px;
  11636. top:296px;
  11637. width:80px;
  11638. height:35px;
  11639. display:flex;
  11640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11641. font-weight:400;
  11642. font-style:normal;
  11643. font-size:12px;
  11644. color:#606266;
  11645. }
  11646. #u11045 .text {
  11647. position:absolute;
  11648. align-self:center;
  11649. padding:2px 2px 2px 0px;
  11650. box-sizing:border-box;
  11651. width:100%;
  11652. }
  11653. #u11045_text {
  11654. border-width:0px;
  11655. word-wrap:break-word;
  11656. text-transform:none;
  11657. visibility:hidden;
  11658. }
  11659. #u11046_img {
  11660. border-width:0px;
  11661. position:absolute;
  11662. left:0px;
  11663. top:0px;
  11664. width:80px;
  11665. height:35px;
  11666. }
  11667. #u11046 {
  11668. border-width:0px;
  11669. position:absolute;
  11670. left:480px;
  11671. top:296px;
  11672. width:80px;
  11673. height:35px;
  11674. display:flex;
  11675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11676. font-weight:400;
  11677. font-style:normal;
  11678. font-size:12px;
  11679. color:#606266;
  11680. }
  11681. #u11046 .text {
  11682. position:absolute;
  11683. align-self:center;
  11684. padding:2px 2px 2px 0px;
  11685. box-sizing:border-box;
  11686. width:100%;
  11687. }
  11688. #u11046_text {
  11689. border-width:0px;
  11690. word-wrap:break-word;
  11691. text-transform:none;
  11692. visibility:hidden;
  11693. }
  11694. #u11047_img {
  11695. border-width:0px;
  11696. position:absolute;
  11697. left:0px;
  11698. top:0px;
  11699. width:102px;
  11700. height:35px;
  11701. }
  11702. #u11047 {
  11703. border-width:0px;
  11704. position:absolute;
  11705. left:560px;
  11706. top:296px;
  11707. width:102px;
  11708. height:35px;
  11709. display:flex;
  11710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11711. font-weight:400;
  11712. font-style:normal;
  11713. font-size:12px;
  11714. color:#606266;
  11715. }
  11716. #u11047 .text {
  11717. position:absolute;
  11718. align-self:center;
  11719. padding:2px 2px 2px 0px;
  11720. box-sizing:border-box;
  11721. width:100%;
  11722. }
  11723. #u11047_text {
  11724. border-width:0px;
  11725. word-wrap:break-word;
  11726. text-transform:none;
  11727. visibility:hidden;
  11728. }
  11729. #u11048_img {
  11730. border-width:0px;
  11731. position:absolute;
  11732. left:0px;
  11733. top:0px;
  11734. width:90px;
  11735. height:35px;
  11736. }
  11737. #u11048 {
  11738. border-width:0px;
  11739. position:absolute;
  11740. left:662px;
  11741. top:296px;
  11742. width:90px;
  11743. height:35px;
  11744. display:flex;
  11745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11746. font-weight:400;
  11747. font-style:normal;
  11748. font-size:12px;
  11749. color:#606266;
  11750. }
  11751. #u11048 .text {
  11752. position:absolute;
  11753. align-self:center;
  11754. padding:2px 2px 2px 0px;
  11755. box-sizing:border-box;
  11756. width:100%;
  11757. }
  11758. #u11048_text {
  11759. border-width:0px;
  11760. word-wrap:break-word;
  11761. text-transform:none;
  11762. visibility:hidden;
  11763. }
  11764. #u11049_img {
  11765. border-width:0px;
  11766. position:absolute;
  11767. left:0px;
  11768. top:0px;
  11769. width:80px;
  11770. height:35px;
  11771. }
  11772. #u11049 {
  11773. border-width:0px;
  11774. position:absolute;
  11775. left:752px;
  11776. top:296px;
  11777. width:80px;
  11778. height:35px;
  11779. display:flex;
  11780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11781. font-weight:400;
  11782. font-style:normal;
  11783. font-size:12px;
  11784. color:#606266;
  11785. }
  11786. #u11049 .text {
  11787. position:absolute;
  11788. align-self:center;
  11789. padding:2px 2px 2px 0px;
  11790. box-sizing:border-box;
  11791. width:100%;
  11792. }
  11793. #u11049_text {
  11794. border-width:0px;
  11795. word-wrap:break-word;
  11796. text-transform:none;
  11797. visibility:hidden;
  11798. }
  11799. #u11050_img {
  11800. border-width:0px;
  11801. position:absolute;
  11802. left:0px;
  11803. top:0px;
  11804. width:80px;
  11805. height:35px;
  11806. }
  11807. #u11050 {
  11808. border-width:0px;
  11809. position:absolute;
  11810. left:832px;
  11811. top:296px;
  11812. width:80px;
  11813. height:35px;
  11814. display:flex;
  11815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11816. font-weight:400;
  11817. font-style:normal;
  11818. font-size:12px;
  11819. color:#606266;
  11820. }
  11821. #u11050 .text {
  11822. position:absolute;
  11823. align-self:center;
  11824. padding:2px 2px 2px 0px;
  11825. box-sizing:border-box;
  11826. width:100%;
  11827. }
  11828. #u11050_text {
  11829. border-width:0px;
  11830. word-wrap:break-word;
  11831. text-transform:none;
  11832. visibility:hidden;
  11833. }
  11834. #u11051_img {
  11835. border-width:0px;
  11836. position:absolute;
  11837. left:0px;
  11838. top:0px;
  11839. width:80px;
  11840. height:35px;
  11841. }
  11842. #u11051 {
  11843. border-width:0px;
  11844. position:absolute;
  11845. left:912px;
  11846. top:296px;
  11847. width:80px;
  11848. height:35px;
  11849. display:flex;
  11850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11851. font-weight:400;
  11852. font-style:normal;
  11853. font-size:12px;
  11854. color:#606266;
  11855. }
  11856. #u11051 .text {
  11857. position:absolute;
  11858. align-self:center;
  11859. padding:2px 2px 2px 0px;
  11860. box-sizing:border-box;
  11861. width:100%;
  11862. }
  11863. #u11051_text {
  11864. border-width:0px;
  11865. word-wrap:break-word;
  11866. text-transform:none;
  11867. visibility:hidden;
  11868. }
  11869. #u11052_img {
  11870. border-width:0px;
  11871. position:absolute;
  11872. left:0px;
  11873. top:0px;
  11874. width:80px;
  11875. height:35px;
  11876. }
  11877. #u11052 {
  11878. border-width:0px;
  11879. position:absolute;
  11880. left:992px;
  11881. top:296px;
  11882. width:80px;
  11883. height:35px;
  11884. display:flex;
  11885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11886. font-weight:400;
  11887. font-style:normal;
  11888. font-size:12px;
  11889. color:#606266;
  11890. }
  11891. #u11052 .text {
  11892. position:absolute;
  11893. align-self:center;
  11894. padding:2px 2px 2px 0px;
  11895. box-sizing:border-box;
  11896. width:100%;
  11897. }
  11898. #u11052_text {
  11899. border-width:0px;
  11900. word-wrap:break-word;
  11901. text-transform:none;
  11902. visibility:hidden;
  11903. }
  11904. #u11053_img {
  11905. border-width:0px;
  11906. position:absolute;
  11907. left:0px;
  11908. top:0px;
  11909. width:80px;
  11910. height:35px;
  11911. }
  11912. #u11053 {
  11913. border-width:0px;
  11914. position:absolute;
  11915. left:1072px;
  11916. top:296px;
  11917. width:80px;
  11918. height:35px;
  11919. display:flex;
  11920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11921. font-weight:400;
  11922. font-style:normal;
  11923. font-size:12px;
  11924. color:#606266;
  11925. }
  11926. #u11053 .text {
  11927. position:absolute;
  11928. align-self:center;
  11929. padding:2px 2px 2px 0px;
  11930. box-sizing:border-box;
  11931. width:100%;
  11932. }
  11933. #u11053_text {
  11934. border-width:0px;
  11935. word-wrap:break-word;
  11936. text-transform:none;
  11937. visibility:hidden;
  11938. }
  11939. #u11054_img {
  11940. border-width:0px;
  11941. position:absolute;
  11942. left:0px;
  11943. top:0px;
  11944. width:180px;
  11945. height:35px;
  11946. }
  11947. #u11054 {
  11948. border-width:0px;
  11949. position:absolute;
  11950. left:1152px;
  11951. top:296px;
  11952. width:180px;
  11953. height:35px;
  11954. display:flex;
  11955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11956. font-weight:400;
  11957. font-style:normal;
  11958. font-size:12px;
  11959. color:#02A7F0;
  11960. }
  11961. #u11054 .text {
  11962. position:absolute;
  11963. align-self:center;
  11964. padding:2px 2px 2px 0px;
  11965. box-sizing:border-box;
  11966. width:100%;
  11967. }
  11968. #u11054_text {
  11969. border-width:0px;
  11970. word-wrap:break-word;
  11971. text-transform:none;
  11972. visibility:hidden;
  11973. }
  11974. #u11055_img {
  11975. border-width:0px;
  11976. position:absolute;
  11977. left:0px;
  11978. top:0px;
  11979. width:80px;
  11980. height:33px;
  11981. }
  11982. #u11055 {
  11983. border-width:0px;
  11984. position:absolute;
  11985. left:0px;
  11986. top:331px;
  11987. width:80px;
  11988. height:33px;
  11989. display:flex;
  11990. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11991. font-weight:400;
  11992. font-style:normal;
  11993. font-size:12px;
  11994. color:#606266;
  11995. }
  11996. #u11055 .text {
  11997. position:absolute;
  11998. align-self:center;
  11999. padding:2px 2px 2px 0px;
  12000. box-sizing:border-box;
  12001. width:100%;
  12002. }
  12003. #u11055_text {
  12004. border-width:0px;
  12005. word-wrap:break-word;
  12006. text-transform:none;
  12007. visibility:hidden;
  12008. }
  12009. #u11056_img {
  12010. border-width:0px;
  12011. position:absolute;
  12012. left:0px;
  12013. top:0px;
  12014. width:80px;
  12015. height:33px;
  12016. }
  12017. #u11056 {
  12018. border-width:0px;
  12019. position:absolute;
  12020. left:80px;
  12021. top:331px;
  12022. width:80px;
  12023. height:33px;
  12024. display:flex;
  12025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12026. font-weight:400;
  12027. font-style:normal;
  12028. font-size:12px;
  12029. color:#606266;
  12030. }
  12031. #u11056 .text {
  12032. position:absolute;
  12033. align-self:center;
  12034. padding:2px 2px 2px 0px;
  12035. box-sizing:border-box;
  12036. width:100%;
  12037. }
  12038. #u11056_text {
  12039. border-width:0px;
  12040. word-wrap:break-word;
  12041. text-transform:none;
  12042. visibility:hidden;
  12043. }
  12044. #u11057_img {
  12045. border-width:0px;
  12046. position:absolute;
  12047. left:0px;
  12048. top:0px;
  12049. width:80px;
  12050. height:33px;
  12051. }
  12052. #u11057 {
  12053. border-width:0px;
  12054. position:absolute;
  12055. left:160px;
  12056. top:331px;
  12057. width:80px;
  12058. height:33px;
  12059. display:flex;
  12060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12061. font-weight:400;
  12062. font-style:normal;
  12063. font-size:12px;
  12064. color:#606266;
  12065. }
  12066. #u11057 .text {
  12067. position:absolute;
  12068. align-self:center;
  12069. padding:2px 2px 2px 0px;
  12070. box-sizing:border-box;
  12071. width:100%;
  12072. }
  12073. #u11057_text {
  12074. border-width:0px;
  12075. word-wrap:break-word;
  12076. text-transform:none;
  12077. visibility:hidden;
  12078. }
  12079. #u11058_img {
  12080. border-width:0px;
  12081. position:absolute;
  12082. left:0px;
  12083. top:0px;
  12084. width:80px;
  12085. height:33px;
  12086. }
  12087. #u11058 {
  12088. border-width:0px;
  12089. position:absolute;
  12090. left:240px;
  12091. top:331px;
  12092. width:80px;
  12093. height:33px;
  12094. display:flex;
  12095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12096. font-weight:400;
  12097. font-style:normal;
  12098. font-size:12px;
  12099. color:#606266;
  12100. }
  12101. #u11058 .text {
  12102. position:absolute;
  12103. align-self:center;
  12104. padding:2px 2px 2px 0px;
  12105. box-sizing:border-box;
  12106. width:100%;
  12107. }
  12108. #u11058_text {
  12109. border-width:0px;
  12110. word-wrap:break-word;
  12111. text-transform:none;
  12112. visibility:hidden;
  12113. }
  12114. #u11059_img {
  12115. border-width:0px;
  12116. position:absolute;
  12117. left:0px;
  12118. top:0px;
  12119. width:80px;
  12120. height:33px;
  12121. }
  12122. #u11059 {
  12123. border-width:0px;
  12124. position:absolute;
  12125. left:320px;
  12126. top:331px;
  12127. width:80px;
  12128. height:33px;
  12129. display:flex;
  12130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12131. font-weight:400;
  12132. font-style:normal;
  12133. font-size:12px;
  12134. color:#606266;
  12135. }
  12136. #u11059 .text {
  12137. position:absolute;
  12138. align-self:center;
  12139. padding:2px 2px 2px 0px;
  12140. box-sizing:border-box;
  12141. width:100%;
  12142. }
  12143. #u11059_text {
  12144. border-width:0px;
  12145. word-wrap:break-word;
  12146. text-transform:none;
  12147. visibility:hidden;
  12148. }
  12149. #u11060_img {
  12150. border-width:0px;
  12151. position:absolute;
  12152. left:0px;
  12153. top:0px;
  12154. width:80px;
  12155. height:33px;
  12156. }
  12157. #u11060 {
  12158. border-width:0px;
  12159. position:absolute;
  12160. left:400px;
  12161. top:331px;
  12162. width:80px;
  12163. height:33px;
  12164. display:flex;
  12165. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12166. font-weight:400;
  12167. font-style:normal;
  12168. font-size:12px;
  12169. color:#606266;
  12170. }
  12171. #u11060 .text {
  12172. position:absolute;
  12173. align-self:center;
  12174. padding:2px 2px 2px 0px;
  12175. box-sizing:border-box;
  12176. width:100%;
  12177. }
  12178. #u11060_text {
  12179. border-width:0px;
  12180. word-wrap:break-word;
  12181. text-transform:none;
  12182. visibility:hidden;
  12183. }
  12184. #u11061_img {
  12185. border-width:0px;
  12186. position:absolute;
  12187. left:0px;
  12188. top:0px;
  12189. width:80px;
  12190. height:33px;
  12191. }
  12192. #u11061 {
  12193. border-width:0px;
  12194. position:absolute;
  12195. left:480px;
  12196. top:331px;
  12197. width:80px;
  12198. height:33px;
  12199. display:flex;
  12200. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12201. font-weight:400;
  12202. font-style:normal;
  12203. font-size:12px;
  12204. color:#606266;
  12205. }
  12206. #u11061 .text {
  12207. position:absolute;
  12208. align-self:center;
  12209. padding:2px 2px 2px 0px;
  12210. box-sizing:border-box;
  12211. width:100%;
  12212. }
  12213. #u11061_text {
  12214. border-width:0px;
  12215. word-wrap:break-word;
  12216. text-transform:none;
  12217. visibility:hidden;
  12218. }
  12219. #u11062_img {
  12220. border-width:0px;
  12221. position:absolute;
  12222. left:0px;
  12223. top:0px;
  12224. width:102px;
  12225. height:33px;
  12226. }
  12227. #u11062 {
  12228. border-width:0px;
  12229. position:absolute;
  12230. left:560px;
  12231. top:331px;
  12232. width:102px;
  12233. height:33px;
  12234. display:flex;
  12235. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12236. font-weight:400;
  12237. font-style:normal;
  12238. font-size:12px;
  12239. color:#606266;
  12240. }
  12241. #u11062 .text {
  12242. position:absolute;
  12243. align-self:center;
  12244. padding:2px 2px 2px 0px;
  12245. box-sizing:border-box;
  12246. width:100%;
  12247. }
  12248. #u11062_text {
  12249. border-width:0px;
  12250. word-wrap:break-word;
  12251. text-transform:none;
  12252. visibility:hidden;
  12253. }
  12254. #u11063_img {
  12255. border-width:0px;
  12256. position:absolute;
  12257. left:0px;
  12258. top:0px;
  12259. width:90px;
  12260. height:33px;
  12261. }
  12262. #u11063 {
  12263. border-width:0px;
  12264. position:absolute;
  12265. left:662px;
  12266. top:331px;
  12267. width:90px;
  12268. height:33px;
  12269. display:flex;
  12270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12271. font-weight:400;
  12272. font-style:normal;
  12273. font-size:12px;
  12274. color:#606266;
  12275. }
  12276. #u11063 .text {
  12277. position:absolute;
  12278. align-self:center;
  12279. padding:2px 2px 2px 0px;
  12280. box-sizing:border-box;
  12281. width:100%;
  12282. }
  12283. #u11063_text {
  12284. border-width:0px;
  12285. word-wrap:break-word;
  12286. text-transform:none;
  12287. visibility:hidden;
  12288. }
  12289. #u11064_img {
  12290. border-width:0px;
  12291. position:absolute;
  12292. left:0px;
  12293. top:0px;
  12294. width:80px;
  12295. height:33px;
  12296. }
  12297. #u11064 {
  12298. border-width:0px;
  12299. position:absolute;
  12300. left:752px;
  12301. top:331px;
  12302. width:80px;
  12303. height:33px;
  12304. display:flex;
  12305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12306. font-weight:400;
  12307. font-style:normal;
  12308. font-size:12px;
  12309. color:#606266;
  12310. }
  12311. #u11064 .text {
  12312. position:absolute;
  12313. align-self:center;
  12314. padding:2px 2px 2px 0px;
  12315. box-sizing:border-box;
  12316. width:100%;
  12317. }
  12318. #u11064_text {
  12319. border-width:0px;
  12320. word-wrap:break-word;
  12321. text-transform:none;
  12322. visibility:hidden;
  12323. }
  12324. #u11065_img {
  12325. border-width:0px;
  12326. position:absolute;
  12327. left:0px;
  12328. top:0px;
  12329. width:80px;
  12330. height:33px;
  12331. }
  12332. #u11065 {
  12333. border-width:0px;
  12334. position:absolute;
  12335. left:832px;
  12336. top:331px;
  12337. width:80px;
  12338. height:33px;
  12339. display:flex;
  12340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12341. font-weight:400;
  12342. font-style:normal;
  12343. font-size:12px;
  12344. color:#606266;
  12345. }
  12346. #u11065 .text {
  12347. position:absolute;
  12348. align-self:center;
  12349. padding:2px 2px 2px 0px;
  12350. box-sizing:border-box;
  12351. width:100%;
  12352. }
  12353. #u11065_text {
  12354. border-width:0px;
  12355. word-wrap:break-word;
  12356. text-transform:none;
  12357. visibility:hidden;
  12358. }
  12359. #u11066_img {
  12360. border-width:0px;
  12361. position:absolute;
  12362. left:0px;
  12363. top:0px;
  12364. width:80px;
  12365. height:33px;
  12366. }
  12367. #u11066 {
  12368. border-width:0px;
  12369. position:absolute;
  12370. left:912px;
  12371. top:331px;
  12372. width:80px;
  12373. height:33px;
  12374. display:flex;
  12375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12376. font-weight:400;
  12377. font-style:normal;
  12378. font-size:12px;
  12379. color:#606266;
  12380. }
  12381. #u11066 .text {
  12382. position:absolute;
  12383. align-self:center;
  12384. padding:2px 2px 2px 0px;
  12385. box-sizing:border-box;
  12386. width:100%;
  12387. }
  12388. #u11066_text {
  12389. border-width:0px;
  12390. word-wrap:break-word;
  12391. text-transform:none;
  12392. visibility:hidden;
  12393. }
  12394. #u11067_img {
  12395. border-width:0px;
  12396. position:absolute;
  12397. left:0px;
  12398. top:0px;
  12399. width:80px;
  12400. height:33px;
  12401. }
  12402. #u11067 {
  12403. border-width:0px;
  12404. position:absolute;
  12405. left:992px;
  12406. top:331px;
  12407. width:80px;
  12408. height:33px;
  12409. display:flex;
  12410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12411. font-weight:400;
  12412. font-style:normal;
  12413. font-size:12px;
  12414. color:#606266;
  12415. }
  12416. #u11067 .text {
  12417. position:absolute;
  12418. align-self:center;
  12419. padding:2px 2px 2px 0px;
  12420. box-sizing:border-box;
  12421. width:100%;
  12422. }
  12423. #u11067_text {
  12424. border-width:0px;
  12425. word-wrap:break-word;
  12426. text-transform:none;
  12427. visibility:hidden;
  12428. }
  12429. #u11068_img {
  12430. border-width:0px;
  12431. position:absolute;
  12432. left:0px;
  12433. top:0px;
  12434. width:80px;
  12435. height:33px;
  12436. }
  12437. #u11068 {
  12438. border-width:0px;
  12439. position:absolute;
  12440. left:1072px;
  12441. top:331px;
  12442. width:80px;
  12443. height:33px;
  12444. display:flex;
  12445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12446. font-weight:400;
  12447. font-style:normal;
  12448. font-size:12px;
  12449. color:#606266;
  12450. }
  12451. #u11068 .text {
  12452. position:absolute;
  12453. align-self:center;
  12454. padding:2px 2px 2px 0px;
  12455. box-sizing:border-box;
  12456. width:100%;
  12457. }
  12458. #u11068_text {
  12459. border-width:0px;
  12460. word-wrap:break-word;
  12461. text-transform:none;
  12462. visibility:hidden;
  12463. }
  12464. #u11069_img {
  12465. border-width:0px;
  12466. position:absolute;
  12467. left:0px;
  12468. top:0px;
  12469. width:180px;
  12470. height:33px;
  12471. }
  12472. #u11069 {
  12473. border-width:0px;
  12474. position:absolute;
  12475. left:1152px;
  12476. top:331px;
  12477. width:180px;
  12478. height:33px;
  12479. display:flex;
  12480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12481. font-weight:400;
  12482. font-style:normal;
  12483. font-size:12px;
  12484. color:#02A7F0;
  12485. }
  12486. #u11069 .text {
  12487. position:absolute;
  12488. align-self:center;
  12489. padding:2px 2px 2px 0px;
  12490. box-sizing:border-box;
  12491. width:100%;
  12492. }
  12493. #u11069_text {
  12494. border-width:0px;
  12495. word-wrap:break-word;
  12496. text-transform:none;
  12497. visibility:hidden;
  12498. }