styles.css 208 KB

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