styles.css 136 KB

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