styles.css 220 KB

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