styles.css 147 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1998px;
  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. #u28108_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. #u28108 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u28108 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u28108_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u28109_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. #u28109 {
  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. #u28109 .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. #u28109_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u28110_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. #u28110 {
  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. #u28110 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u28110_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u28111 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u28112_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u28112 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u28112 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u28112_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u28113_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. #u28113 {
  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. #u28113 .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. #u28113_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u28114_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. #u28114 {
  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. #u28114 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u28114_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u28115 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u28116_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u28116 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u28116 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u28116_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u28117_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u28117 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u28117 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u28117_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u28118 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u28119_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u28119 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u28119 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u28119_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u28120_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u28120 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u28120 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u28120_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u28121 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u28122_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u28122 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u28122 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u28122_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u28123_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u28123 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u28123 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u28123_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u28124 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u28125_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u28125 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u28125 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u28125_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u28126_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u28126 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u28126 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u28126_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u28127 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u28128_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u28128 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u28128 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u28128_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u28129_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u28129 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u28129 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u28129_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u28130 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u28131_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u28131 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u28131 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u28131_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u28132_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u28132 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u28132 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u28132_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u28133 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u28134_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u28134 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u28134 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u28134_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u28135_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u28135 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u28135 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u28135_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u28136 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u28137_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u28137 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u28137 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u28137_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u28138_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u28138 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u28138 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u28138_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u28139 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u28140_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u28140 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u28140 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u28140_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u28141_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u28141 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u28141 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u28141_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u28142 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u28143_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u28143 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u28143 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u28143_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u28144_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u28144 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u28144 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u28144_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u28145 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u28146_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u28146 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u28146 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u28146_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u28147_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u28147 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u28147 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u28147_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u28148 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u28149_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u28149_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u28149_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u28149 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u28149 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u28149_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u28149.disabled {
  1276. }
  1277. .u28149_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u28150_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u28150 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u28150 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u28150_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u28151_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u28151 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u28151 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u28151_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u28152_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u28152 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u28152 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u28152_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u28153 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u28154_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u28154 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u28154 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u28154_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u28155_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u28155 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u28155 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u28155_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u28156_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u28156 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u28156 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u28156_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u28157_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u28157 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u28157 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u28157_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u28158_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u28158 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u28158 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u28158_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u28159 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u28160_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u28160 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u28160 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u28160_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u28161_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u28161 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u28161 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u28161_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u28162_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1260px;
  1648. height:1040px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. box-sizing:border-box;
  1652. border-width:1px;
  1653. border-style:solid;
  1654. border-color:rgba(242, 242, 242, 1);
  1655. border-radius:0px;
  1656. -moz-box-shadow:none;
  1657. -webkit-box-shadow:none;
  1658. box-shadow:none;
  1659. }
  1660. #u28162 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:332px;
  1664. top:190px;
  1665. width:1260px;
  1666. height:1040px;
  1667. display:flex;
  1668. }
  1669. #u28162 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:2px 2px 2px 2px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u28162_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. visibility:hidden;
  1681. }
  1682. #u28163 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:0px;
  1686. top:0px;
  1687. width:0px;
  1688. height:0px;
  1689. }
  1690. #u28164_div {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:160px;
  1696. height:30px;
  1697. background:inherit;
  1698. background-color:rgba(255, 255, 255, 1);
  1699. box-sizing:border-box;
  1700. border-width:1px;
  1701. border-style:solid;
  1702. border-color:rgba(215, 215, 215, 1);
  1703. border-radius:4px;
  1704. -moz-box-shadow:none;
  1705. -webkit-box-shadow:none;
  1706. box-shadow:none;
  1707. font-size:14px;
  1708. }
  1709. #u28164 {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:356px;
  1713. top:210px;
  1714. width:160px;
  1715. height:30px;
  1716. display:flex;
  1717. font-size:14px;
  1718. }
  1719. #u28164 .text {
  1720. position:absolute;
  1721. align-self:center;
  1722. padding:2px 2px 2px 2px;
  1723. box-sizing:border-box;
  1724. width:100%;
  1725. }
  1726. #u28164_text {
  1727. border-width:0px;
  1728. word-wrap:break-word;
  1729. text-transform:none;
  1730. visibility:hidden;
  1731. }
  1732. #u28165_input {
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:153px;
  1737. height:23px;
  1738. padding:2px 2px 2px 2px;
  1739. font-family:'ArialMT', 'Arial', sans-serif;
  1740. font-weight:400;
  1741. font-style:normal;
  1742. font-size:14px;
  1743. letter-spacing:normal;
  1744. color:#AAAAAA;
  1745. vertical-align:none;
  1746. text-align:left;
  1747. text-transform:none;
  1748. background-color:transparent;
  1749. border-color:transparent;
  1750. }
  1751. #u28165_input.disabled {
  1752. position:absolute;
  1753. left:0px;
  1754. top:0px;
  1755. width:153px;
  1756. height:23px;
  1757. padding:2px 2px 2px 2px;
  1758. font-family:'ArialMT', 'Arial', sans-serif;
  1759. font-weight:400;
  1760. font-style:normal;
  1761. font-size:14px;
  1762. letter-spacing:normal;
  1763. color:#AAAAAA;
  1764. vertical-align:none;
  1765. text-align:left;
  1766. text-transform:none;
  1767. background-color:transparent;
  1768. border-color:transparent;
  1769. }
  1770. #u28165_div {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:153px;
  1776. height:23px;
  1777. background:inherit;
  1778. background-color:rgba(255, 255, 255, 1);
  1779. border:none;
  1780. border-radius:0px;
  1781. -moz-box-shadow:none;
  1782. -webkit-box-shadow:none;
  1783. box-shadow:none;
  1784. font-size:14px;
  1785. color:#AAAAAA;
  1786. }
  1787. #u28165 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:361px;
  1791. top:212px;
  1792. width:153px;
  1793. height:23px;
  1794. display:flex;
  1795. font-size:14px;
  1796. color:#AAAAAA;
  1797. }
  1798. #u28165 .text {
  1799. position:absolute;
  1800. align-self:flex-start;
  1801. padding:2px 2px 2px 2px;
  1802. box-sizing:border-box;
  1803. width:100%;
  1804. }
  1805. #u28165_div.disabled {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:153px;
  1811. height:23px;
  1812. background:inherit;
  1813. background-color:rgba(240, 240, 240, 1);
  1814. border:none;
  1815. border-radius:0px;
  1816. -moz-box-shadow:none;
  1817. -webkit-box-shadow:none;
  1818. box-shadow:none;
  1819. font-size:14px;
  1820. color:#AAAAAA;
  1821. }
  1822. #u28165.disabled {
  1823. }
  1824. .u28165_input_option {
  1825. font-size:14px;
  1826. }
  1827. #u28166 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:356px;
  1831. top:300px;
  1832. width:1213px;
  1833. height:238px;
  1834. }
  1835. #u28167_img {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:43px;
  1841. height:44px;
  1842. }
  1843. #u28167 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:43px;
  1849. height:44px;
  1850. display:flex;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:14px;
  1855. color:#FFFFFF;
  1856. }
  1857. #u28167 .text {
  1858. position:absolute;
  1859. align-self:center;
  1860. padding:2px 2px 2px 2px;
  1861. box-sizing:border-box;
  1862. width:100%;
  1863. }
  1864. #u28167_text {
  1865. border-width:0px;
  1866. word-wrap:break-word;
  1867. text-transform:none;
  1868. }
  1869. #u28168_img {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:140px;
  1875. height:44px;
  1876. }
  1877. #u28168 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:43px;
  1881. top:0px;
  1882. width:140px;
  1883. height:44px;
  1884. display:flex;
  1885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1886. font-weight:400;
  1887. font-style:normal;
  1888. font-size:14px;
  1889. color:#FFFFFF;
  1890. }
  1891. #u28168 .text {
  1892. position:absolute;
  1893. align-self:center;
  1894. padding:2px 2px 2px 2px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u28168_text {
  1899. border-width:0px;
  1900. word-wrap:break-word;
  1901. text-transform:none;
  1902. }
  1903. #u28169_img {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:140px;
  1909. height:44px;
  1910. }
  1911. #u28169 {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:183px;
  1915. top:0px;
  1916. width:140px;
  1917. height:44px;
  1918. display:flex;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:14px;
  1923. color:#FFFFFF;
  1924. }
  1925. #u28169 .text {
  1926. position:absolute;
  1927. align-self:center;
  1928. padding:2px 2px 2px 2px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u28169_text {
  1933. border-width:0px;
  1934. word-wrap:break-word;
  1935. text-transform:none;
  1936. }
  1937. #u28170_img {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:74px;
  1943. height:44px;
  1944. }
  1945. #u28170 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:323px;
  1949. top:0px;
  1950. width:74px;
  1951. height:44px;
  1952. display:flex;
  1953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:14px;
  1957. color:#FFFFFF;
  1958. }
  1959. #u28170 .text {
  1960. position:absolute;
  1961. align-self:center;
  1962. padding:2px 2px 2px 2px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u28170_text {
  1967. border-width:0px;
  1968. word-wrap:break-word;
  1969. text-transform:none;
  1970. }
  1971. #u28171_img {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:80px;
  1977. height:44px;
  1978. }
  1979. #u28171 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:397px;
  1983. top:0px;
  1984. width:80px;
  1985. height:44px;
  1986. display:flex;
  1987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:14px;
  1991. color:#FFFFFF;
  1992. }
  1993. #u28171 .text {
  1994. position:absolute;
  1995. align-self:center;
  1996. padding:2px 2px 2px 2px;
  1997. box-sizing:border-box;
  1998. width:100%;
  1999. }
  2000. #u28171_text {
  2001. border-width:0px;
  2002. word-wrap:break-word;
  2003. text-transform:none;
  2004. }
  2005. #u28172_img {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:102px;
  2011. height:44px;
  2012. }
  2013. #u28172 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:477px;
  2017. top:0px;
  2018. width:102px;
  2019. height:44px;
  2020. display:flex;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:14px;
  2025. color:#FFFFFF;
  2026. }
  2027. #u28172 .text {
  2028. position:absolute;
  2029. align-self:center;
  2030. padding:2px 2px 2px 2px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u28172_text {
  2035. border-width:0px;
  2036. word-wrap:break-word;
  2037. text-transform:none;
  2038. }
  2039. #u28173_img {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:124px;
  2045. height:44px;
  2046. }
  2047. #u28173 {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:579px;
  2051. top:0px;
  2052. width:124px;
  2053. height:44px;
  2054. display:flex;
  2055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2056. font-weight:400;
  2057. font-style:normal;
  2058. font-size:14px;
  2059. color:#FFFFFF;
  2060. }
  2061. #u28173 .text {
  2062. position:absolute;
  2063. align-self:center;
  2064. padding:2px 2px 2px 2px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u28173_text {
  2069. border-width:0px;
  2070. word-wrap:break-word;
  2071. text-transform:none;
  2072. }
  2073. #u28174_img {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:111px;
  2079. height:44px;
  2080. }
  2081. #u28174 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:703px;
  2085. top:0px;
  2086. width:111px;
  2087. height:44px;
  2088. display:flex;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:14px;
  2093. color:#FFFFFF;
  2094. }
  2095. #u28174 .text {
  2096. position:absolute;
  2097. align-self:center;
  2098. padding:2px 2px 2px 2px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u28174_text {
  2103. border-width:0px;
  2104. word-wrap:break-word;
  2105. text-transform:none;
  2106. }
  2107. #u28175_img {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:0px;
  2111. top:0px;
  2112. width:120px;
  2113. height:44px;
  2114. }
  2115. #u28175 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:814px;
  2119. top:0px;
  2120. width:120px;
  2121. height:44px;
  2122. display:flex;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:14px;
  2127. color:#FFFFFF;
  2128. }
  2129. #u28175 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 2px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u28175_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. }
  2141. #u28176_img {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:100px;
  2147. height:44px;
  2148. }
  2149. #u28176 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:934px;
  2153. top:0px;
  2154. width:100px;
  2155. height:44px;
  2156. display:flex;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. font-size:14px;
  2161. color:#FFFFFF;
  2162. }
  2163. #u28176 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 2px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u28176_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. }
  2175. #u28177_img {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:80px;
  2181. height:44px;
  2182. }
  2183. #u28177 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:1034px;
  2187. top:0px;
  2188. width:80px;
  2189. height:44px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:14px;
  2195. color:#FFFFFF;
  2196. }
  2197. #u28177 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:2px 2px 2px 2px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u28177_text {
  2205. border-width:0px;
  2206. word-wrap:break-word;
  2207. text-transform:none;
  2208. }
  2209. #u28178_img {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:100px;
  2215. height:44px;
  2216. }
  2217. #u28178 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:1114px;
  2221. top:0px;
  2222. width:100px;
  2223. height:44px;
  2224. display:flex;
  2225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:14px;
  2229. color:#FFFFFF;
  2230. }
  2231. #u28178 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:2px 2px 2px 2px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u28178_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. }
  2243. #u28179_img {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:43px;
  2249. height:44px;
  2250. }
  2251. #u28179 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:44px;
  2256. width:43px;
  2257. height:44px;
  2258. display:flex;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:14px;
  2263. }
  2264. #u28179 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:2px 2px 2px 2px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u28179_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. }
  2276. #u28180_img {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:140px;
  2282. height:44px;
  2283. }
  2284. #u28180 {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:43px;
  2288. top:44px;
  2289. width:140px;
  2290. height:44px;
  2291. display:flex;
  2292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2293. font-weight:400;
  2294. font-style:normal;
  2295. font-size:14px;
  2296. }
  2297. #u28180 .text {
  2298. position:absolute;
  2299. align-self:center;
  2300. padding:2px 2px 2px 2px;
  2301. box-sizing:border-box;
  2302. width:100%;
  2303. }
  2304. #u28180_text {
  2305. border-width:0px;
  2306. word-wrap:break-word;
  2307. text-transform:none;
  2308. }
  2309. #u28181_img {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:140px;
  2315. height:44px;
  2316. }
  2317. #u28181 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:183px;
  2321. top:44px;
  2322. width:140px;
  2323. height:44px;
  2324. display:flex;
  2325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2326. font-weight:400;
  2327. font-style:normal;
  2328. font-size:14px;
  2329. }
  2330. #u28181 .text {
  2331. position:absolute;
  2332. align-self:center;
  2333. padding:2px 2px 2px 2px;
  2334. box-sizing:border-box;
  2335. width:100%;
  2336. }
  2337. #u28181_text {
  2338. border-width:0px;
  2339. word-wrap:break-word;
  2340. text-transform:none;
  2341. }
  2342. #u28182_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:74px;
  2348. height:44px;
  2349. }
  2350. #u28182 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:323px;
  2354. top:44px;
  2355. width:74px;
  2356. height:44px;
  2357. display:flex;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:14px;
  2362. }
  2363. #u28182 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 2px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u28182_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. }
  2375. #u28183_img {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:80px;
  2381. height:44px;
  2382. }
  2383. #u28183 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:397px;
  2387. top:44px;
  2388. width:80px;
  2389. height:44px;
  2390. display:flex;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:14px;
  2395. }
  2396. #u28183 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:2px 2px 2px 2px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u28183_text {
  2404. border-width:0px;
  2405. word-wrap:break-word;
  2406. text-transform:none;
  2407. visibility:hidden;
  2408. }
  2409. #u28184_img {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:102px;
  2415. height:44px;
  2416. }
  2417. #u28184 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:477px;
  2421. top:44px;
  2422. width:102px;
  2423. height:44px;
  2424. display:flex;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:14px;
  2429. }
  2430. #u28184 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:2px 2px 2px 2px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u28184_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. }
  2442. #u28185_img {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:124px;
  2448. height:44px;
  2449. }
  2450. #u28185 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:579px;
  2454. top:44px;
  2455. width:124px;
  2456. height:44px;
  2457. display:flex;
  2458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. font-size:14px;
  2462. }
  2463. #u28185 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 2px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u28185_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. }
  2475. #u28186_img {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:111px;
  2481. height:44px;
  2482. }
  2483. #u28186 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:703px;
  2487. top:44px;
  2488. width:111px;
  2489. height:44px;
  2490. display:flex;
  2491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2492. font-weight:400;
  2493. font-style:normal;
  2494. font-size:14px;
  2495. }
  2496. #u28186 .text {
  2497. position:absolute;
  2498. align-self:center;
  2499. padding:2px 2px 2px 2px;
  2500. box-sizing:border-box;
  2501. width:100%;
  2502. }
  2503. #u28186_text {
  2504. border-width:0px;
  2505. word-wrap:break-word;
  2506. text-transform:none;
  2507. }
  2508. #u28187_img {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:0px;
  2512. top:0px;
  2513. width:120px;
  2514. height:44px;
  2515. }
  2516. #u28187 {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:814px;
  2520. top:44px;
  2521. width:120px;
  2522. height:44px;
  2523. display:flex;
  2524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2525. font-weight:400;
  2526. font-style:normal;
  2527. font-size:14px;
  2528. }
  2529. #u28187 .text {
  2530. position:absolute;
  2531. align-self:center;
  2532. padding:2px 2px 2px 2px;
  2533. box-sizing:border-box;
  2534. width:100%;
  2535. }
  2536. #u28187_text {
  2537. border-width:0px;
  2538. word-wrap:break-word;
  2539. text-transform:none;
  2540. }
  2541. #u28188_img {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:100px;
  2547. height:44px;
  2548. }
  2549. #u28188 {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:934px;
  2553. top:44px;
  2554. width:100px;
  2555. height:44px;
  2556. display:flex;
  2557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2558. font-weight:400;
  2559. font-style:normal;
  2560. font-size:14px;
  2561. }
  2562. #u28188 .text {
  2563. position:absolute;
  2564. align-self:center;
  2565. padding:2px 2px 2px 2px;
  2566. box-sizing:border-box;
  2567. width:100%;
  2568. }
  2569. #u28188_text {
  2570. border-width:0px;
  2571. word-wrap:break-word;
  2572. text-transform:none;
  2573. }
  2574. #u28189_img {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:0px;
  2578. top:0px;
  2579. width:80px;
  2580. height:44px;
  2581. }
  2582. #u28189 {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:1034px;
  2586. top:44px;
  2587. width:80px;
  2588. height:44px;
  2589. display:flex;
  2590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2591. font-weight:400;
  2592. font-style:normal;
  2593. font-size:14px;
  2594. }
  2595. #u28189 .text {
  2596. position:absolute;
  2597. align-self:center;
  2598. padding:2px 2px 2px 2px;
  2599. box-sizing:border-box;
  2600. width:100%;
  2601. }
  2602. #u28189_text {
  2603. border-width:0px;
  2604. word-wrap:break-word;
  2605. text-transform:none;
  2606. }
  2607. #u28190_img {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:100px;
  2613. height:44px;
  2614. }
  2615. #u28190 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:1114px;
  2619. top:44px;
  2620. width:100px;
  2621. height:44px;
  2622. display:flex;
  2623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2624. font-weight:400;
  2625. font-style:normal;
  2626. font-size:14px;
  2627. color:#1890FF;
  2628. }
  2629. #u28190 .text {
  2630. position:absolute;
  2631. align-self:center;
  2632. padding:2px 2px 2px 2px;
  2633. box-sizing:border-box;
  2634. width:100%;
  2635. }
  2636. #u28190_text {
  2637. border-width:0px;
  2638. word-wrap:break-word;
  2639. text-transform:none;
  2640. }
  2641. #u28191_img {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:43px;
  2647. height:30px;
  2648. }
  2649. #u28191 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:0px;
  2653. top:88px;
  2654. width:43px;
  2655. height:30px;
  2656. display:flex;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:14px;
  2661. }
  2662. #u28191 .text {
  2663. position:absolute;
  2664. align-self:center;
  2665. padding:2px 2px 2px 2px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u28191_text {
  2670. border-width:0px;
  2671. word-wrap:break-word;
  2672. text-transform:none;
  2673. visibility:hidden;
  2674. }
  2675. #u28192_img {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:140px;
  2681. height:30px;
  2682. }
  2683. #u28192 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:43px;
  2687. top:88px;
  2688. width:140px;
  2689. height:30px;
  2690. display:flex;
  2691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2692. font-weight:400;
  2693. font-style:normal;
  2694. font-size:14px;
  2695. }
  2696. #u28192 .text {
  2697. position:absolute;
  2698. align-self:center;
  2699. padding:2px 2px 2px 2px;
  2700. box-sizing:border-box;
  2701. width:100%;
  2702. }
  2703. #u28192_text {
  2704. border-width:0px;
  2705. word-wrap:break-word;
  2706. text-transform:none;
  2707. visibility:hidden;
  2708. }
  2709. #u28193_img {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:140px;
  2715. height:30px;
  2716. }
  2717. #u28193 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:183px;
  2721. top:88px;
  2722. width:140px;
  2723. height:30px;
  2724. display:flex;
  2725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2726. font-weight:400;
  2727. font-style:normal;
  2728. font-size:14px;
  2729. }
  2730. #u28193 .text {
  2731. position:absolute;
  2732. align-self:center;
  2733. padding:2px 2px 2px 2px;
  2734. box-sizing:border-box;
  2735. width:100%;
  2736. }
  2737. #u28193_text {
  2738. border-width:0px;
  2739. word-wrap:break-word;
  2740. text-transform:none;
  2741. visibility:hidden;
  2742. }
  2743. #u28194_img {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:74px;
  2749. height:30px;
  2750. }
  2751. #u28194 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:323px;
  2755. top:88px;
  2756. width:74px;
  2757. height:30px;
  2758. display:flex;
  2759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2760. font-weight:400;
  2761. font-style:normal;
  2762. font-size:14px;
  2763. }
  2764. #u28194 .text {
  2765. position:absolute;
  2766. align-self:center;
  2767. padding:2px 2px 2px 2px;
  2768. box-sizing:border-box;
  2769. width:100%;
  2770. }
  2771. #u28194_text {
  2772. border-width:0px;
  2773. word-wrap:break-word;
  2774. text-transform:none;
  2775. visibility:hidden;
  2776. }
  2777. #u28195_img {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:0px;
  2781. top:0px;
  2782. width:80px;
  2783. height:30px;
  2784. }
  2785. #u28195 {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:397px;
  2789. top:88px;
  2790. width:80px;
  2791. height:30px;
  2792. display:flex;
  2793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2794. font-weight:400;
  2795. font-style:normal;
  2796. font-size:14px;
  2797. }
  2798. #u28195 .text {
  2799. position:absolute;
  2800. align-self:center;
  2801. padding:2px 2px 2px 2px;
  2802. box-sizing:border-box;
  2803. width:100%;
  2804. }
  2805. #u28195_text {
  2806. border-width:0px;
  2807. word-wrap:break-word;
  2808. text-transform:none;
  2809. visibility:hidden;
  2810. }
  2811. #u28196_img {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:102px;
  2817. height:30px;
  2818. }
  2819. #u28196 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:477px;
  2823. top:88px;
  2824. width:102px;
  2825. height:30px;
  2826. display:flex;
  2827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2828. font-weight:400;
  2829. font-style:normal;
  2830. font-size:14px;
  2831. }
  2832. #u28196 .text {
  2833. position:absolute;
  2834. align-self:center;
  2835. padding:2px 2px 2px 2px;
  2836. box-sizing:border-box;
  2837. width:100%;
  2838. }
  2839. #u28196_text {
  2840. border-width:0px;
  2841. word-wrap:break-word;
  2842. text-transform:none;
  2843. visibility:hidden;
  2844. }
  2845. #u28197_img {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:124px;
  2851. height:30px;
  2852. }
  2853. #u28197 {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:579px;
  2857. top:88px;
  2858. width:124px;
  2859. height:30px;
  2860. display:flex;
  2861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2862. font-weight:400;
  2863. font-style:normal;
  2864. font-size:14px;
  2865. }
  2866. #u28197 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 2px 2px 2px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u28197_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. visibility:hidden;
  2878. }
  2879. #u28198_img {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:111px;
  2885. height:30px;
  2886. }
  2887. #u28198 {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:703px;
  2891. top:88px;
  2892. width:111px;
  2893. height:30px;
  2894. display:flex;
  2895. font-size:14px;
  2896. }
  2897. #u28198 .text {
  2898. position:absolute;
  2899. align-self:center;
  2900. padding:2px 2px 2px 2px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u28198_text {
  2905. border-width:0px;
  2906. word-wrap:break-word;
  2907. text-transform:none;
  2908. visibility:hidden;
  2909. }
  2910. #u28199_img {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:0px;
  2914. top:0px;
  2915. width:120px;
  2916. height:30px;
  2917. }
  2918. #u28199 {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:814px;
  2922. top:88px;
  2923. width:120px;
  2924. height:30px;
  2925. display:flex;
  2926. font-size:14px;
  2927. }
  2928. #u28199 .text {
  2929. position:absolute;
  2930. align-self:center;
  2931. padding:2px 2px 2px 2px;
  2932. box-sizing:border-box;
  2933. width:100%;
  2934. }
  2935. #u28199_text {
  2936. border-width:0px;
  2937. word-wrap:break-word;
  2938. text-transform:none;
  2939. visibility:hidden;
  2940. }
  2941. #u28200_img {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:100px;
  2947. height:30px;
  2948. }
  2949. #u28200 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:934px;
  2953. top:88px;
  2954. width:100px;
  2955. height:30px;
  2956. display:flex;
  2957. font-size:14px;
  2958. }
  2959. #u28200 .text {
  2960. position:absolute;
  2961. align-self:center;
  2962. padding:2px 2px 2px 2px;
  2963. box-sizing:border-box;
  2964. width:100%;
  2965. }
  2966. #u28200_text {
  2967. border-width:0px;
  2968. word-wrap:break-word;
  2969. text-transform:none;
  2970. visibility:hidden;
  2971. }
  2972. #u28201_img {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:80px;
  2978. height:30px;
  2979. }
  2980. #u28201 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:1034px;
  2984. top:88px;
  2985. width:80px;
  2986. height:30px;
  2987. display:flex;
  2988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2989. font-weight:400;
  2990. font-style:normal;
  2991. font-size:14px;
  2992. }
  2993. #u28201 .text {
  2994. position:absolute;
  2995. align-self:center;
  2996. padding:2px 2px 2px 2px;
  2997. box-sizing:border-box;
  2998. width:100%;
  2999. }
  3000. #u28201_text {
  3001. border-width:0px;
  3002. word-wrap:break-word;
  3003. text-transform:none;
  3004. }
  3005. #u28202_img {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:100px;
  3011. height:30px;
  3012. }
  3013. #u28202 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:1114px;
  3017. top:88px;
  3018. width:100px;
  3019. height:30px;
  3020. display:flex;
  3021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3022. font-weight:400;
  3023. font-style:normal;
  3024. font-size:14px;
  3025. color:#AAAAAA;
  3026. }
  3027. #u28202 .text {
  3028. position:absolute;
  3029. align-self:center;
  3030. padding:2px 2px 2px 2px;
  3031. box-sizing:border-box;
  3032. width:100%;
  3033. }
  3034. #u28202_text {
  3035. border-width:0px;
  3036. word-wrap:break-word;
  3037. text-transform:none;
  3038. }
  3039. #u28203_img {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:43px;
  3045. height:30px;
  3046. }
  3047. #u28203 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:118px;
  3052. width:43px;
  3053. height:30px;
  3054. display:flex;
  3055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3056. font-weight:400;
  3057. font-style:normal;
  3058. font-size:14px;
  3059. }
  3060. #u28203 .text {
  3061. position:absolute;
  3062. align-self:center;
  3063. padding:2px 2px 2px 2px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u28203_text {
  3068. border-width:0px;
  3069. word-wrap:break-word;
  3070. text-transform:none;
  3071. visibility:hidden;
  3072. }
  3073. #u28204_img {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:140px;
  3079. height:30px;
  3080. }
  3081. #u28204 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:43px;
  3085. top:118px;
  3086. width:140px;
  3087. height:30px;
  3088. display:flex;
  3089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:14px;
  3093. }
  3094. #u28204 .text {
  3095. position:absolute;
  3096. align-self:center;
  3097. padding:2px 2px 2px 2px;
  3098. box-sizing:border-box;
  3099. width:100%;
  3100. }
  3101. #u28204_text {
  3102. border-width:0px;
  3103. word-wrap:break-word;
  3104. text-transform:none;
  3105. visibility:hidden;
  3106. }
  3107. #u28205_img {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:140px;
  3113. height:30px;
  3114. }
  3115. #u28205 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:183px;
  3119. top:118px;
  3120. width:140px;
  3121. height:30px;
  3122. display:flex;
  3123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3124. font-weight:400;
  3125. font-style:normal;
  3126. font-size:14px;
  3127. }
  3128. #u28205 .text {
  3129. position:absolute;
  3130. align-self:center;
  3131. padding:2px 2px 2px 2px;
  3132. box-sizing:border-box;
  3133. width:100%;
  3134. }
  3135. #u28205_text {
  3136. border-width:0px;
  3137. word-wrap:break-word;
  3138. text-transform:none;
  3139. visibility:hidden;
  3140. }
  3141. #u28206_img {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:74px;
  3147. height:30px;
  3148. }
  3149. #u28206 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:323px;
  3153. top:118px;
  3154. width:74px;
  3155. height:30px;
  3156. display:flex;
  3157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3158. font-weight:400;
  3159. font-style:normal;
  3160. font-size:14px;
  3161. }
  3162. #u28206 .text {
  3163. position:absolute;
  3164. align-self:center;
  3165. padding:2px 2px 2px 2px;
  3166. box-sizing:border-box;
  3167. width:100%;
  3168. }
  3169. #u28206_text {
  3170. border-width:0px;
  3171. word-wrap:break-word;
  3172. text-transform:none;
  3173. visibility:hidden;
  3174. }
  3175. #u28207_img {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:80px;
  3181. height:30px;
  3182. }
  3183. #u28207 {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:397px;
  3187. top:118px;
  3188. width:80px;
  3189. height:30px;
  3190. display:flex;
  3191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3192. font-weight:400;
  3193. font-style:normal;
  3194. font-size:14px;
  3195. }
  3196. #u28207 .text {
  3197. position:absolute;
  3198. align-self:center;
  3199. padding:2px 2px 2px 2px;
  3200. box-sizing:border-box;
  3201. width:100%;
  3202. }
  3203. #u28207_text {
  3204. border-width:0px;
  3205. word-wrap:break-word;
  3206. text-transform:none;
  3207. visibility:hidden;
  3208. }
  3209. #u28208_img {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:0px;
  3213. top:0px;
  3214. width:102px;
  3215. height:30px;
  3216. }
  3217. #u28208 {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:477px;
  3221. top:118px;
  3222. width:102px;
  3223. height:30px;
  3224. display:flex;
  3225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3226. font-weight:400;
  3227. font-style:normal;
  3228. font-size:14px;
  3229. }
  3230. #u28208 .text {
  3231. position:absolute;
  3232. align-self:center;
  3233. padding:2px 2px 2px 2px;
  3234. box-sizing:border-box;
  3235. width:100%;
  3236. }
  3237. #u28208_text {
  3238. border-width:0px;
  3239. word-wrap:break-word;
  3240. text-transform:none;
  3241. visibility:hidden;
  3242. }
  3243. #u28209_img {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:124px;
  3249. height:30px;
  3250. }
  3251. #u28209 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:579px;
  3255. top:118px;
  3256. width:124px;
  3257. height:30px;
  3258. display:flex;
  3259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3260. font-weight:400;
  3261. font-style:normal;
  3262. font-size:14px;
  3263. }
  3264. #u28209 .text {
  3265. position:absolute;
  3266. align-self:center;
  3267. padding:2px 2px 2px 2px;
  3268. box-sizing:border-box;
  3269. width:100%;
  3270. }
  3271. #u28209_text {
  3272. border-width:0px;
  3273. word-wrap:break-word;
  3274. text-transform:none;
  3275. visibility:hidden;
  3276. }
  3277. #u28210_img {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:111px;
  3283. height:30px;
  3284. }
  3285. #u28210 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:703px;
  3289. top:118px;
  3290. width:111px;
  3291. height:30px;
  3292. display:flex;
  3293. font-size:14px;
  3294. }
  3295. #u28210 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 2px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u28210_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. visibility:hidden;
  3307. }
  3308. #u28211_img {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:0px;
  3313. width:120px;
  3314. height:30px;
  3315. }
  3316. #u28211 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:814px;
  3320. top:118px;
  3321. width:120px;
  3322. height:30px;
  3323. display:flex;
  3324. font-size:14px;
  3325. }
  3326. #u28211 .text {
  3327. position:absolute;
  3328. align-self:center;
  3329. padding:2px 2px 2px 2px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u28211_text {
  3334. border-width:0px;
  3335. word-wrap:break-word;
  3336. text-transform:none;
  3337. visibility:hidden;
  3338. }
  3339. #u28212_img {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:100px;
  3345. height:30px;
  3346. }
  3347. #u28212 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:934px;
  3351. top:118px;
  3352. width:100px;
  3353. height:30px;
  3354. display:flex;
  3355. font-size:14px;
  3356. }
  3357. #u28212 .text {
  3358. position:absolute;
  3359. align-self:center;
  3360. padding:2px 2px 2px 2px;
  3361. box-sizing:border-box;
  3362. width:100%;
  3363. }
  3364. #u28212_text {
  3365. border-width:0px;
  3366. word-wrap:break-word;
  3367. text-transform:none;
  3368. visibility:hidden;
  3369. }
  3370. #u28213_img {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:80px;
  3376. height:30px;
  3377. }
  3378. #u28213 {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:1034px;
  3382. top:118px;
  3383. width:80px;
  3384. height:30px;
  3385. display:flex;
  3386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3387. font-weight:400;
  3388. font-style:normal;
  3389. font-size:14px;
  3390. }
  3391. #u28213 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:2px 2px 2px 2px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u28213_text {
  3399. border-width:0px;
  3400. word-wrap:break-word;
  3401. text-transform:none;
  3402. }
  3403. #u28214_img {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:100px;
  3409. height:30px;
  3410. }
  3411. #u28214 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:1114px;
  3415. top:118px;
  3416. width:100px;
  3417. height:30px;
  3418. display:flex;
  3419. font-size:14px;
  3420. }
  3421. #u28214 .text {
  3422. position:absolute;
  3423. align-self:center;
  3424. padding:2px 2px 2px 2px;
  3425. box-sizing:border-box;
  3426. width:100%;
  3427. }
  3428. #u28214_text {
  3429. border-width:0px;
  3430. word-wrap:break-word;
  3431. text-transform:none;
  3432. visibility:hidden;
  3433. }
  3434. #u28215_img {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:43px;
  3440. height:30px;
  3441. }
  3442. #u28215 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:0px;
  3446. top:148px;
  3447. width:43px;
  3448. height:30px;
  3449. display:flex;
  3450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3451. font-weight:400;
  3452. font-style:normal;
  3453. font-size:14px;
  3454. }
  3455. #u28215 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 2px 2px 2px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u28215_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. visibility:hidden;
  3467. }
  3468. #u28216_img {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:140px;
  3474. height:30px;
  3475. }
  3476. #u28216 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:43px;
  3480. top:148px;
  3481. width:140px;
  3482. height:30px;
  3483. display:flex;
  3484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3485. font-weight:400;
  3486. font-style:normal;
  3487. font-size:14px;
  3488. }
  3489. #u28216 .text {
  3490. position:absolute;
  3491. align-self:center;
  3492. padding:2px 2px 2px 2px;
  3493. box-sizing:border-box;
  3494. width:100%;
  3495. }
  3496. #u28216_text {
  3497. border-width:0px;
  3498. word-wrap:break-word;
  3499. text-transform:none;
  3500. visibility:hidden;
  3501. }
  3502. #u28217_img {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:140px;
  3508. height:30px;
  3509. }
  3510. #u28217 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:183px;
  3514. top:148px;
  3515. width:140px;
  3516. height:30px;
  3517. display:flex;
  3518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. font-size:14px;
  3522. }
  3523. #u28217 .text {
  3524. position:absolute;
  3525. align-self:center;
  3526. padding:2px 2px 2px 2px;
  3527. box-sizing:border-box;
  3528. width:100%;
  3529. }
  3530. #u28217_text {
  3531. border-width:0px;
  3532. word-wrap:break-word;
  3533. text-transform:none;
  3534. visibility:hidden;
  3535. }
  3536. #u28218_img {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:74px;
  3542. height:30px;
  3543. }
  3544. #u28218 {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:323px;
  3548. top:148px;
  3549. width:74px;
  3550. height:30px;
  3551. display:flex;
  3552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3553. font-weight:400;
  3554. font-style:normal;
  3555. font-size:14px;
  3556. }
  3557. #u28218 .text {
  3558. position:absolute;
  3559. align-self:center;
  3560. padding:2px 2px 2px 2px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u28218_text {
  3565. border-width:0px;
  3566. word-wrap:break-word;
  3567. text-transform:none;
  3568. visibility:hidden;
  3569. }
  3570. #u28219_img {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:80px;
  3576. height:30px;
  3577. }
  3578. #u28219 {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:397px;
  3582. top:148px;
  3583. width:80px;
  3584. height:30px;
  3585. display:flex;
  3586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:14px;
  3590. }
  3591. #u28219 .text {
  3592. position:absolute;
  3593. align-self:center;
  3594. padding:2px 2px 2px 2px;
  3595. box-sizing:border-box;
  3596. width:100%;
  3597. }
  3598. #u28219_text {
  3599. border-width:0px;
  3600. word-wrap:break-word;
  3601. text-transform:none;
  3602. visibility:hidden;
  3603. }
  3604. #u28220_img {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:102px;
  3610. height:30px;
  3611. }
  3612. #u28220 {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:477px;
  3616. top:148px;
  3617. width:102px;
  3618. height:30px;
  3619. display:flex;
  3620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3621. font-weight:400;
  3622. font-style:normal;
  3623. font-size:14px;
  3624. }
  3625. #u28220 .text {
  3626. position:absolute;
  3627. align-self:center;
  3628. padding:2px 2px 2px 2px;
  3629. box-sizing:border-box;
  3630. width:100%;
  3631. }
  3632. #u28220_text {
  3633. border-width:0px;
  3634. word-wrap:break-word;
  3635. text-transform:none;
  3636. visibility:hidden;
  3637. }
  3638. #u28221_img {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:124px;
  3644. height:30px;
  3645. }
  3646. #u28221 {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:579px;
  3650. top:148px;
  3651. width:124px;
  3652. height:30px;
  3653. display:flex;
  3654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3655. font-weight:400;
  3656. font-style:normal;
  3657. font-size:14px;
  3658. }
  3659. #u28221 .text {
  3660. position:absolute;
  3661. align-self:center;
  3662. padding:2px 2px 2px 2px;
  3663. box-sizing:border-box;
  3664. width:100%;
  3665. }
  3666. #u28221_text {
  3667. border-width:0px;
  3668. word-wrap:break-word;
  3669. text-transform:none;
  3670. visibility:hidden;
  3671. }
  3672. #u28222_img {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:0px;
  3676. top:0px;
  3677. width:111px;
  3678. height:30px;
  3679. }
  3680. #u28222 {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:703px;
  3684. top:148px;
  3685. width:111px;
  3686. height:30px;
  3687. display:flex;
  3688. font-size:14px;
  3689. }
  3690. #u28222 .text {
  3691. position:absolute;
  3692. align-self:center;
  3693. padding:2px 2px 2px 2px;
  3694. box-sizing:border-box;
  3695. width:100%;
  3696. }
  3697. #u28222_text {
  3698. border-width:0px;
  3699. word-wrap:break-word;
  3700. text-transform:none;
  3701. visibility:hidden;
  3702. }
  3703. #u28223_img {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:120px;
  3709. height:30px;
  3710. }
  3711. #u28223 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:814px;
  3715. top:148px;
  3716. width:120px;
  3717. height:30px;
  3718. display:flex;
  3719. font-size:14px;
  3720. }
  3721. #u28223 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:2px 2px 2px 2px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u28223_text {
  3729. border-width:0px;
  3730. word-wrap:break-word;
  3731. text-transform:none;
  3732. visibility:hidden;
  3733. }
  3734. #u28224_img {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:100px;
  3740. height:30px;
  3741. }
  3742. #u28224 {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:934px;
  3746. top:148px;
  3747. width:100px;
  3748. height:30px;
  3749. display:flex;
  3750. font-size:14px;
  3751. }
  3752. #u28224 .text {
  3753. position:absolute;
  3754. align-self:center;
  3755. padding:2px 2px 2px 2px;
  3756. box-sizing:border-box;
  3757. width:100%;
  3758. }
  3759. #u28224_text {
  3760. border-width:0px;
  3761. word-wrap:break-word;
  3762. text-transform:none;
  3763. visibility:hidden;
  3764. }
  3765. #u28225_img {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:0px;
  3769. top:0px;
  3770. width:80px;
  3771. height:30px;
  3772. }
  3773. #u28225 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:1034px;
  3777. top:148px;
  3778. width:80px;
  3779. height:30px;
  3780. display:flex;
  3781. font-size:14px;
  3782. }
  3783. #u28225 .text {
  3784. position:absolute;
  3785. align-self:center;
  3786. padding:2px 2px 2px 2px;
  3787. box-sizing:border-box;
  3788. width:100%;
  3789. }
  3790. #u28225_text {
  3791. border-width:0px;
  3792. word-wrap:break-word;
  3793. text-transform:none;
  3794. visibility:hidden;
  3795. }
  3796. #u28226_img {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:0px;
  3800. top:0px;
  3801. width:100px;
  3802. height:30px;
  3803. }
  3804. #u28226 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:1114px;
  3808. top:148px;
  3809. width:100px;
  3810. height:30px;
  3811. display:flex;
  3812. font-size:14px;
  3813. }
  3814. #u28226 .text {
  3815. position:absolute;
  3816. align-self:center;
  3817. padding:2px 2px 2px 2px;
  3818. box-sizing:border-box;
  3819. width:100%;
  3820. }
  3821. #u28226_text {
  3822. border-width:0px;
  3823. word-wrap:break-word;
  3824. text-transform:none;
  3825. visibility:hidden;
  3826. }
  3827. #u28227_img {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:43px;
  3833. height:30px;
  3834. }
  3835. #u28227 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:0px;
  3839. top:178px;
  3840. width:43px;
  3841. height:30px;
  3842. display:flex;
  3843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3844. font-weight:400;
  3845. font-style:normal;
  3846. font-size:14px;
  3847. }
  3848. #u28227 .text {
  3849. position:absolute;
  3850. align-self:center;
  3851. padding:2px 2px 2px 2px;
  3852. box-sizing:border-box;
  3853. width:100%;
  3854. }
  3855. #u28227_text {
  3856. border-width:0px;
  3857. word-wrap:break-word;
  3858. text-transform:none;
  3859. visibility:hidden;
  3860. }
  3861. #u28228_img {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:0px;
  3865. top:0px;
  3866. width:140px;
  3867. height:30px;
  3868. }
  3869. #u28228 {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:43px;
  3873. top:178px;
  3874. width:140px;
  3875. height:30px;
  3876. display:flex;
  3877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:14px;
  3881. }
  3882. #u28228 .text {
  3883. position:absolute;
  3884. align-self:center;
  3885. padding:2px 2px 2px 2px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u28228_text {
  3890. border-width:0px;
  3891. word-wrap:break-word;
  3892. text-transform:none;
  3893. visibility:hidden;
  3894. }
  3895. #u28229_img {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:140px;
  3901. height:30px;
  3902. }
  3903. #u28229 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:183px;
  3907. top:178px;
  3908. width:140px;
  3909. height:30px;
  3910. display:flex;
  3911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3912. font-weight:400;
  3913. font-style:normal;
  3914. font-size:14px;
  3915. }
  3916. #u28229 .text {
  3917. position:absolute;
  3918. align-self:center;
  3919. padding:2px 2px 2px 2px;
  3920. box-sizing:border-box;
  3921. width:100%;
  3922. }
  3923. #u28229_text {
  3924. border-width:0px;
  3925. word-wrap:break-word;
  3926. text-transform:none;
  3927. visibility:hidden;
  3928. }
  3929. #u28230_img {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:74px;
  3935. height:30px;
  3936. }
  3937. #u28230 {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:323px;
  3941. top:178px;
  3942. width:74px;
  3943. height:30px;
  3944. display:flex;
  3945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3946. font-weight:400;
  3947. font-style:normal;
  3948. font-size:14px;
  3949. }
  3950. #u28230 .text {
  3951. position:absolute;
  3952. align-self:center;
  3953. padding:2px 2px 2px 2px;
  3954. box-sizing:border-box;
  3955. width:100%;
  3956. }
  3957. #u28230_text {
  3958. border-width:0px;
  3959. word-wrap:break-word;
  3960. text-transform:none;
  3961. visibility:hidden;
  3962. }
  3963. #u28231_img {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:80px;
  3969. height:30px;
  3970. }
  3971. #u28231 {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:397px;
  3975. top:178px;
  3976. width:80px;
  3977. height:30px;
  3978. display:flex;
  3979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3980. font-weight:400;
  3981. font-style:normal;
  3982. font-size:14px;
  3983. }
  3984. #u28231 .text {
  3985. position:absolute;
  3986. align-self:center;
  3987. padding:2px 2px 2px 2px;
  3988. box-sizing:border-box;
  3989. width:100%;
  3990. }
  3991. #u28231_text {
  3992. border-width:0px;
  3993. word-wrap:break-word;
  3994. text-transform:none;
  3995. visibility:hidden;
  3996. }
  3997. #u28232_img {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:102px;
  4003. height:30px;
  4004. }
  4005. #u28232 {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:477px;
  4009. top:178px;
  4010. width:102px;
  4011. height:30px;
  4012. display:flex;
  4013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4014. font-weight:400;
  4015. font-style:normal;
  4016. font-size:14px;
  4017. }
  4018. #u28232 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 2px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u28232_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u28233_img {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:124px;
  4037. height:30px;
  4038. }
  4039. #u28233 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:579px;
  4043. top:178px;
  4044. width:124px;
  4045. height:30px;
  4046. display:flex;
  4047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4048. font-weight:400;
  4049. font-style:normal;
  4050. font-size:14px;
  4051. }
  4052. #u28233 .text {
  4053. position:absolute;
  4054. align-self:center;
  4055. padding:2px 2px 2px 2px;
  4056. box-sizing:border-box;
  4057. width:100%;
  4058. }
  4059. #u28233_text {
  4060. border-width:0px;
  4061. word-wrap:break-word;
  4062. text-transform:none;
  4063. visibility:hidden;
  4064. }
  4065. #u28234_img {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:111px;
  4071. height:30px;
  4072. }
  4073. #u28234 {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:703px;
  4077. top:178px;
  4078. width:111px;
  4079. height:30px;
  4080. display:flex;
  4081. font-size:14px;
  4082. }
  4083. #u28234 .text {
  4084. position:absolute;
  4085. align-self:center;
  4086. padding:2px 2px 2px 2px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u28234_text {
  4091. border-width:0px;
  4092. word-wrap:break-word;
  4093. text-transform:none;
  4094. visibility:hidden;
  4095. }
  4096. #u28235_img {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:120px;
  4102. height:30px;
  4103. }
  4104. #u28235 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:814px;
  4108. top:178px;
  4109. width:120px;
  4110. height:30px;
  4111. display:flex;
  4112. font-size:14px;
  4113. }
  4114. #u28235 .text {
  4115. position:absolute;
  4116. align-self:center;
  4117. padding:2px 2px 2px 2px;
  4118. box-sizing:border-box;
  4119. width:100%;
  4120. }
  4121. #u28235_text {
  4122. border-width:0px;
  4123. word-wrap:break-word;
  4124. text-transform:none;
  4125. visibility:hidden;
  4126. }
  4127. #u28236_img {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:0px;
  4131. top:0px;
  4132. width:100px;
  4133. height:30px;
  4134. }
  4135. #u28236 {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:934px;
  4139. top:178px;
  4140. width:100px;
  4141. height:30px;
  4142. display:flex;
  4143. font-size:14px;
  4144. }
  4145. #u28236 .text {
  4146. position:absolute;
  4147. align-self:center;
  4148. padding:2px 2px 2px 2px;
  4149. box-sizing:border-box;
  4150. width:100%;
  4151. }
  4152. #u28236_text {
  4153. border-width:0px;
  4154. word-wrap:break-word;
  4155. text-transform:none;
  4156. visibility:hidden;
  4157. }
  4158. #u28237_img {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:80px;
  4164. height:30px;
  4165. }
  4166. #u28237 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:1034px;
  4170. top:178px;
  4171. width:80px;
  4172. height:30px;
  4173. display:flex;
  4174. font-size:14px;
  4175. }
  4176. #u28237 .text {
  4177. position:absolute;
  4178. align-self:center;
  4179. padding:2px 2px 2px 2px;
  4180. box-sizing:border-box;
  4181. width:100%;
  4182. }
  4183. #u28237_text {
  4184. border-width:0px;
  4185. word-wrap:break-word;
  4186. text-transform:none;
  4187. visibility:hidden;
  4188. }
  4189. #u28238_img {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:100px;
  4195. height:30px;
  4196. }
  4197. #u28238 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:1114px;
  4201. top:178px;
  4202. width:100px;
  4203. height:30px;
  4204. display:flex;
  4205. font-size:14px;
  4206. }
  4207. #u28238 .text {
  4208. position:absolute;
  4209. align-self:center;
  4210. padding:2px 2px 2px 2px;
  4211. box-sizing:border-box;
  4212. width:100%;
  4213. }
  4214. #u28238_text {
  4215. border-width:0px;
  4216. word-wrap:break-word;
  4217. text-transform:none;
  4218. visibility:hidden;
  4219. }
  4220. #u28239_img {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:0px;
  4224. top:0px;
  4225. width:43px;
  4226. height:30px;
  4227. }
  4228. #u28239 {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:0px;
  4232. top:208px;
  4233. width:43px;
  4234. height:30px;
  4235. display:flex;
  4236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4237. font-weight:400;
  4238. font-style:normal;
  4239. font-size:14px;
  4240. }
  4241. #u28239 .text {
  4242. position:absolute;
  4243. align-self:center;
  4244. padding:2px 2px 2px 2px;
  4245. box-sizing:border-box;
  4246. width:100%;
  4247. }
  4248. #u28239_text {
  4249. border-width:0px;
  4250. word-wrap:break-word;
  4251. text-transform:none;
  4252. visibility:hidden;
  4253. }
  4254. #u28240_img {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:140px;
  4260. height:30px;
  4261. }
  4262. #u28240 {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:43px;
  4266. top:208px;
  4267. width:140px;
  4268. height:30px;
  4269. display:flex;
  4270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4271. font-weight:400;
  4272. font-style:normal;
  4273. font-size:14px;
  4274. }
  4275. #u28240 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 2px 2px 2px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u28240_text {
  4283. border-width:0px;
  4284. word-wrap:break-word;
  4285. text-transform:none;
  4286. visibility:hidden;
  4287. }
  4288. #u28241_img {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:140px;
  4294. height:30px;
  4295. }
  4296. #u28241 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:183px;
  4300. top:208px;
  4301. width:140px;
  4302. height:30px;
  4303. display:flex;
  4304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4305. font-weight:400;
  4306. font-style:normal;
  4307. font-size:14px;
  4308. }
  4309. #u28241 .text {
  4310. position:absolute;
  4311. align-self:center;
  4312. padding:2px 2px 2px 2px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u28241_text {
  4317. border-width:0px;
  4318. word-wrap:break-word;
  4319. text-transform:none;
  4320. visibility:hidden;
  4321. }
  4322. #u28242_img {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:74px;
  4328. height:30px;
  4329. }
  4330. #u28242 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:323px;
  4334. top:208px;
  4335. width:74px;
  4336. height:30px;
  4337. display:flex;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:14px;
  4342. }
  4343. #u28242 .text {
  4344. position:absolute;
  4345. align-self:center;
  4346. padding:2px 2px 2px 2px;
  4347. box-sizing:border-box;
  4348. width:100%;
  4349. }
  4350. #u28242_text {
  4351. border-width:0px;
  4352. word-wrap:break-word;
  4353. text-transform:none;
  4354. visibility:hidden;
  4355. }
  4356. #u28243_img {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:80px;
  4362. height:30px;
  4363. }
  4364. #u28243 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:397px;
  4368. top:208px;
  4369. width:80px;
  4370. height:30px;
  4371. display:flex;
  4372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4373. font-weight:400;
  4374. font-style:normal;
  4375. font-size:14px;
  4376. }
  4377. #u28243 .text {
  4378. position:absolute;
  4379. align-self:center;
  4380. padding:2px 2px 2px 2px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u28243_text {
  4385. border-width:0px;
  4386. word-wrap:break-word;
  4387. text-transform:none;
  4388. visibility:hidden;
  4389. }
  4390. #u28244_img {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:102px;
  4396. height:30px;
  4397. }
  4398. #u28244 {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:477px;
  4402. top:208px;
  4403. width:102px;
  4404. height:30px;
  4405. display:flex;
  4406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4407. font-weight:400;
  4408. font-style:normal;
  4409. font-size:14px;
  4410. }
  4411. #u28244 .text {
  4412. position:absolute;
  4413. align-self:center;
  4414. padding:2px 2px 2px 2px;
  4415. box-sizing:border-box;
  4416. width:100%;
  4417. }
  4418. #u28244_text {
  4419. border-width:0px;
  4420. word-wrap:break-word;
  4421. text-transform:none;
  4422. visibility:hidden;
  4423. }
  4424. #u28245_img {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:124px;
  4430. height:30px;
  4431. }
  4432. #u28245 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:579px;
  4436. top:208px;
  4437. width:124px;
  4438. height:30px;
  4439. display:flex;
  4440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4441. font-weight:400;
  4442. font-style:normal;
  4443. font-size:14px;
  4444. }
  4445. #u28245 .text {
  4446. position:absolute;
  4447. align-self:center;
  4448. padding:2px 2px 2px 2px;
  4449. box-sizing:border-box;
  4450. width:100%;
  4451. }
  4452. #u28245_text {
  4453. border-width:0px;
  4454. word-wrap:break-word;
  4455. text-transform:none;
  4456. visibility:hidden;
  4457. }
  4458. #u28246_img {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:111px;
  4464. height:30px;
  4465. }
  4466. #u28246 {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:703px;
  4470. top:208px;
  4471. width:111px;
  4472. height:30px;
  4473. display:flex;
  4474. font-size:14px;
  4475. }
  4476. #u28246 .text {
  4477. position:absolute;
  4478. align-self:center;
  4479. padding:2px 2px 2px 2px;
  4480. box-sizing:border-box;
  4481. width:100%;
  4482. }
  4483. #u28246_text {
  4484. border-width:0px;
  4485. word-wrap:break-word;
  4486. text-transform:none;
  4487. visibility:hidden;
  4488. }
  4489. #u28247_img {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:0px;
  4493. top:0px;
  4494. width:120px;
  4495. height:30px;
  4496. }
  4497. #u28247 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:814px;
  4501. top:208px;
  4502. width:120px;
  4503. height:30px;
  4504. display:flex;
  4505. font-size:14px;
  4506. }
  4507. #u28247 .text {
  4508. position:absolute;
  4509. align-self:center;
  4510. padding:2px 2px 2px 2px;
  4511. box-sizing:border-box;
  4512. width:100%;
  4513. }
  4514. #u28247_text {
  4515. border-width:0px;
  4516. word-wrap:break-word;
  4517. text-transform:none;
  4518. visibility:hidden;
  4519. }
  4520. #u28248_img {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:0px;
  4524. top:0px;
  4525. width:100px;
  4526. height:30px;
  4527. }
  4528. #u28248 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:934px;
  4532. top:208px;
  4533. width:100px;
  4534. height:30px;
  4535. display:flex;
  4536. font-size:14px;
  4537. }
  4538. #u28248 .text {
  4539. position:absolute;
  4540. align-self:center;
  4541. padding:2px 2px 2px 2px;
  4542. box-sizing:border-box;
  4543. width:100%;
  4544. }
  4545. #u28248_text {
  4546. border-width:0px;
  4547. word-wrap:break-word;
  4548. text-transform:none;
  4549. visibility:hidden;
  4550. }
  4551. #u28249_img {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:0px;
  4555. top:0px;
  4556. width:80px;
  4557. height:30px;
  4558. }
  4559. #u28249 {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:1034px;
  4563. top:208px;
  4564. width:80px;
  4565. height:30px;
  4566. display:flex;
  4567. font-size:14px;
  4568. }
  4569. #u28249 .text {
  4570. position:absolute;
  4571. align-self:center;
  4572. padding:2px 2px 2px 2px;
  4573. box-sizing:border-box;
  4574. width:100%;
  4575. }
  4576. #u28249_text {
  4577. border-width:0px;
  4578. word-wrap:break-word;
  4579. text-transform:none;
  4580. visibility:hidden;
  4581. }
  4582. #u28250_img {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:0px;
  4586. top:0px;
  4587. width:100px;
  4588. height:30px;
  4589. }
  4590. #u28250 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:1114px;
  4594. top:208px;
  4595. width:100px;
  4596. height:30px;
  4597. display:flex;
  4598. font-size:14px;
  4599. }
  4600. #u28250 .text {
  4601. position:absolute;
  4602. align-self:center;
  4603. padding:2px 2px 2px 2px;
  4604. box-sizing:border-box;
  4605. width:100%;
  4606. }
  4607. #u28250_text {
  4608. border-width:0px;
  4609. word-wrap:break-word;
  4610. text-transform:none;
  4611. visibility:hidden;
  4612. }
  4613. #u28251 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:0px;
  4617. top:0px;
  4618. width:0px;
  4619. height:0px;
  4620. }
  4621. #u28252_div {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:0px;
  4625. top:0px;
  4626. width:160px;
  4627. height:30px;
  4628. background:inherit;
  4629. background-color:rgba(255, 255, 255, 1);
  4630. box-sizing:border-box;
  4631. border-width:1px;
  4632. border-style:solid;
  4633. border-color:rgba(201, 201, 201, 1);
  4634. border-radius:4px;
  4635. -moz-box-shadow:none;
  4636. -webkit-box-shadow:none;
  4637. box-shadow:none;
  4638. font-family:'Microsoft YaHei', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:14px;
  4642. color:#CCCCCC;
  4643. text-align:left;
  4644. }
  4645. #u28252 {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:1036px;
  4649. top:210px;
  4650. width:160px;
  4651. height:30px;
  4652. display:flex;
  4653. font-family:'Microsoft YaHei', sans-serif;
  4654. font-weight:400;
  4655. font-style:normal;
  4656. font-size:14px;
  4657. color:#CCCCCC;
  4658. text-align:left;
  4659. }
  4660. #u28252 .text {
  4661. position:absolute;
  4662. align-self:center;
  4663. padding:2px 8px 2px 8px;
  4664. box-sizing:border-box;
  4665. width:100%;
  4666. }
  4667. #u28252_text {
  4668. border-width:0px;
  4669. word-wrap:break-word;
  4670. text-transform:none;
  4671. visibility:hidden;
  4672. }
  4673. #u28253_input {
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:150px;
  4678. height:28px;
  4679. padding:2px 2px 2px 2px;
  4680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4681. font-weight:400;
  4682. font-style:normal;
  4683. font-size:14px;
  4684. letter-spacing:normal;
  4685. color:#000000;
  4686. vertical-align:none;
  4687. text-align:left;
  4688. text-transform:none;
  4689. background-color:transparent;
  4690. border-color:transparent;
  4691. }
  4692. #u28253_input.disabled {
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:150px;
  4697. height:28px;
  4698. padding:2px 2px 2px 2px;
  4699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. font-size:14px;
  4703. letter-spacing:normal;
  4704. color:#000000;
  4705. vertical-align:none;
  4706. text-align:left;
  4707. text-transform:none;
  4708. background-color:transparent;
  4709. border-color:transparent;
  4710. }
  4711. #u28253_div {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:0px;
  4715. top:0px;
  4716. width:150px;
  4717. height:28px;
  4718. background:inherit;
  4719. background-color:rgba(255, 255, 255, 1);
  4720. border:none;
  4721. border-radius:0px;
  4722. -moz-box-shadow:none;
  4723. -webkit-box-shadow:none;
  4724. box-shadow:none;
  4725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. font-size:14px;
  4729. }
  4730. #u28253 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:1042px;
  4734. top:211px;
  4735. width:150px;
  4736. height:28px;
  4737. display:flex;
  4738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4739. font-weight:400;
  4740. font-style:normal;
  4741. font-size:14px;
  4742. }
  4743. #u28253 .text {
  4744. position:absolute;
  4745. align-self:center;
  4746. padding:2px 2px 2px 2px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u28253_div.disabled {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:0px;
  4754. top:0px;
  4755. width:150px;
  4756. height:28px;
  4757. background:inherit;
  4758. background-color:rgba(240, 240, 240, 1);
  4759. border:none;
  4760. border-radius:0px;
  4761. -moz-box-shadow:none;
  4762. -webkit-box-shadow:none;
  4763. box-shadow:none;
  4764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4765. font-weight:400;
  4766. font-style:normal;
  4767. font-size:14px;
  4768. }
  4769. #u28253.disabled {
  4770. }
  4771. #u28254 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:0px;
  4777. height:0px;
  4778. }
  4779. #u28255_div {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:160px;
  4785. height:30px;
  4786. background:inherit;
  4787. background-color:rgba(255, 255, 255, 1);
  4788. box-sizing:border-box;
  4789. border-width:1px;
  4790. border-style:solid;
  4791. border-color:rgba(201, 201, 201, 1);
  4792. border-radius:4px;
  4793. -moz-box-shadow:none;
  4794. -webkit-box-shadow:none;
  4795. box-shadow:none;
  4796. font-family:'Microsoft YaHei', sans-serif;
  4797. font-weight:400;
  4798. font-style:normal;
  4799. font-size:14px;
  4800. color:#CCCCCC;
  4801. text-align:left;
  4802. }
  4803. #u28255 {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:866px;
  4807. top:210px;
  4808. width:160px;
  4809. height:30px;
  4810. display:flex;
  4811. font-family:'Microsoft YaHei', sans-serif;
  4812. font-weight:400;
  4813. font-style:normal;
  4814. font-size:14px;
  4815. color:#CCCCCC;
  4816. text-align:left;
  4817. }
  4818. #u28255 .text {
  4819. position:absolute;
  4820. align-self:center;
  4821. padding:2px 8px 2px 8px;
  4822. box-sizing:border-box;
  4823. width:100%;
  4824. }
  4825. #u28255_text {
  4826. border-width:0px;
  4827. word-wrap:break-word;
  4828. text-transform:none;
  4829. visibility:hidden;
  4830. }
  4831. #u28256_input {
  4832. position:absolute;
  4833. left:0px;
  4834. top:0px;
  4835. width:150px;
  4836. height:28px;
  4837. padding:2px 2px 2px 2px;
  4838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4839. font-weight:400;
  4840. font-style:normal;
  4841. font-size:14px;
  4842. letter-spacing:normal;
  4843. color:#000000;
  4844. vertical-align:none;
  4845. text-align:left;
  4846. text-transform:none;
  4847. background-color:transparent;
  4848. border-color:transparent;
  4849. }
  4850. #u28256_input.disabled {
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:150px;
  4855. height:28px;
  4856. padding:2px 2px 2px 2px;
  4857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4858. font-weight:400;
  4859. font-style:normal;
  4860. font-size:14px;
  4861. letter-spacing:normal;
  4862. color:#000000;
  4863. vertical-align:none;
  4864. text-align:left;
  4865. text-transform:none;
  4866. background-color:transparent;
  4867. border-color:transparent;
  4868. }
  4869. #u28256_div {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:0px;
  4873. top:0px;
  4874. width:150px;
  4875. height:28px;
  4876. background:inherit;
  4877. background-color:rgba(255, 255, 255, 1);
  4878. border:none;
  4879. border-radius:0px;
  4880. -moz-box-shadow:none;
  4881. -webkit-box-shadow:none;
  4882. box-shadow:none;
  4883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4884. font-weight:400;
  4885. font-style:normal;
  4886. font-size:14px;
  4887. }
  4888. #u28256 {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:872px;
  4892. top:211px;
  4893. width:150px;
  4894. height:28px;
  4895. display:flex;
  4896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4897. font-weight:400;
  4898. font-style:normal;
  4899. font-size:14px;
  4900. }
  4901. #u28256 .text {
  4902. position:absolute;
  4903. align-self:center;
  4904. padding:2px 2px 2px 2px;
  4905. box-sizing:border-box;
  4906. width:100%;
  4907. }
  4908. #u28256_div.disabled {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:0px;
  4912. top:0px;
  4913. width:150px;
  4914. height:28px;
  4915. background:inherit;
  4916. background-color:rgba(240, 240, 240, 1);
  4917. border:none;
  4918. border-radius:0px;
  4919. -moz-box-shadow:none;
  4920. -webkit-box-shadow:none;
  4921. box-shadow:none;
  4922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4923. font-weight:400;
  4924. font-style:normal;
  4925. font-size:14px;
  4926. }
  4927. #u28256.disabled {
  4928. }
  4929. #u28257 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:0px;
  4935. height:0px;
  4936. }
  4937. #u28258_div {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:60px;
  4943. height:30px;
  4944. background:inherit;
  4945. background-color:rgba(24, 144, 255, 1);
  4946. border:none;
  4947. border-radius:4px;
  4948. -moz-box-shadow:none;
  4949. -webkit-box-shadow:none;
  4950. box-shadow:none;
  4951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:14px;
  4955. color:#FFFFFF;
  4956. }
  4957. #u28258 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:526px;
  4961. top:250px;
  4962. width:60px;
  4963. height:30px;
  4964. display:flex;
  4965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4966. font-weight:400;
  4967. font-style:normal;
  4968. font-size:14px;
  4969. color:#FFFFFF;
  4970. }
  4971. #u28258 .text {
  4972. position:absolute;
  4973. align-self:center;
  4974. padding:2px 2px 2px 2px;
  4975. box-sizing:border-box;
  4976. width:100%;
  4977. }
  4978. #u28258_text {
  4979. border-width:0px;
  4980. word-wrap:break-word;
  4981. text-transform:none;
  4982. }
  4983. #u28259_div {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:60px;
  4989. height:30px;
  4990. background:inherit;
  4991. background-color:rgba(255, 255, 255, 1);
  4992. box-sizing:border-box;
  4993. border-width:1px;
  4994. border-style:solid;
  4995. border-color:rgba(170, 170, 170, 1);
  4996. border-radius:4px;
  4997. -moz-box-shadow:none;
  4998. -webkit-box-shadow:none;
  4999. box-shadow:none;
  5000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5001. font-weight:400;
  5002. font-style:normal;
  5003. font-size:14px;
  5004. }
  5005. #u28259 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:596px;
  5009. top:250px;
  5010. width:60px;
  5011. height:30px;
  5012. display:flex;
  5013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:14px;
  5017. }
  5018. #u28259 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 2px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u28259_text {
  5026. border-width:0px;
  5027. word-wrap:break-word;
  5028. text-transform:none;
  5029. }
  5030. #u28260 {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:0px;
  5036. height:0px;
  5037. }
  5038. #u28261_div {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:0px;
  5042. top:0px;
  5043. width:160px;
  5044. height:30px;
  5045. background:inherit;
  5046. background-color:rgba(255, 255, 255, 1);
  5047. box-sizing:border-box;
  5048. border-width:1px;
  5049. border-style:solid;
  5050. border-color:rgba(201, 201, 201, 1);
  5051. border-radius:4px;
  5052. -moz-box-shadow:none;
  5053. -webkit-box-shadow:none;
  5054. box-shadow:none;
  5055. font-family:'Microsoft YaHei', sans-serif;
  5056. font-weight:400;
  5057. font-style:normal;
  5058. font-size:14px;
  5059. color:#CCCCCC;
  5060. text-align:left;
  5061. }
  5062. #u28261 {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:696px;
  5066. top:210px;
  5067. width:160px;
  5068. height:30px;
  5069. display:flex;
  5070. font-family:'Microsoft YaHei', sans-serif;
  5071. font-weight:400;
  5072. font-style:normal;
  5073. font-size:14px;
  5074. color:#CCCCCC;
  5075. text-align:left;
  5076. }
  5077. #u28261 .text {
  5078. position:absolute;
  5079. align-self:center;
  5080. padding:2px 8px 2px 8px;
  5081. box-sizing:border-box;
  5082. width:100%;
  5083. }
  5084. #u28261_text {
  5085. border-width:0px;
  5086. word-wrap:break-word;
  5087. text-transform:none;
  5088. visibility:hidden;
  5089. }
  5090. #u28262_input {
  5091. position:absolute;
  5092. left:0px;
  5093. top:0px;
  5094. width:150px;
  5095. height:28px;
  5096. padding:2px 2px 2px 2px;
  5097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. font-size:14px;
  5101. letter-spacing:normal;
  5102. color:#000000;
  5103. vertical-align:none;
  5104. text-align:left;
  5105. text-transform:none;
  5106. background-color:transparent;
  5107. border-color:transparent;
  5108. }
  5109. #u28262_input.disabled {
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:150px;
  5114. height:28px;
  5115. padding:2px 2px 2px 2px;
  5116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5117. font-weight:400;
  5118. font-style:normal;
  5119. font-size:14px;
  5120. letter-spacing:normal;
  5121. color:#000000;
  5122. vertical-align:none;
  5123. text-align:left;
  5124. text-transform:none;
  5125. background-color:transparent;
  5126. border-color:transparent;
  5127. }
  5128. #u28262_div {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:150px;
  5134. height:28px;
  5135. background:inherit;
  5136. background-color:rgba(255, 255, 255, 1);
  5137. border:none;
  5138. border-radius:0px;
  5139. -moz-box-shadow:none;
  5140. -webkit-box-shadow:none;
  5141. box-shadow:none;
  5142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5143. font-weight:400;
  5144. font-style:normal;
  5145. font-size:14px;
  5146. }
  5147. #u28262 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:702px;
  5151. top:211px;
  5152. width:150px;
  5153. height:28px;
  5154. display:flex;
  5155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5156. font-weight:400;
  5157. font-style:normal;
  5158. font-size:14px;
  5159. }
  5160. #u28262 .text {
  5161. position:absolute;
  5162. align-self:center;
  5163. padding:2px 2px 2px 2px;
  5164. box-sizing:border-box;
  5165. width:100%;
  5166. }
  5167. #u28262_div.disabled {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:0px;
  5171. top:0px;
  5172. width:150px;
  5173. height:28px;
  5174. background:inherit;
  5175. background-color:rgba(240, 240, 240, 1);
  5176. border:none;
  5177. border-radius:0px;
  5178. -moz-box-shadow:none;
  5179. -webkit-box-shadow:none;
  5180. box-shadow:none;
  5181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5182. font-weight:400;
  5183. font-style:normal;
  5184. font-size:14px;
  5185. }
  5186. #u28262.disabled {
  5187. }
  5188. #u28263 {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:0px;
  5194. height:0px;
  5195. }
  5196. #u28264_div {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:160px;
  5202. height:30px;
  5203. background:inherit;
  5204. background-color:rgba(255, 255, 255, 1);
  5205. box-sizing:border-box;
  5206. border-width:1px;
  5207. border-style:solid;
  5208. border-color:rgba(215, 215, 215, 1);
  5209. border-radius:4px;
  5210. -moz-box-shadow:none;
  5211. -webkit-box-shadow:none;
  5212. box-shadow:none;
  5213. font-size:14px;
  5214. }
  5215. #u28264 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:1206px;
  5219. top:210px;
  5220. width:160px;
  5221. height:30px;
  5222. display:flex;
  5223. font-size:14px;
  5224. }
  5225. #u28264 .text {
  5226. position:absolute;
  5227. align-self:center;
  5228. padding:2px 2px 2px 2px;
  5229. box-sizing:border-box;
  5230. width:100%;
  5231. }
  5232. #u28264_text {
  5233. border-width:0px;
  5234. word-wrap:break-word;
  5235. text-transform:none;
  5236. visibility:hidden;
  5237. }
  5238. #u28265_input {
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:153px;
  5243. height:23px;
  5244. padding:2px 2px 2px 2px;
  5245. font-family:'ArialMT', 'Arial', sans-serif;
  5246. font-weight:400;
  5247. font-style:normal;
  5248. font-size:14px;
  5249. letter-spacing:normal;
  5250. color:#AAAAAA;
  5251. vertical-align:none;
  5252. text-align:left;
  5253. text-transform:none;
  5254. background-color:transparent;
  5255. border-color:transparent;
  5256. }
  5257. #u28265_input.disabled {
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:153px;
  5262. height:23px;
  5263. padding:2px 2px 2px 2px;
  5264. font-family:'ArialMT', 'Arial', sans-serif;
  5265. font-weight:400;
  5266. font-style:normal;
  5267. font-size:14px;
  5268. letter-spacing:normal;
  5269. color:#AAAAAA;
  5270. vertical-align:none;
  5271. text-align:left;
  5272. text-transform:none;
  5273. background-color:transparent;
  5274. border-color:transparent;
  5275. }
  5276. #u28265_div {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:0px;
  5280. top:0px;
  5281. width:153px;
  5282. height:23px;
  5283. background:inherit;
  5284. background-color:rgba(255, 255, 255, 1);
  5285. border:none;
  5286. border-radius:0px;
  5287. -moz-box-shadow:none;
  5288. -webkit-box-shadow:none;
  5289. box-shadow:none;
  5290. font-size:14px;
  5291. color:#AAAAAA;
  5292. }
  5293. #u28265 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:1211px;
  5297. top:212px;
  5298. width:153px;
  5299. height:23px;
  5300. display:flex;
  5301. font-size:14px;
  5302. color:#AAAAAA;
  5303. }
  5304. #u28265 .text {
  5305. position:absolute;
  5306. align-self:flex-start;
  5307. padding:2px 2px 2px 2px;
  5308. box-sizing:border-box;
  5309. width:100%;
  5310. }
  5311. #u28265_div.disabled {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:0px;
  5315. top:0px;
  5316. width:153px;
  5317. height:23px;
  5318. background:inherit;
  5319. background-color:rgba(240, 240, 240, 1);
  5320. border:none;
  5321. border-radius:0px;
  5322. -moz-box-shadow:none;
  5323. -webkit-box-shadow:none;
  5324. box-shadow:none;
  5325. font-size:14px;
  5326. color:#AAAAAA;
  5327. }
  5328. #u28265.disabled {
  5329. }
  5330. .u28265_input_option {
  5331. font-size:14px;
  5332. }
  5333. #u28266 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:0px;
  5337. top:0px;
  5338. width:0px;
  5339. height:0px;
  5340. }
  5341. #u28267_div {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:0px;
  5345. top:0px;
  5346. width:160px;
  5347. height:30px;
  5348. background:inherit;
  5349. background-color:rgba(255, 255, 255, 1);
  5350. box-sizing:border-box;
  5351. border-width:1px;
  5352. border-style:solid;
  5353. border-color:rgba(215, 215, 215, 1);
  5354. border-radius:4px;
  5355. -moz-box-shadow:none;
  5356. -webkit-box-shadow:none;
  5357. box-shadow:none;
  5358. font-size:14px;
  5359. }
  5360. #u28267 {
  5361. border-width:0px;
  5362. position:absolute;
  5363. left:1376px;
  5364. top:210px;
  5365. width:160px;
  5366. height:30px;
  5367. display:flex;
  5368. font-size:14px;
  5369. }
  5370. #u28267 .text {
  5371. position:absolute;
  5372. align-self:center;
  5373. padding:2px 2px 2px 2px;
  5374. box-sizing:border-box;
  5375. width:100%;
  5376. }
  5377. #u28267_text {
  5378. border-width:0px;
  5379. word-wrap:break-word;
  5380. text-transform:none;
  5381. visibility:hidden;
  5382. }
  5383. #u28268_input {
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:153px;
  5388. height:23px;
  5389. padding:2px 2px 2px 2px;
  5390. font-family:'ArialMT', 'Arial', sans-serif;
  5391. font-weight:400;
  5392. font-style:normal;
  5393. font-size:14px;
  5394. letter-spacing:normal;
  5395. color:#AAAAAA;
  5396. vertical-align:none;
  5397. text-align:left;
  5398. text-transform:none;
  5399. background-color:transparent;
  5400. border-color:transparent;
  5401. }
  5402. #u28268_input.disabled {
  5403. position:absolute;
  5404. left:0px;
  5405. top:0px;
  5406. width:153px;
  5407. height:23px;
  5408. padding:2px 2px 2px 2px;
  5409. font-family:'ArialMT', 'Arial', sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. font-size:14px;
  5413. letter-spacing:normal;
  5414. color:#AAAAAA;
  5415. vertical-align:none;
  5416. text-align:left;
  5417. text-transform:none;
  5418. background-color:transparent;
  5419. border-color:transparent;
  5420. }
  5421. #u28268_div {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:0px;
  5425. top:0px;
  5426. width:153px;
  5427. height:23px;
  5428. background:inherit;
  5429. background-color:rgba(255, 255, 255, 1);
  5430. border:none;
  5431. border-radius:0px;
  5432. -moz-box-shadow:none;
  5433. -webkit-box-shadow:none;
  5434. box-shadow:none;
  5435. font-size:14px;
  5436. color:#AAAAAA;
  5437. }
  5438. #u28268 {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:1381px;
  5442. top:212px;
  5443. width:153px;
  5444. height:23px;
  5445. display:flex;
  5446. font-size:14px;
  5447. color:#AAAAAA;
  5448. }
  5449. #u28268 .text {
  5450. position:absolute;
  5451. align-self:flex-start;
  5452. padding:2px 2px 2px 2px;
  5453. box-sizing:border-box;
  5454. width:100%;
  5455. }
  5456. #u28268_div.disabled {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:153px;
  5462. height:23px;
  5463. background:inherit;
  5464. background-color:rgba(240, 240, 240, 1);
  5465. border:none;
  5466. border-radius:0px;
  5467. -moz-box-shadow:none;
  5468. -webkit-box-shadow:none;
  5469. box-shadow:none;
  5470. font-size:14px;
  5471. color:#AAAAAA;
  5472. }
  5473. #u28268.disabled {
  5474. }
  5475. .u28268_input_option {
  5476. font-size:14px;
  5477. }
  5478. #u28269 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:0px;
  5484. height:0px;
  5485. }
  5486. #u28270 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:0px;
  5490. top:0px;
  5491. width:0px;
  5492. height:0px;
  5493. }
  5494. #u28271_div {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:0px;
  5498. top:0px;
  5499. width:380px;
  5500. height:150px;
  5501. background:inherit;
  5502. background-color:rgba(255, 255, 255, 1);
  5503. box-sizing:border-box;
  5504. border-width:1px;
  5505. border-style:solid;
  5506. border-color:rgba(204, 204, 204, 1);
  5507. border-radius:4px;
  5508. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5509. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5510. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5511. font-family:'Microsoft YaHei', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. }
  5515. #u28271 {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:1618px;
  5519. top:293px;
  5520. width:380px;
  5521. height:150px;
  5522. display:flex;
  5523. font-family:'Microsoft YaHei', sans-serif;
  5524. font-weight:400;
  5525. font-style:normal;
  5526. }
  5527. #u28271 .text {
  5528. position:absolute;
  5529. align-self:center;
  5530. padding:2px 2px 2px 2px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u28271_text {
  5535. border-width:0px;
  5536. word-wrap:break-word;
  5537. text-transform:none;
  5538. visibility:hidden;
  5539. }
  5540. #u28272_div {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:299px;
  5546. height:44px;
  5547. background:inherit;
  5548. background-color:rgba(255, 255, 255, 0);
  5549. border:none;
  5550. border-radius:0px;
  5551. -moz-box-shadow:none;
  5552. -webkit-box-shadow:none;
  5553. box-shadow:none;
  5554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5555. font-weight:400;
  5556. font-style:normal;
  5557. font-size:14px;
  5558. color:#666666;
  5559. line-height:22px;
  5560. }
  5561. #u28272 {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:1678px;
  5565. top:348px;
  5566. width:299px;
  5567. height:44px;
  5568. display:flex;
  5569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5570. font-weight:400;
  5571. font-style:normal;
  5572. font-size:14px;
  5573. color:#666666;
  5574. line-height:22px;
  5575. }
  5576. #u28272 .text {
  5577. position:absolute;
  5578. align-self:flex-start;
  5579. padding:0px 0px 0px 0px;
  5580. box-sizing:border-box;
  5581. width:100%;
  5582. }
  5583. #u28272_text {
  5584. border-width:0px;
  5585. word-wrap:break-word;
  5586. text-transform:none;
  5587. }
  5588. #u28273_div {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:0px;
  5592. top:0px;
  5593. width:235px;
  5594. height:21px;
  5595. background:inherit;
  5596. background-color:rgba(255, 255, 255, 0);
  5597. border:none;
  5598. border-radius:0px;
  5599. -moz-box-shadow:none;
  5600. -webkit-box-shadow:none;
  5601. box-shadow:none;
  5602. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5603. font-weight:650;
  5604. font-style:normal;
  5605. font-size:18px;
  5606. color:#000000;
  5607. line-height:22px;
  5608. }
  5609. #u28273 {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:1678px;
  5613. top:318px;
  5614. width:235px;
  5615. height:21px;
  5616. display:flex;
  5617. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5618. font-weight:650;
  5619. font-style:normal;
  5620. font-size:18px;
  5621. color:#000000;
  5622. line-height:22px;
  5623. }
  5624. #u28273 .text {
  5625. position:absolute;
  5626. align-self:flex-start;
  5627. padding:0px 0px 0px 0px;
  5628. box-sizing:border-box;
  5629. width:100%;
  5630. }
  5631. #u28273_text {
  5632. border-width:0px;
  5633. white-space:nowrap;
  5634. text-transform:none;
  5635. }
  5636. #u28274_div {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:0px;
  5640. top:0px;
  5641. width:61px;
  5642. height:32px;
  5643. background:inherit;
  5644. background-color:rgba(24, 144, 255, 1);
  5645. border:none;
  5646. border-radius:4px;
  5647. -moz-box-shadow:none;
  5648. -webkit-box-shadow:none;
  5649. box-shadow:none;
  5650. font-family:'Microsoft YaHei', sans-serif;
  5651. font-weight:400;
  5652. font-style:normal;
  5653. font-size:14px;
  5654. color:#FFFFFF;
  5655. }
  5656. #u28274 {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:1920px;
  5660. top:399px;
  5661. width:61px;
  5662. height:32px;
  5663. display:flex;
  5664. font-family:'Microsoft YaHei', sans-serif;
  5665. font-weight:400;
  5666. font-style:normal;
  5667. font-size:14px;
  5668. color:#FFFFFF;
  5669. }
  5670. #u28274 .text {
  5671. position:absolute;
  5672. align-self:center;
  5673. padding:2px 16px 2px 16px;
  5674. box-sizing:border-box;
  5675. width:100%;
  5676. }
  5677. #u28274_text {
  5678. border-width:0px;
  5679. white-space:nowrap;
  5680. text-transform:none;
  5681. }
  5682. #u28275_div {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:0px;
  5686. top:0px;
  5687. width:66px;
  5688. height:32px;
  5689. background:inherit;
  5690. background-color:rgba(255, 255, 255, 1);
  5691. box-sizing:border-box;
  5692. border-width:1px;
  5693. border-style:solid;
  5694. border-color:rgba(217, 217, 217, 1);
  5695. border-radius:4px;
  5696. -moz-box-shadow:none;
  5697. -webkit-box-shadow:none;
  5698. box-shadow:none;
  5699. font-family:'Microsoft YaHei', sans-serif;
  5700. font-weight:400;
  5701. font-style:normal;
  5702. font-size:14px;
  5703. color:rgba(0, 0, 0, 0.647058823529412);
  5704. line-height:21px;
  5705. }
  5706. #u28275 {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:1838px;
  5710. top:399px;
  5711. width:66px;
  5712. height:32px;
  5713. display:flex;
  5714. font-family:'Microsoft YaHei', sans-serif;
  5715. font-weight:400;
  5716. font-style:normal;
  5717. font-size:14px;
  5718. color:rgba(0, 0, 0, 0.647058823529412);
  5719. line-height:21px;
  5720. }
  5721. #u28275 .text {
  5722. position:absolute;
  5723. align-self:center;
  5724. padding:2px 16px 2px 16px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u28275_text {
  5729. border-width:0px;
  5730. white-space:nowrap;
  5731. text-transform:none;
  5732. }
  5733. #u28276_img {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:0px;
  5737. top:0px;
  5738. width:20px;
  5739. height:20px;
  5740. }
  5741. #u28276 {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:1647px;
  5745. top:318px;
  5746. width:20px;
  5747. height:20px;
  5748. display:flex;
  5749. }
  5750. #u28276 .text {
  5751. position:absolute;
  5752. align-self:center;
  5753. padding:2px 2px 2px 2px;
  5754. box-sizing:border-box;
  5755. width:100%;
  5756. }
  5757. #u28276_text {
  5758. border-width:0px;
  5759. word-wrap:break-word;
  5760. text-transform:none;
  5761. visibility:hidden;
  5762. }
  5763. #u28277 {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:0px;
  5767. top:0px;
  5768. width:0px;
  5769. height:0px;
  5770. }
  5771. #u28278 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:0px;
  5775. top:0px;
  5776. width:0px;
  5777. height:0px;
  5778. }
  5779. #u28279_div {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:0px;
  5783. top:0px;
  5784. width:380px;
  5785. height:140px;
  5786. background:inherit;
  5787. background-color:rgba(255, 255, 255, 1);
  5788. box-sizing:border-box;
  5789. border-width:1px;
  5790. border-style:solid;
  5791. border-color:rgba(204, 204, 204, 1);
  5792. border-radius:4px;
  5793. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5794. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5795. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5796. font-family:'Microsoft YaHei', sans-serif;
  5797. font-weight:400;
  5798. font-style:normal;
  5799. }
  5800. #u28279 {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:1618px;
  5804. top:466px;
  5805. width:380px;
  5806. height:140px;
  5807. display:flex;
  5808. font-family:'Microsoft YaHei', sans-serif;
  5809. font-weight:400;
  5810. font-style:normal;
  5811. }
  5812. #u28279 .text {
  5813. position:absolute;
  5814. align-self:center;
  5815. padding:2px 2px 2px 2px;
  5816. box-sizing:border-box;
  5817. width:100%;
  5818. }
  5819. #u28279_text {
  5820. border-width:0px;
  5821. word-wrap:break-word;
  5822. text-transform:none;
  5823. visibility:hidden;
  5824. }
  5825. #u28280_div {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:0px;
  5829. top:0px;
  5830. width:299px;
  5831. height:22px;
  5832. background:inherit;
  5833. background-color:rgba(255, 255, 255, 0);
  5834. border:none;
  5835. border-radius:0px;
  5836. -moz-box-shadow:none;
  5837. -webkit-box-shadow:none;
  5838. box-shadow:none;
  5839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5840. font-weight:400;
  5841. font-style:normal;
  5842. font-size:14px;
  5843. color:#666666;
  5844. line-height:22px;
  5845. }
  5846. #u28280 {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:1678px;
  5850. top:521px;
  5851. width:299px;
  5852. height:22px;
  5853. display:flex;
  5854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5855. font-weight:400;
  5856. font-style:normal;
  5857. font-size:14px;
  5858. color:#666666;
  5859. line-height:22px;
  5860. }
  5861. #u28280 .text {
  5862. position:absolute;
  5863. align-self:flex-start;
  5864. padding:0px 0px 0px 0px;
  5865. box-sizing:border-box;
  5866. width:100%;
  5867. }
  5868. #u28280_text {
  5869. border-width:0px;
  5870. word-wrap:break-word;
  5871. text-transform:none;
  5872. }
  5873. #u28281_div {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:0px;
  5877. top:0px;
  5878. width:235px;
  5879. height:21px;
  5880. background:inherit;
  5881. background-color:rgba(255, 255, 255, 0);
  5882. border:none;
  5883. border-radius:0px;
  5884. -moz-box-shadow:none;
  5885. -webkit-box-shadow:none;
  5886. box-shadow:none;
  5887. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5888. font-weight:650;
  5889. font-style:normal;
  5890. font-size:18px;
  5891. color:#000000;
  5892. line-height:22px;
  5893. }
  5894. #u28281 {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:1678px;
  5898. top:491px;
  5899. width:235px;
  5900. height:21px;
  5901. display:flex;
  5902. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5903. font-weight:650;
  5904. font-style:normal;
  5905. font-size:18px;
  5906. color:#000000;
  5907. line-height:22px;
  5908. }
  5909. #u28281 .text {
  5910. position:absolute;
  5911. align-self:flex-start;
  5912. padding:0px 0px 0px 0px;
  5913. box-sizing:border-box;
  5914. width:100%;
  5915. }
  5916. #u28281_text {
  5917. border-width:0px;
  5918. white-space:nowrap;
  5919. text-transform:none;
  5920. }
  5921. #u28282_div {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:0px;
  5925. top:0px;
  5926. width:61px;
  5927. height:32px;
  5928. background:inherit;
  5929. background-color:rgba(24, 144, 255, 1);
  5930. border:none;
  5931. border-radius:4px;
  5932. -moz-box-shadow:none;
  5933. -webkit-box-shadow:none;
  5934. box-shadow:none;
  5935. font-family:'Microsoft YaHei', sans-serif;
  5936. font-weight:400;
  5937. font-style:normal;
  5938. font-size:14px;
  5939. color:#FFFFFF;
  5940. }
  5941. #u28282 {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:1920px;
  5945. top:562px;
  5946. width:61px;
  5947. height:32px;
  5948. display:flex;
  5949. font-family:'Microsoft YaHei', sans-serif;
  5950. font-weight:400;
  5951. font-style:normal;
  5952. font-size:14px;
  5953. color:#FFFFFF;
  5954. }
  5955. #u28282 .text {
  5956. position:absolute;
  5957. align-self:center;
  5958. padding:2px 16px 2px 16px;
  5959. box-sizing:border-box;
  5960. width:100%;
  5961. }
  5962. #u28282_text {
  5963. border-width:0px;
  5964. white-space:nowrap;
  5965. text-transform:none;
  5966. }
  5967. #u28283_div {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:0px;
  5971. top:0px;
  5972. width:66px;
  5973. height:32px;
  5974. background:inherit;
  5975. background-color:rgba(255, 255, 255, 1);
  5976. box-sizing:border-box;
  5977. border-width:1px;
  5978. border-style:solid;
  5979. border-color:rgba(217, 217, 217, 1);
  5980. border-radius:4px;
  5981. -moz-box-shadow:none;
  5982. -webkit-box-shadow:none;
  5983. box-shadow:none;
  5984. font-family:'Microsoft YaHei', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. font-size:14px;
  5988. color:rgba(0, 0, 0, 0.647058823529412);
  5989. line-height:21px;
  5990. }
  5991. #u28283 {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:1838px;
  5995. top:562px;
  5996. width:66px;
  5997. height:32px;
  5998. display:flex;
  5999. font-family:'Microsoft YaHei', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. font-size:14px;
  6003. color:rgba(0, 0, 0, 0.647058823529412);
  6004. line-height:21px;
  6005. }
  6006. #u28283 .text {
  6007. position:absolute;
  6008. align-self:center;
  6009. padding:2px 16px 2px 16px;
  6010. box-sizing:border-box;
  6011. width:100%;
  6012. }
  6013. #u28283_text {
  6014. border-width:0px;
  6015. white-space:nowrap;
  6016. text-transform:none;
  6017. }
  6018. #u28284_img {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:0px;
  6022. top:0px;
  6023. width:20px;
  6024. height:20px;
  6025. }
  6026. #u28284 {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:1647px;
  6030. top:491px;
  6031. width:20px;
  6032. height:20px;
  6033. display:flex;
  6034. }
  6035. #u28284 .text {
  6036. position:absolute;
  6037. align-self:center;
  6038. padding:2px 2px 2px 2px;
  6039. box-sizing:border-box;
  6040. width:100%;
  6041. }
  6042. #u28284_text {
  6043. border-width:0px;
  6044. word-wrap:break-word;
  6045. text-transform:none;
  6046. visibility:hidden;
  6047. }
  6048. #u28285 {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:0px;
  6052. top:0px;
  6053. width:0px;
  6054. height:0px;
  6055. }
  6056. #u28286 {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:0px;
  6060. top:0px;
  6061. width:0px;
  6062. height:0px;
  6063. }
  6064. #u28287_div {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:0px;
  6068. top:0px;
  6069. width:380px;
  6070. height:160px;
  6071. background:inherit;
  6072. background-color:rgba(255, 255, 255, 1);
  6073. border:none;
  6074. border-radius:4px;
  6075. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6076. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6077. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6078. font-family:'Microsoft YaHei', sans-serif;
  6079. font-weight:400;
  6080. font-style:normal;
  6081. }
  6082. #u28287 {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:765px;
  6086. top:416px;
  6087. width:380px;
  6088. height:160px;
  6089. display:flex;
  6090. font-family:'Microsoft YaHei', sans-serif;
  6091. font-weight:400;
  6092. font-style:normal;
  6093. }
  6094. #u28287 .text {
  6095. position:absolute;
  6096. align-self:center;
  6097. padding:2px 2px 2px 2px;
  6098. box-sizing:border-box;
  6099. width:100%;
  6100. }
  6101. #u28287_text {
  6102. border-width:0px;
  6103. word-wrap:break-word;
  6104. text-transform:none;
  6105. visibility:hidden;
  6106. }
  6107. #u28288_div {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:0px;
  6111. top:0px;
  6112. width:299px;
  6113. height:22px;
  6114. background:inherit;
  6115. background-color:rgba(255, 255, 255, 0);
  6116. border:none;
  6117. border-radius:0px;
  6118. -moz-box-shadow:none;
  6119. -webkit-box-shadow:none;
  6120. box-shadow:none;
  6121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6122. font-weight:400;
  6123. font-style:normal;
  6124. font-size:18px;
  6125. color:#666666;
  6126. line-height:22px;
  6127. }
  6128. #u28288 {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:785px;
  6132. top:435px;
  6133. width:299px;
  6134. height:22px;
  6135. display:flex;
  6136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:18px;
  6140. color:#666666;
  6141. line-height:22px;
  6142. }
  6143. #u28288 .text {
  6144. position:absolute;
  6145. align-self:flex-start;
  6146. padding:0px 0px 0px 0px;
  6147. box-sizing:border-box;
  6148. width:100%;
  6149. }
  6150. #u28288_text {
  6151. border-width:0px;
  6152. word-wrap:break-word;
  6153. text-transform:none;
  6154. }
  6155. #u28289_div {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:0px;
  6159. top:0px;
  6160. width:61px;
  6161. height:32px;
  6162. background:inherit;
  6163. background-color:rgba(255, 255, 255, 1);
  6164. box-sizing:border-box;
  6165. border-width:1px;
  6166. border-style:solid;
  6167. border-color:rgba(217, 217, 217, 1);
  6168. border-radius:4px;
  6169. -moz-box-shadow:none;
  6170. -webkit-box-shadow:none;
  6171. box-shadow:none;
  6172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6173. font-weight:400;
  6174. font-style:normal;
  6175. font-size:14px;
  6176. color:rgba(0, 0, 0, 0.647058823529412);
  6177. line-height:21px;
  6178. }
  6179. #u28289 {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:1064px;
  6183. top:534px;
  6184. width:61px;
  6185. height:32px;
  6186. display:flex;
  6187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6188. font-weight:400;
  6189. font-style:normal;
  6190. font-size:14px;
  6191. color:rgba(0, 0, 0, 0.647058823529412);
  6192. line-height:21px;
  6193. }
  6194. #u28289 .text {
  6195. position:absolute;
  6196. align-self:center;
  6197. padding:2px 16px 2px 16px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u28289_text {
  6202. border-width:0px;
  6203. white-space:nowrap;
  6204. text-transform:none;
  6205. }
  6206. #u28290_div {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:0px;
  6210. top:0px;
  6211. width:349px;
  6212. height:44px;
  6213. background:inherit;
  6214. background-color:rgba(255, 255, 255, 0);
  6215. border:none;
  6216. border-radius:0px;
  6217. -moz-box-shadow:none;
  6218. -webkit-box-shadow:none;
  6219. box-shadow:none;
  6220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6221. font-weight:400;
  6222. font-style:normal;
  6223. font-size:14px;
  6224. color:#666666;
  6225. line-height:22px;
  6226. }
  6227. #u28290 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:785px;
  6231. top:471px;
  6232. width:349px;
  6233. height:44px;
  6234. display:flex;
  6235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6236. font-weight:400;
  6237. font-style:normal;
  6238. font-size:14px;
  6239. color:#666666;
  6240. line-height:22px;
  6241. }
  6242. #u28290 .text {
  6243. position:absolute;
  6244. align-self:flex-start;
  6245. padding:0px 0px 0px 0px;
  6246. box-sizing:border-box;
  6247. width:100%;
  6248. }
  6249. #u28290_text {
  6250. border-width:0px;
  6251. word-wrap:break-word;
  6252. text-transform:none;
  6253. }
  6254. #u28291_div {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:0px;
  6258. top:0px;
  6259. width:1260px;
  6260. height:130px;
  6261. background:inherit;
  6262. background-color:rgba(255, 255, 255, 1);
  6263. box-sizing:border-box;
  6264. border-width:1px;
  6265. border-style:solid;
  6266. border-color:rgba(242, 242, 242, 1);
  6267. border-radius:0px;
  6268. -moz-box-shadow:none;
  6269. -webkit-box-shadow:none;
  6270. box-shadow:none;
  6271. }
  6272. #u28291 {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:332px;
  6276. top:50px;
  6277. width:1260px;
  6278. height:130px;
  6279. display:flex;
  6280. }
  6281. #u28291 .text {
  6282. position:absolute;
  6283. align-self:center;
  6284. padding:2px 2px 2px 2px;
  6285. box-sizing:border-box;
  6286. width:100%;
  6287. }
  6288. #u28291_text {
  6289. border-width:0px;
  6290. word-wrap:break-word;
  6291. text-transform:none;
  6292. visibility:hidden;
  6293. }
  6294. #u28292_div {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:0px;
  6298. top:0px;
  6299. width:109px;
  6300. height:50px;
  6301. background:inherit;
  6302. background-color:rgba(255, 255, 255, 0);
  6303. border:none;
  6304. border-left:0px;
  6305. border-top:0px;
  6306. border-right:0px;
  6307. border-radius:0px;
  6308. border-bottom-right-radius:0px;
  6309. border-bottom-left-radius:0px;
  6310. -moz-box-shadow:none;
  6311. -webkit-box-shadow:none;
  6312. box-shadow:none;
  6313. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6314. font-weight:500;
  6315. font-style:normal;
  6316. font-size:18px;
  6317. line-height:40px;
  6318. }
  6319. #u28292 {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:352px;
  6323. top:50px;
  6324. width:109px;
  6325. height:50px;
  6326. display:flex;
  6327. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6328. font-weight:500;
  6329. font-style:normal;
  6330. font-size:18px;
  6331. line-height:40px;
  6332. }
  6333. #u28292 .text {
  6334. position:absolute;
  6335. align-self:center;
  6336. padding:0px 0px 0px 0px;
  6337. box-sizing:border-box;
  6338. width:100%;
  6339. }
  6340. #u28292_text {
  6341. border-width:0px;
  6342. white-space:nowrap;
  6343. text-transform:none;
  6344. }
  6345. #u28293_div {
  6346. border-width:0px;
  6347. position:absolute;
  6348. left:0px;
  6349. top:0px;
  6350. width:61px;
  6351. height:50px;
  6352. background:inherit;
  6353. background-color:rgba(0, 191, 191, 0);
  6354. box-sizing:border-box;
  6355. border-width:2px;
  6356. border-style:solid;
  6357. border-color:rgba(41, 143, 255, 1);
  6358. border-left:0px;
  6359. border-top:0px;
  6360. border-right:0px;
  6361. border-radius:0px;
  6362. border-bottom-right-radius:0px;
  6363. border-bottom-left-radius:0px;
  6364. -moz-box-shadow:none;
  6365. -webkit-box-shadow:none;
  6366. box-shadow:none;
  6367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6368. font-weight:400;
  6369. font-style:normal;
  6370. font-size:14px;
  6371. color:#1890FF;
  6372. line-height:40px;
  6373. }
  6374. #u28293 {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:352px;
  6378. top:130px;
  6379. width:61px;
  6380. height:50px;
  6381. display:flex;
  6382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6383. font-weight:400;
  6384. font-style:normal;
  6385. font-size:14px;
  6386. color:#1890FF;
  6387. line-height:40px;
  6388. }
  6389. #u28293 .text {
  6390. position:absolute;
  6391. align-self:center;
  6392. padding:0px 0px 0px 0px;
  6393. box-sizing:border-box;
  6394. width:100%;
  6395. }
  6396. #u28293_text {
  6397. border-width:0px;
  6398. white-space:nowrap;
  6399. text-transform:none;
  6400. }
  6401. #u28294_div {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:0px;
  6405. top:0px;
  6406. width:69px;
  6407. height:50px;
  6408. background:inherit;
  6409. background-color:rgba(0, 191, 191, 0);
  6410. border:none;
  6411. border-left:0px;
  6412. border-top:0px;
  6413. border-right:0px;
  6414. border-radius:0px;
  6415. border-bottom-right-radius:0px;
  6416. border-bottom-left-radius:0px;
  6417. -moz-box-shadow:none;
  6418. -webkit-box-shadow:none;
  6419. box-shadow:none;
  6420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6421. font-weight:400;
  6422. font-style:normal;
  6423. font-size:14px;
  6424. line-height:40px;
  6425. }
  6426. #u28294 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:444px;
  6430. top:130px;
  6431. width:69px;
  6432. height:50px;
  6433. display:flex;
  6434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6435. font-weight:400;
  6436. font-style:normal;
  6437. font-size:14px;
  6438. line-height:40px;
  6439. }
  6440. #u28294 .text {
  6441. position:absolute;
  6442. align-self:center;
  6443. padding:0px 0px 0px 0px;
  6444. box-sizing:border-box;
  6445. width:100%;
  6446. }
  6447. #u28294_text {
  6448. border-width:0px;
  6449. white-space:nowrap;
  6450. text-transform:none;
  6451. }
  6452. #u28295_div {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:0px;
  6456. top:0px;
  6457. width:69px;
  6458. height:50px;
  6459. background:inherit;
  6460. background-color:rgba(255, 255, 255, 0);
  6461. border:none;
  6462. border-left:0px;
  6463. border-top:0px;
  6464. border-right:0px;
  6465. border-radius:0px;
  6466. border-bottom-right-radius:0px;
  6467. border-bottom-left-radius:0px;
  6468. -moz-box-shadow:none;
  6469. -webkit-box-shadow:none;
  6470. box-shadow:none;
  6471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6472. font-weight:400;
  6473. font-style:normal;
  6474. font-size:14px;
  6475. line-height:40px;
  6476. }
  6477. #u28295 {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:545px;
  6481. top:130px;
  6482. width:69px;
  6483. height:50px;
  6484. display:flex;
  6485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6486. font-weight:400;
  6487. font-style:normal;
  6488. font-size:14px;
  6489. line-height:40px;
  6490. }
  6491. #u28295 .text {
  6492. position:absolute;
  6493. align-self:center;
  6494. padding:0px 0px 0px 0px;
  6495. box-sizing:border-box;
  6496. width:100%;
  6497. }
  6498. #u28295_text {
  6499. border-width:0px;
  6500. white-space:nowrap;
  6501. text-transform:none;
  6502. }
  6503. #u28296_div {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:0px;
  6507. top:0px;
  6508. width:69px;
  6509. height:50px;
  6510. background:inherit;
  6511. background-color:rgba(255, 255, 255, 0);
  6512. border:none;
  6513. border-left:0px;
  6514. border-top:0px;
  6515. border-right:0px;
  6516. border-radius:0px;
  6517. border-bottom-right-radius:0px;
  6518. border-bottom-left-radius:0px;
  6519. -moz-box-shadow:none;
  6520. -webkit-box-shadow:none;
  6521. box-shadow:none;
  6522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:14px;
  6526. line-height:40px;
  6527. }
  6528. #u28296 {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:645px;
  6532. top:130px;
  6533. width:69px;
  6534. height:50px;
  6535. display:flex;
  6536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6537. font-weight:400;
  6538. font-style:normal;
  6539. font-size:14px;
  6540. line-height:40px;
  6541. }
  6542. #u28296 .text {
  6543. position:absolute;
  6544. align-self:center;
  6545. padding:0px 0px 0px 0px;
  6546. box-sizing:border-box;
  6547. width:100%;
  6548. }
  6549. #u28296_text {
  6550. border-width:0px;
  6551. white-space:nowrap;
  6552. text-transform:none;
  6553. }
  6554. #u28298_div {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:0px;
  6558. top:0px;
  6559. width:200px;
  6560. height:1180px;
  6561. background:inherit;
  6562. background-color:rgba(255, 255, 255, 1);
  6563. border:none;
  6564. border-radius:0px;
  6565. -moz-box-shadow:none;
  6566. -webkit-box-shadow:none;
  6567. box-shadow:none;
  6568. }
  6569. #u28298 {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:120px;
  6573. top:50px;
  6574. width:200px;
  6575. height:1180px;
  6576. display:flex;
  6577. }
  6578. #u28298 .text {
  6579. position:absolute;
  6580. align-self:center;
  6581. padding:2px 2px 2px 2px;
  6582. box-sizing:border-box;
  6583. width:100%;
  6584. }
  6585. #u28298_text {
  6586. border-width:0px;
  6587. word-wrap:break-word;
  6588. text-transform:none;
  6589. visibility:hidden;
  6590. }
  6591. #u28299_div {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:0px;
  6595. top:0px;
  6596. width:200px;
  6597. height:60px;
  6598. background:inherit;
  6599. background-color:rgba(224, 231, 247, 1);
  6600. border:none;
  6601. border-radius:0px;
  6602. -moz-box-shadow:none;
  6603. -webkit-box-shadow:none;
  6604. box-shadow:none;
  6605. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6606. font-weight:500;
  6607. font-style:normal;
  6608. font-size:18px;
  6609. }
  6610. #u28299 {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:120px;
  6614. top:50px;
  6615. width:200px;
  6616. height:60px;
  6617. display:flex;
  6618. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6619. font-weight:500;
  6620. font-style:normal;
  6621. font-size:18px;
  6622. }
  6623. #u28299 .text {
  6624. position:absolute;
  6625. align-self:center;
  6626. padding:0px 0px 0px 20px;
  6627. box-sizing:border-box;
  6628. width:100%;
  6629. }
  6630. #u28299_text {
  6631. border-width:0px;
  6632. word-wrap:break-word;
  6633. text-transform:none;
  6634. }
  6635. #u28300_div {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:0px;
  6639. top:0px;
  6640. width:97px;
  6641. height:22px;
  6642. background:inherit;
  6643. background-color:rgba(255, 255, 255, 0);
  6644. border:none;
  6645. border-radius:0px;
  6646. -moz-box-shadow:none;
  6647. -webkit-box-shadow:none;
  6648. box-shadow:none;
  6649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6650. font-weight:400;
  6651. font-style:normal;
  6652. font-size:16px;
  6653. }
  6654. #u28300 {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:147px;
  6658. top:161px;
  6659. width:97px;
  6660. height:22px;
  6661. display:flex;
  6662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6663. font-weight:400;
  6664. font-style:normal;
  6665. font-size:16px;
  6666. }
  6667. #u28300 .text {
  6668. position:absolute;
  6669. align-self:flex-start;
  6670. padding:0px 0px 0px 0px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u28300_text {
  6675. border-width:0px;
  6676. white-space:nowrap;
  6677. text-transform:none;
  6678. }
  6679. #u28301_div {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:0px;
  6683. top:0px;
  6684. width:97px;
  6685. height:22px;
  6686. background:inherit;
  6687. background-color:rgba(255, 255, 255, 0);
  6688. border:none;
  6689. border-radius:0px;
  6690. -moz-box-shadow:none;
  6691. -webkit-box-shadow:none;
  6692. box-shadow:none;
  6693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6694. font-weight:400;
  6695. font-style:normal;
  6696. font-size:16px;
  6697. }
  6698. #u28301 {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:147px;
  6702. top:203px;
  6703. width:97px;
  6704. height:22px;
  6705. display:flex;
  6706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6707. font-weight:400;
  6708. font-style:normal;
  6709. font-size:16px;
  6710. }
  6711. #u28301 .text {
  6712. position:absolute;
  6713. align-self:flex-start;
  6714. padding:0px 0px 0px 0px;
  6715. box-sizing:border-box;
  6716. width:100%;
  6717. }
  6718. #u28301_text {
  6719. border-width:0px;
  6720. white-space:nowrap;
  6721. text-transform:none;
  6722. }
  6723. #u28302_div {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:0px;
  6727. top:0px;
  6728. width:97px;
  6729. height:22px;
  6730. background:inherit;
  6731. background-color:rgba(255, 255, 255, 0);
  6732. border:none;
  6733. border-radius:0px;
  6734. -moz-box-shadow:none;
  6735. -webkit-box-shadow:none;
  6736. box-shadow:none;
  6737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6738. font-weight:400;
  6739. font-style:normal;
  6740. font-size:16px;
  6741. }
  6742. #u28302 {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:147px;
  6746. top:247px;
  6747. width:97px;
  6748. height:22px;
  6749. display:flex;
  6750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6751. font-weight:400;
  6752. font-style:normal;
  6753. font-size:16px;
  6754. }
  6755. #u28302 .text {
  6756. position:absolute;
  6757. align-self:flex-start;
  6758. padding:0px 0px 0px 0px;
  6759. box-sizing:border-box;
  6760. width:100%;
  6761. }
  6762. #u28302_text {
  6763. border-width:0px;
  6764. white-space:nowrap;
  6765. text-transform:none;
  6766. }
  6767. #u28303_div {
  6768. border-width:0px;
  6769. position:absolute;
  6770. left:0px;
  6771. top:0px;
  6772. width:49px;
  6773. height:17px;
  6774. background:inherit;
  6775. background-color:rgba(255, 255, 255, 0);
  6776. border:none;
  6777. border-radius:0px;
  6778. -moz-box-shadow:none;
  6779. -webkit-box-shadow:none;
  6780. box-shadow:none;
  6781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6782. font-weight:400;
  6783. font-style:normal;
  6784. font-size:12px;
  6785. color:#AAAAAA;
  6786. }
  6787. #u28303 {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:147px;
  6791. top:125px;
  6792. width:49px;
  6793. height:17px;
  6794. display:flex;
  6795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6796. font-weight:400;
  6797. font-style:normal;
  6798. font-size:12px;
  6799. color:#AAAAAA;
  6800. }
  6801. #u28303 .text {
  6802. position:absolute;
  6803. align-self:flex-start;
  6804. padding:0px 0px 0px 0px;
  6805. box-sizing:border-box;
  6806. width:100%;
  6807. }
  6808. #u28303_text {
  6809. border-width:0px;
  6810. white-space:nowrap;
  6811. text-transform:none;
  6812. }
  6813. #u28304_div {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:0px;
  6817. top:0px;
  6818. width:65px;
  6819. height:22px;
  6820. background:inherit;
  6821. background-color:rgba(255, 255, 255, 0);
  6822. border:none;
  6823. border-radius:0px;
  6824. -moz-box-shadow:none;
  6825. -webkit-box-shadow:none;
  6826. box-shadow:none;
  6827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:16px;
  6831. }
  6832. #u28304 {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:147px;
  6836. top:347px;
  6837. width:65px;
  6838. height:22px;
  6839. display:flex;
  6840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6841. font-weight:400;
  6842. font-style:normal;
  6843. font-size:16px;
  6844. }
  6845. #u28304 .text {
  6846. position:absolute;
  6847. align-self:flex-start;
  6848. padding:0px 0px 0px 0px;
  6849. box-sizing:border-box;
  6850. width:100%;
  6851. }
  6852. #u28304_text {
  6853. border-width:0px;
  6854. white-space:nowrap;
  6855. text-transform:none;
  6856. }
  6857. #u28305_div {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:0px;
  6861. top:0px;
  6862. width:49px;
  6863. height:17px;
  6864. background:inherit;
  6865. background-color:rgba(255, 255, 255, 0);
  6866. border:none;
  6867. border-radius:0px;
  6868. -moz-box-shadow:none;
  6869. -webkit-box-shadow:none;
  6870. box-shadow:none;
  6871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6872. font-weight:400;
  6873. font-style:normal;
  6874. font-size:12px;
  6875. color:#AAAAAA;
  6876. }
  6877. #u28305 {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:147px;
  6881. top:311px;
  6882. width:49px;
  6883. height:17px;
  6884. display:flex;
  6885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6886. font-weight:400;
  6887. font-style:normal;
  6888. font-size:12px;
  6889. color:#AAAAAA;
  6890. }
  6891. #u28305 .text {
  6892. position:absolute;
  6893. align-self:flex-start;
  6894. padding:0px 0px 0px 0px;
  6895. box-sizing:border-box;
  6896. width:100%;
  6897. }
  6898. #u28305_text {
  6899. border-width:0px;
  6900. white-space:nowrap;
  6901. text-transform:none;
  6902. }
  6903. #u28306_img {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:0px;
  6907. top:0px;
  6908. width:201px;
  6909. height:2px;
  6910. }
  6911. #u28306 {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:120px;
  6915. top:289px;
  6916. width:200px;
  6917. height:1px;
  6918. display:flex;
  6919. }
  6920. #u28306 .text {
  6921. position:absolute;
  6922. align-self:center;
  6923. padding:2px 2px 2px 2px;
  6924. box-sizing:border-box;
  6925. width:100%;
  6926. }
  6927. #u28306_text {
  6928. border-width:0px;
  6929. word-wrap:break-word;
  6930. text-transform:none;
  6931. visibility:hidden;
  6932. }
  6933. #u28307_div {
  6934. border-width:0px;
  6935. position:absolute;
  6936. left:0px;
  6937. top:0px;
  6938. width:561px;
  6939. height:20px;
  6940. background:inherit;
  6941. background-color:rgba(255, 255, 255, 0);
  6942. border:none;
  6943. border-left:0px;
  6944. border-top:0px;
  6945. border-right:0px;
  6946. border-radius:0px;
  6947. border-bottom-right-radius:0px;
  6948. border-bottom-left-radius:0px;
  6949. -moz-box-shadow:none;
  6950. -webkit-box-shadow:none;
  6951. box-shadow:none;
  6952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6953. font-weight:400;
  6954. font-style:normal;
  6955. font-size:14px;
  6956. color:#7F7F7F;
  6957. }
  6958. #u28307 {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:352px;
  6962. top:100px;
  6963. width:561px;
  6964. height:20px;
  6965. display:flex;
  6966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6967. font-weight:400;
  6968. font-style:normal;
  6969. font-size:14px;
  6970. color:#7F7F7F;
  6971. }
  6972. #u28307 .text {
  6973. position:absolute;
  6974. align-self:center;
  6975. padding:0px 0px 0px 0px;
  6976. box-sizing:border-box;
  6977. width:100%;
  6978. }
  6979. #u28307_text {
  6980. border-width:0px;
  6981. white-space:nowrap;
  6982. text-transform:none;
  6983. }
  6984. #u28308_div {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:0px;
  6988. top:0px;
  6989. width:1070px;
  6990. height:44px;
  6991. background:inherit;
  6992. background-color:rgba(255, 255, 255, 0);
  6993. border:none;
  6994. border-radius:0px;
  6995. -moz-box-shadow:none;
  6996. -webkit-box-shadow:none;
  6997. box-shadow:none;
  6998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6999. font-weight:400;
  7000. font-style:normal;
  7001. font-size:18px;
  7002. color:#D9001B;
  7003. line-height:22px;
  7004. }
  7005. #u28308 {
  7006. border-width:0px;
  7007. position:absolute;
  7008. left:383px;
  7009. top:626px;
  7010. width:1070px;
  7011. height:44px;
  7012. display:flex;
  7013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7014. font-weight:400;
  7015. font-style:normal;
  7016. font-size:18px;
  7017. color:#D9001B;
  7018. line-height:22px;
  7019. }
  7020. #u28308 .text {
  7021. position:absolute;
  7022. align-self:flex-start;
  7023. padding:0px 0px 0px 0px;
  7024. box-sizing:border-box;
  7025. width:100%;
  7026. }
  7027. #u28308_text {
  7028. border-width:0px;
  7029. white-space:nowrap;
  7030. text-transform:none;
  7031. }
  7032. #u28310 {
  7033. border-width:0px;
  7034. position:absolute;
  7035. left:0px;
  7036. top:0px;
  7037. width:0px;
  7038. height:0px;
  7039. }
  7040. #u28311_div {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:30px;
  7046. height:30px;
  7047. background:inherit;
  7048. background-color:rgba(255, 255, 255, 1);
  7049. box-sizing:border-box;
  7050. border-width:1px;
  7051. border-style:solid;
  7052. border-color:rgba(228, 228, 228, 1);
  7053. border-radius:4px;
  7054. -moz-box-shadow:none;
  7055. -webkit-box-shadow:none;
  7056. box-shadow:none;
  7057. font-family:'Microsoft YaHei', sans-serif;
  7058. font-weight:400;
  7059. font-style:normal;
  7060. font-size:14px;
  7061. }
  7062. #u28311 {
  7063. border-width:0px;
  7064. position:absolute;
  7065. left:996px;
  7066. top:1183px;
  7067. width:30px;
  7068. height:30px;
  7069. display:flex;
  7070. font-family:'Microsoft YaHei', sans-serif;
  7071. font-weight:400;
  7072. font-style:normal;
  7073. font-size:14px;
  7074. }
  7075. #u28311 .text {
  7076. position:absolute;
  7077. align-self:center;
  7078. padding:2px 2px 2px 2px;
  7079. box-sizing:border-box;
  7080. width:100%;
  7081. }
  7082. #u28311_text {
  7083. border-width:0px;
  7084. word-wrap:break-word;
  7085. text-transform:none;
  7086. }
  7087. #u28312_div {
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:0px;
  7091. top:0px;
  7092. width:49px;
  7093. height:30px;
  7094. background:inherit;
  7095. background-color:rgba(255, 255, 255, 0);
  7096. box-sizing:border-box;
  7097. border-width:1px;
  7098. border-style:solid;
  7099. border-color:rgba(188, 188, 188, 1);
  7100. border-radius:4px;
  7101. -moz-box-shadow:none;
  7102. -webkit-box-shadow:none;
  7103. box-shadow:none;
  7104. font-family:'Microsoft YaHei', sans-serif;
  7105. font-weight:400;
  7106. font-style:normal;
  7107. font-size:14px;
  7108. color:#1E1E1E;
  7109. }
  7110. #u28312 {
  7111. border-width:0px;
  7112. position:absolute;
  7113. left:1512px;
  7114. top:1183px;
  7115. width:49px;
  7116. height:30px;
  7117. display:flex;
  7118. font-family:'Microsoft YaHei', sans-serif;
  7119. font-weight:400;
  7120. font-style:normal;
  7121. font-size:14px;
  7122. color:#1E1E1E;
  7123. }
  7124. #u28312 .text {
  7125. position:absolute;
  7126. align-self:center;
  7127. padding:5px 10px 5px 10px;
  7128. box-sizing:border-box;
  7129. width:100%;
  7130. }
  7131. #u28312_text {
  7132. border-width:0px;
  7133. white-space:nowrap;
  7134. text-transform:none;
  7135. }
  7136. #u28313 {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:0px;
  7142. height:0px;
  7143. }
  7144. #u28314_div {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:0px;
  7148. top:0px;
  7149. width:33px;
  7150. height:24px;
  7151. background:inherit;
  7152. background-color:rgba(255, 255, 255, 1);
  7153. border:none;
  7154. border-radius:0px;
  7155. -moz-box-shadow:none;
  7156. -webkit-box-shadow:none;
  7157. box-shadow:none;
  7158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7159. font-weight:400;
  7160. font-style:normal;
  7161. font-size:14px;
  7162. color:#BCBCBC;
  7163. text-align:left;
  7164. }
  7165. #u28314 {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:1280px;
  7169. top:1186px;
  7170. width:33px;
  7171. height:24px;
  7172. display:flex;
  7173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7174. font-weight:400;
  7175. font-style:normal;
  7176. font-size:14px;
  7177. color:#BCBCBC;
  7178. text-align:left;
  7179. }
  7180. #u28314 .text {
  7181. position:absolute;
  7182. align-self:center;
  7183. padding:2px 2px 2px 2px;
  7184. box-sizing:border-box;
  7185. width:100%;
  7186. }
  7187. #u28314_text {
  7188. border-width:0px;
  7189. white-space:nowrap;
  7190. text-transform:none;
  7191. }
  7192. #u28315_div {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:0px;
  7196. top:0px;
  7197. width:40px;
  7198. height:30px;
  7199. background:inherit;
  7200. background-color:rgba(255, 255, 255, 1);
  7201. box-sizing:border-box;
  7202. border-width:1px;
  7203. border-style:solid;
  7204. border-color:rgba(228, 228, 228, 1);
  7205. border-radius:4px;
  7206. -moz-box-shadow:none;
  7207. -webkit-box-shadow:none;
  7208. box-shadow:none;
  7209. font-family:'Microsoft YaHei', sans-serif;
  7210. font-weight:400;
  7211. font-style:normal;
  7212. font-size:14px;
  7213. }
  7214. #u28315 {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:1315px;
  7218. top:1183px;
  7219. width:40px;
  7220. height:30px;
  7221. display:flex;
  7222. font-family:'Microsoft YaHei', sans-serif;
  7223. font-weight:400;
  7224. font-style:normal;
  7225. font-size:14px;
  7226. }
  7227. #u28315 .text {
  7228. position:absolute;
  7229. align-self:center;
  7230. padding:2px 2px 2px 2px;
  7231. box-sizing:border-box;
  7232. width:100%;
  7233. }
  7234. #u28315_text {
  7235. border-width:0px;
  7236. word-wrap:break-word;
  7237. text-transform:none;
  7238. visibility:hidden;
  7239. }
  7240. #u28316_div {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:0px;
  7244. top:0px;
  7245. width:19px;
  7246. height:24px;
  7247. background:inherit;
  7248. background-color:rgba(255, 255, 255, 1);
  7249. border:none;
  7250. border-radius:0px;
  7251. -moz-box-shadow:none;
  7252. -webkit-box-shadow:none;
  7253. box-shadow:none;
  7254. font-family:'Microsoft YaHei', sans-serif;
  7255. font-weight:400;
  7256. font-style:normal;
  7257. font-size:14px;
  7258. color:#BCBCBC;
  7259. text-align:left;
  7260. }
  7261. #u28316 {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:1357px;
  7265. top:1187px;
  7266. width:19px;
  7267. height:24px;
  7268. display:flex;
  7269. font-family:'Microsoft YaHei', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:14px;
  7273. color:#BCBCBC;
  7274. text-align:left;
  7275. }
  7276. #u28316 .text {
  7277. position:absolute;
  7278. align-self:center;
  7279. padding:2px 2px 2px 2px;
  7280. box-sizing:border-box;
  7281. width:100%;
  7282. }
  7283. #u28316_text {
  7284. border-width:0px;
  7285. white-space:nowrap;
  7286. text-transform:none;
  7287. }
  7288. #u28317_input {
  7289. position:absolute;
  7290. left:0px;
  7291. top:0px;
  7292. width:34px;
  7293. height:25px;
  7294. padding:2px 2px 2px 2px;
  7295. font-family:'Microsoft YaHei', sans-serif;
  7296. font-weight:400;
  7297. font-style:normal;
  7298. font-size:13px;
  7299. letter-spacing:normal;
  7300. color:#000000;
  7301. vertical-align:none;
  7302. text-align:left;
  7303. text-transform:none;
  7304. background-color:transparent;
  7305. border-color:transparent;
  7306. }
  7307. #u28317_input.disabled {
  7308. position:absolute;
  7309. left:0px;
  7310. top:0px;
  7311. width:34px;
  7312. height:25px;
  7313. padding:2px 2px 2px 2px;
  7314. font-family:'Microsoft YaHei', sans-serif;
  7315. font-weight:400;
  7316. font-style:normal;
  7317. font-size:13px;
  7318. letter-spacing:normal;
  7319. color:#000000;
  7320. vertical-align:none;
  7321. text-align:left;
  7322. text-transform:none;
  7323. background-color:transparent;
  7324. border-color:transparent;
  7325. }
  7326. #u28317_div {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:34px;
  7332. height:25px;
  7333. background:inherit;
  7334. background-color:rgba(255, 255, 255, 1);
  7335. border:none;
  7336. border-radius:0px;
  7337. -moz-box-shadow:none;
  7338. -webkit-box-shadow:none;
  7339. box-shadow:none;
  7340. font-family:'Microsoft YaHei', sans-serif;
  7341. font-weight:400;
  7342. font-style:normal;
  7343. }
  7344. #u28317 {
  7345. border-width:0px;
  7346. position:absolute;
  7347. left:1318px;
  7348. top:1185px;
  7349. width:34px;
  7350. height:25px;
  7351. display:flex;
  7352. font-family:'Microsoft YaHei', sans-serif;
  7353. font-weight:400;
  7354. font-style:normal;
  7355. }
  7356. #u28317 .text {
  7357. position:absolute;
  7358. align-self:center;
  7359. padding:2px 2px 2px 2px;
  7360. box-sizing:border-box;
  7361. width:100%;
  7362. }
  7363. #u28317_div.disabled {
  7364. border-width:0px;
  7365. position:absolute;
  7366. left:0px;
  7367. top:0px;
  7368. width:34px;
  7369. height:25px;
  7370. background:inherit;
  7371. background-color:rgba(240, 240, 240, 1);
  7372. border:none;
  7373. border-radius:0px;
  7374. -moz-box-shadow:none;
  7375. -webkit-box-shadow:none;
  7376. box-shadow:none;
  7377. font-family:'Microsoft YaHei', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. }
  7381. #u28317.disabled {
  7382. }
  7383. #u28318_div {
  7384. border-width:0px;
  7385. position:absolute;
  7386. left:0px;
  7387. top:0px;
  7388. width:30px;
  7389. height:30px;
  7390. background:inherit;
  7391. background-color:rgba(41, 143, 255, 1);
  7392. border:none;
  7393. border-radius:4px;
  7394. -moz-box-shadow:none;
  7395. -webkit-box-shadow:none;
  7396. box-shadow:none;
  7397. font-family:'Microsoft YaHei', sans-serif;
  7398. font-weight:400;
  7399. font-style:normal;
  7400. font-size:14px;
  7401. color:#FFFFFF;
  7402. }
  7403. #u28318 {
  7404. border-width:0px;
  7405. position:absolute;
  7406. left:1030px;
  7407. top:1183px;
  7408. width:30px;
  7409. height:30px;
  7410. display:flex;
  7411. font-family:'Microsoft YaHei', sans-serif;
  7412. font-weight:400;
  7413. font-style:normal;
  7414. font-size:14px;
  7415. color:#FFFFFF;
  7416. }
  7417. #u28318 .text {
  7418. position:absolute;
  7419. align-self:center;
  7420. padding:2px 2px 2px 2px;
  7421. box-sizing:border-box;
  7422. width:100%;
  7423. }
  7424. #u28318_text {
  7425. border-width:0px;
  7426. word-wrap:break-word;
  7427. text-transform:none;
  7428. }
  7429. #u28319_div {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:0px;
  7433. top:0px;
  7434. width:30px;
  7435. height:30px;
  7436. background:inherit;
  7437. background-color:rgba(255, 255, 255, 1);
  7438. box-sizing:border-box;
  7439. border-width:1px;
  7440. border-style:solid;
  7441. border-color:rgba(228, 228, 228, 1);
  7442. border-radius:4px;
  7443. -moz-box-shadow:none;
  7444. -webkit-box-shadow:none;
  7445. box-shadow:none;
  7446. font-family:'Microsoft YaHei', sans-serif;
  7447. font-weight:400;
  7448. font-style:normal;
  7449. font-size:14px;
  7450. }
  7451. #u28319 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:1064px;
  7455. top:1183px;
  7456. width:30px;
  7457. height:30px;
  7458. display:flex;
  7459. font-family:'Microsoft YaHei', sans-serif;
  7460. font-weight:400;
  7461. font-style:normal;
  7462. font-size:14px;
  7463. }
  7464. #u28319 .text {
  7465. position:absolute;
  7466. align-self:center;
  7467. padding:2px 2px 2px 2px;
  7468. box-sizing:border-box;
  7469. width:100%;
  7470. }
  7471. #u28319_text {
  7472. border-width:0px;
  7473. word-wrap:break-word;
  7474. text-transform:none;
  7475. }
  7476. #u28320_div {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:0px;
  7480. top:0px;
  7481. width:30px;
  7482. height:30px;
  7483. background:inherit;
  7484. background-color:rgba(255, 255, 255, 1);
  7485. box-sizing:border-box;
  7486. border-width:1px;
  7487. border-style:solid;
  7488. border-color:rgba(228, 228, 228, 1);
  7489. border-radius:4px;
  7490. -moz-box-shadow:none;
  7491. -webkit-box-shadow:none;
  7492. box-shadow:none;
  7493. font-family:'Microsoft YaHei', sans-serif;
  7494. font-weight:400;
  7495. font-style:normal;
  7496. font-size:14px;
  7497. }
  7498. #u28320 {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:1098px;
  7502. top:1183px;
  7503. width:30px;
  7504. height:30px;
  7505. display:flex;
  7506. font-family:'Microsoft YaHei', sans-serif;
  7507. font-weight:400;
  7508. font-style:normal;
  7509. font-size:14px;
  7510. }
  7511. #u28320 .text {
  7512. position:absolute;
  7513. align-self:center;
  7514. padding:2px 2px 2px 2px;
  7515. box-sizing:border-box;
  7516. width:100%;
  7517. }
  7518. #u28320_text {
  7519. border-width:0px;
  7520. word-wrap:break-word;
  7521. text-transform:none;
  7522. }
  7523. #u28321_div {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:0px;
  7527. top:0px;
  7528. width:30px;
  7529. height:30px;
  7530. background:inherit;
  7531. background-color:rgba(255, 255, 255, 1);
  7532. border:none;
  7533. border-radius:4px;
  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:14px;
  7541. }
  7542. #u28321 {
  7543. border-width:0px;
  7544. position:absolute;
  7545. left:1128px;
  7546. top:1183px;
  7547. width:30px;
  7548. height:30px;
  7549. display:flex;
  7550. font-family:'Microsoft YaHei', sans-serif;
  7551. font-weight:400;
  7552. font-style:normal;
  7553. font-size:14px;
  7554. }
  7555. #u28321 .text {
  7556. position:absolute;
  7557. align-self:center;
  7558. padding:2px 2px 2px 2px;
  7559. box-sizing:border-box;
  7560. width:100%;
  7561. }
  7562. #u28321_text {
  7563. border-width:0px;
  7564. word-wrap:break-word;
  7565. text-transform:none;
  7566. }
  7567. #u28322_div {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:0px;
  7571. top:0px;
  7572. width:30px;
  7573. height:30px;
  7574. background:inherit;
  7575. background-color:rgba(255, 255, 255, 1);
  7576. box-sizing:border-box;
  7577. border-width:1px;
  7578. border-style:solid;
  7579. border-color:rgba(228, 228, 228, 1);
  7580. border-radius:4px;
  7581. -moz-box-shadow:none;
  7582. -webkit-box-shadow:none;
  7583. box-shadow:none;
  7584. font-family:'Microsoft YaHei', sans-serif;
  7585. font-weight:400;
  7586. font-style:normal;
  7587. font-size:14px;
  7588. }
  7589. #u28322 {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:1162px;
  7593. top:1183px;
  7594. width:30px;
  7595. height:30px;
  7596. display:flex;
  7597. font-family:'Microsoft YaHei', sans-serif;
  7598. font-weight:400;
  7599. font-style:normal;
  7600. font-size:14px;
  7601. }
  7602. #u28322 .text {
  7603. position:absolute;
  7604. align-self:center;
  7605. padding:2px 2px 2px 2px;
  7606. box-sizing:border-box;
  7607. width:100%;
  7608. }
  7609. #u28322_text {
  7610. border-width:0px;
  7611. word-wrap:break-word;
  7612. text-transform:none;
  7613. }
  7614. #u28323_div {
  7615. border-width:0px;
  7616. position:absolute;
  7617. left:0px;
  7618. top:0px;
  7619. width:32px;
  7620. height:21px;
  7621. background:inherit;
  7622. background-color:rgba(255, 255, 255, 1);
  7623. border:none;
  7624. border-radius:15px;
  7625. -moz-box-shadow:none;
  7626. -webkit-box-shadow:none;
  7627. box-shadow:none;
  7628. font-family:'Microsoft YaHei', sans-serif;
  7629. font-weight:400;
  7630. font-style:normal;
  7631. font-size:14px;
  7632. color:#1E1E1E;
  7633. }
  7634. #u28323 {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:1236px;
  7638. top:1188px;
  7639. width:32px;
  7640. height:21px;
  7641. display:flex;
  7642. font-family:'Microsoft YaHei', sans-serif;
  7643. font-weight:400;
  7644. font-style:normal;
  7645. font-size:14px;
  7646. color:#1E1E1E;
  7647. }
  7648. #u28323 .text {
  7649. position:absolute;
  7650. align-self:center;
  7651. padding:2px 2px 2px 2px;
  7652. box-sizing:border-box;
  7653. width:100%;
  7654. }
  7655. #u28323_text {
  7656. border-width:0px;
  7657. white-space:nowrap;
  7658. text-transform:none;
  7659. }
  7660. #u28324 {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:0px;
  7664. top:0px;
  7665. width:0px;
  7666. height:0px;
  7667. }
  7668. #u28325_div {
  7669. border-width:0px;
  7670. position:absolute;
  7671. left:0px;
  7672. top:0px;
  7673. width:31px;
  7674. height:30px;
  7675. background:inherit;
  7676. background-color:rgba(255, 255, 255, 1);
  7677. box-sizing:border-box;
  7678. border-width:1px;
  7679. border-style:solid;
  7680. border-color:rgba(228, 228, 228, 1);
  7681. border-radius:4px;
  7682. -moz-box-shadow:none;
  7683. -webkit-box-shadow:none;
  7684. box-shadow:none;
  7685. font-family:'Microsoft YaHei', sans-serif;
  7686. font-weight:400;
  7687. font-style:normal;
  7688. font-size:12px;
  7689. }
  7690. #u28325 {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:961px;
  7694. top:1183px;
  7695. width:31px;
  7696. height:30px;
  7697. display:flex;
  7698. font-family:'Microsoft YaHei', sans-serif;
  7699. font-weight:400;
  7700. font-style:normal;
  7701. font-size:12px;
  7702. }
  7703. #u28325 .text {
  7704. position:absolute;
  7705. align-self:center;
  7706. padding:2px 2px 2px 2px;
  7707. box-sizing:border-box;
  7708. width:100%;
  7709. }
  7710. #u28325_text {
  7711. border-width:0px;
  7712. word-wrap:break-word;
  7713. text-transform:none;
  7714. visibility:hidden;
  7715. }
  7716. #u28326_img {
  7717. border-width:0px;
  7718. position:absolute;
  7719. left:0px;
  7720. top:0px;
  7721. width:8px;
  7722. height:14px;
  7723. }
  7724. #u28326 {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:973px;
  7728. top:1191px;
  7729. width:8px;
  7730. height:14px;
  7731. display:flex;
  7732. font-family:'Microsoft YaHei', sans-serif;
  7733. font-weight:400;
  7734. font-style:normal;
  7735. font-size:12px;
  7736. }
  7737. #u28326 .text {
  7738. position:absolute;
  7739. align-self:center;
  7740. padding:2px 2px 2px 2px;
  7741. box-sizing:border-box;
  7742. width:100%;
  7743. }
  7744. #u28326_text {
  7745. border-width:0px;
  7746. word-wrap:break-word;
  7747. text-transform:none;
  7748. visibility:hidden;
  7749. }
  7750. #u28327 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:0px;
  7754. top:0px;
  7755. width:0px;
  7756. height:0px;
  7757. }
  7758. #u28328_div {
  7759. border-width:0px;
  7760. position:absolute;
  7761. left:0px;
  7762. top:0px;
  7763. width:31px;
  7764. height:30px;
  7765. background:inherit;
  7766. background-color:rgba(255, 255, 255, 1);
  7767. box-sizing:border-box;
  7768. border-width:1px;
  7769. border-style:solid;
  7770. border-color:rgba(228, 228, 228, 1);
  7771. border-radius:4px;
  7772. -moz-box-shadow:none;
  7773. -webkit-box-shadow:none;
  7774. box-shadow:none;
  7775. font-family:'Microsoft YaHei', sans-serif;
  7776. font-weight:400;
  7777. font-style:normal;
  7778. font-size:12px;
  7779. }
  7780. #u28328 {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:1195px;
  7784. top:1183px;
  7785. width:31px;
  7786. height:30px;
  7787. display:flex;
  7788. font-family:'Microsoft YaHei', sans-serif;
  7789. font-weight:400;
  7790. font-style:normal;
  7791. font-size:12px;
  7792. }
  7793. #u28328 .text {
  7794. position:absolute;
  7795. align-self:center;
  7796. padding:2px 2px 2px 2px;
  7797. box-sizing:border-box;
  7798. width:100%;
  7799. }
  7800. #u28328_text {
  7801. border-width:0px;
  7802. word-wrap:break-word;
  7803. text-transform:none;
  7804. visibility:hidden;
  7805. }
  7806. #u28329_img {
  7807. border-width:0px;
  7808. position:absolute;
  7809. left:0px;
  7810. top:0px;
  7811. width:8px;
  7812. height:14px;
  7813. }
  7814. #u28329 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:1208px;
  7818. top:1191px;
  7819. width:8px;
  7820. height:14px;
  7821. display:flex;
  7822. font-family:'Microsoft YaHei', sans-serif;
  7823. font-weight:400;
  7824. font-style:normal;
  7825. font-size:12px;
  7826. }
  7827. #u28329 .text {
  7828. position:absolute;
  7829. align-self:center;
  7830. padding:2px 2px 2px 2px;
  7831. box-sizing:border-box;
  7832. width:100%;
  7833. }
  7834. #u28329_text {
  7835. border-width:0px;
  7836. word-wrap:break-word;
  7837. text-transform:none;
  7838. visibility:hidden;
  7839. }
  7840. #u28330 {
  7841. border-width:0px;
  7842. position:absolute;
  7843. left:0px;
  7844. top:0px;
  7845. width:0px;
  7846. height:0px;
  7847. }
  7848. #u28331_div {
  7849. border-width:0px;
  7850. position:absolute;
  7851. left:0px;
  7852. top:0px;
  7853. width:33px;
  7854. height:24px;
  7855. background:inherit;
  7856. background-color:rgba(255, 255, 255, 1);
  7857. border:none;
  7858. border-radius:0px;
  7859. -moz-box-shadow:none;
  7860. -webkit-box-shadow:none;
  7861. box-shadow:none;
  7862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7863. font-weight:400;
  7864. font-style:normal;
  7865. font-size:14px;
  7866. color:#BCBCBC;
  7867. text-align:left;
  7868. }
  7869. #u28331 {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:1396px;
  7873. top:1186px;
  7874. width:33px;
  7875. height:24px;
  7876. display:flex;
  7877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7878. font-weight:400;
  7879. font-style:normal;
  7880. font-size:14px;
  7881. color:#BCBCBC;
  7882. text-align:left;
  7883. }
  7884. #u28331 .text {
  7885. position:absolute;
  7886. align-self:center;
  7887. padding:2px 2px 2px 2px;
  7888. box-sizing:border-box;
  7889. width:100%;
  7890. }
  7891. #u28331_text {
  7892. border-width:0px;
  7893. white-space:nowrap;
  7894. text-transform:none;
  7895. }
  7896. #u28332_div {
  7897. border-width:0px;
  7898. position:absolute;
  7899. left:0px;
  7900. top:0px;
  7901. width:40px;
  7902. height:30px;
  7903. background:inherit;
  7904. background-color:rgba(255, 255, 255, 1);
  7905. box-sizing:border-box;
  7906. border-width:1px;
  7907. border-style:solid;
  7908. border-color:rgba(228, 228, 228, 1);
  7909. border-radius:4px;
  7910. -moz-box-shadow:none;
  7911. -webkit-box-shadow:none;
  7912. box-shadow:none;
  7913. font-family:'Microsoft YaHei', sans-serif;
  7914. font-weight:400;
  7915. font-style:normal;
  7916. font-size:14px;
  7917. }
  7918. #u28332 {
  7919. border-width:0px;
  7920. position:absolute;
  7921. left:1431px;
  7922. top:1183px;
  7923. width:40px;
  7924. height:30px;
  7925. display:flex;
  7926. font-family:'Microsoft YaHei', sans-serif;
  7927. font-weight:400;
  7928. font-style:normal;
  7929. font-size:14px;
  7930. }
  7931. #u28332 .text {
  7932. position:absolute;
  7933. align-self:center;
  7934. padding:2px 2px 2px 2px;
  7935. box-sizing:border-box;
  7936. width:100%;
  7937. }
  7938. #u28332_text {
  7939. border-width:0px;
  7940. word-wrap:break-word;
  7941. text-transform:none;
  7942. visibility:hidden;
  7943. }
  7944. #u28333_div {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:0px;
  7948. top:0px;
  7949. width:19px;
  7950. height:24px;
  7951. background:inherit;
  7952. background-color:rgba(255, 255, 255, 1);
  7953. border:none;
  7954. border-radius:0px;
  7955. -moz-box-shadow:none;
  7956. -webkit-box-shadow:none;
  7957. box-shadow:none;
  7958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7959. font-weight:400;
  7960. font-style:normal;
  7961. font-size:14px;
  7962. color:#BCBCBC;
  7963. text-align:left;
  7964. }
  7965. #u28333 {
  7966. border-width:0px;
  7967. position:absolute;
  7968. left:1473px;
  7969. top:1187px;
  7970. width:19px;
  7971. height:24px;
  7972. display:flex;
  7973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7974. font-weight:400;
  7975. font-style:normal;
  7976. font-size:14px;
  7977. color:#BCBCBC;
  7978. text-align:left;
  7979. }
  7980. #u28333 .text {
  7981. position:absolute;
  7982. align-self:center;
  7983. padding:2px 2px 2px 2px;
  7984. box-sizing:border-box;
  7985. width:100%;
  7986. }
  7987. #u28333_text {
  7988. border-width:0px;
  7989. white-space:nowrap;
  7990. text-transform:none;
  7991. }
  7992. #u28334_input {
  7993. position:absolute;
  7994. left:0px;
  7995. top:0px;
  7996. width:34px;
  7997. height:25px;
  7998. padding:2px 2px 2px 2px;
  7999. font-family:'Microsoft YaHei', sans-serif;
  8000. font-weight:400;
  8001. font-style:normal;
  8002. font-size:13px;
  8003. letter-spacing:normal;
  8004. color:#000000;
  8005. vertical-align:none;
  8006. text-align:left;
  8007. text-transform:none;
  8008. background-color:transparent;
  8009. border-color:transparent;
  8010. }
  8011. #u28334_input.disabled {
  8012. position:absolute;
  8013. left:0px;
  8014. top:0px;
  8015. width:34px;
  8016. height:25px;
  8017. padding:2px 2px 2px 2px;
  8018. font-family:'Microsoft YaHei', sans-serif;
  8019. font-weight:400;
  8020. font-style:normal;
  8021. font-size:13px;
  8022. letter-spacing:normal;
  8023. color:#000000;
  8024. vertical-align:none;
  8025. text-align:left;
  8026. text-transform:none;
  8027. background-color:transparent;
  8028. border-color:transparent;
  8029. }
  8030. #u28334_div {
  8031. border-width:0px;
  8032. position:absolute;
  8033. left:0px;
  8034. top:0px;
  8035. width:34px;
  8036. height:25px;
  8037. background:inherit;
  8038. background-color:rgba(255, 255, 255, 1);
  8039. border:none;
  8040. border-radius:0px;
  8041. -moz-box-shadow:none;
  8042. -webkit-box-shadow:none;
  8043. box-shadow:none;
  8044. font-family:'Microsoft YaHei', sans-serif;
  8045. font-weight:400;
  8046. font-style:normal;
  8047. }
  8048. #u28334 {
  8049. border-width:0px;
  8050. position:absolute;
  8051. left:1434px;
  8052. top:1185px;
  8053. width:34px;
  8054. height:25px;
  8055. display:flex;
  8056. font-family:'Microsoft YaHei', sans-serif;
  8057. font-weight:400;
  8058. font-style:normal;
  8059. }
  8060. #u28334 .text {
  8061. position:absolute;
  8062. align-self:center;
  8063. padding:2px 2px 2px 2px;
  8064. box-sizing:border-box;
  8065. width:100%;
  8066. }
  8067. #u28334_div.disabled {
  8068. border-width:0px;
  8069. position:absolute;
  8070. left:0px;
  8071. top:0px;
  8072. width:34px;
  8073. height:25px;
  8074. background:inherit;
  8075. background-color:rgba(240, 240, 240, 1);
  8076. border:none;
  8077. border-radius:0px;
  8078. -moz-box-shadow:none;
  8079. -webkit-box-shadow:none;
  8080. box-shadow:none;
  8081. font-family:'Microsoft YaHei', sans-serif;
  8082. font-weight:400;
  8083. font-style:normal;
  8084. }
  8085. #u28334.disabled {
  8086. }
  8087. #u28335 {
  8088. border-width:0px;
  8089. position:absolute;
  8090. left:0px;
  8091. top:0px;
  8092. width:0px;
  8093. height:0px;
  8094. }
  8095. #u28336_div {
  8096. border-width:0px;
  8097. position:absolute;
  8098. left:0px;
  8099. top:0px;
  8100. width:160px;
  8101. height:30px;
  8102. background:inherit;
  8103. background-color:rgba(255, 255, 255, 1);
  8104. box-sizing:border-box;
  8105. border-width:1px;
  8106. border-style:solid;
  8107. border-color:rgba(215, 215, 215, 1);
  8108. border-radius:4px;
  8109. -moz-box-shadow:none;
  8110. -webkit-box-shadow:none;
  8111. box-shadow:none;
  8112. font-size:14px;
  8113. }
  8114. #u28336 {
  8115. border-width:0px;
  8116. position:absolute;
  8117. left:526px;
  8118. top:210px;
  8119. width:160px;
  8120. height:30px;
  8121. display:flex;
  8122. font-size:14px;
  8123. }
  8124. #u28336 .text {
  8125. position:absolute;
  8126. align-self:center;
  8127. padding:2px 2px 2px 2px;
  8128. box-sizing:border-box;
  8129. width:100%;
  8130. }
  8131. #u28336_text {
  8132. border-width:0px;
  8133. word-wrap:break-word;
  8134. text-transform:none;
  8135. visibility:hidden;
  8136. }
  8137. #u28337_input {
  8138. position:absolute;
  8139. left:0px;
  8140. top:0px;
  8141. width:153px;
  8142. height:23px;
  8143. padding:2px 2px 2px 2px;
  8144. font-family:'ArialMT', 'Arial', sans-serif;
  8145. font-weight:400;
  8146. font-style:normal;
  8147. font-size:14px;
  8148. letter-spacing:normal;
  8149. color:#AAAAAA;
  8150. vertical-align:none;
  8151. text-align:left;
  8152. text-transform:none;
  8153. background-color:transparent;
  8154. border-color:transparent;
  8155. }
  8156. #u28337_input.disabled {
  8157. position:absolute;
  8158. left:0px;
  8159. top:0px;
  8160. width:153px;
  8161. height:23px;
  8162. padding:2px 2px 2px 2px;
  8163. font-family:'ArialMT', 'Arial', sans-serif;
  8164. font-weight:400;
  8165. font-style:normal;
  8166. font-size:14px;
  8167. letter-spacing:normal;
  8168. color:#AAAAAA;
  8169. vertical-align:none;
  8170. text-align:left;
  8171. text-transform:none;
  8172. background-color:transparent;
  8173. border-color:transparent;
  8174. }
  8175. #u28337_div {
  8176. border-width:0px;
  8177. position:absolute;
  8178. left:0px;
  8179. top:0px;
  8180. width:153px;
  8181. height:23px;
  8182. background:inherit;
  8183. background-color:rgba(255, 255, 255, 1);
  8184. border:none;
  8185. border-radius:0px;
  8186. -moz-box-shadow:none;
  8187. -webkit-box-shadow:none;
  8188. box-shadow:none;
  8189. font-size:14px;
  8190. color:#AAAAAA;
  8191. }
  8192. #u28337 {
  8193. border-width:0px;
  8194. position:absolute;
  8195. left:531px;
  8196. top:212px;
  8197. width:153px;
  8198. height:23px;
  8199. display:flex;
  8200. font-size:14px;
  8201. color:#AAAAAA;
  8202. }
  8203. #u28337 .text {
  8204. position:absolute;
  8205. align-self:flex-start;
  8206. padding:2px 2px 2px 2px;
  8207. box-sizing:border-box;
  8208. width:100%;
  8209. }
  8210. #u28337_div.disabled {
  8211. border-width:0px;
  8212. position:absolute;
  8213. left:0px;
  8214. top:0px;
  8215. width:153px;
  8216. height:23px;
  8217. background:inherit;
  8218. background-color:rgba(240, 240, 240, 1);
  8219. border:none;
  8220. border-radius:0px;
  8221. -moz-box-shadow:none;
  8222. -webkit-box-shadow:none;
  8223. box-shadow:none;
  8224. font-size:14px;
  8225. color:#AAAAAA;
  8226. }
  8227. #u28337.disabled {
  8228. }
  8229. .u28337_input_option {
  8230. font-size:14px;
  8231. }
  8232. #u28338 {
  8233. border-width:0px;
  8234. position:absolute;
  8235. left:0px;
  8236. top:0px;
  8237. width:0px;
  8238. height:0px;
  8239. }
  8240. #u28339_div {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:0px;
  8244. top:0px;
  8245. width:160px;
  8246. height:30px;
  8247. background:inherit;
  8248. background-color:rgba(255, 255, 255, 1);
  8249. box-sizing:border-box;
  8250. border-width:1px;
  8251. border-style:solid;
  8252. border-color:rgba(215, 215, 215, 1);
  8253. border-radius:4px;
  8254. -moz-box-shadow:none;
  8255. -webkit-box-shadow:none;
  8256. box-shadow:none;
  8257. font-size:14px;
  8258. }
  8259. #u28339 {
  8260. border-width:0px;
  8261. position:absolute;
  8262. left:356px;
  8263. top:250px;
  8264. width:160px;
  8265. height:30px;
  8266. display:flex;
  8267. font-size:14px;
  8268. }
  8269. #u28339 .text {
  8270. position:absolute;
  8271. align-self:center;
  8272. padding:2px 2px 2px 2px;
  8273. box-sizing:border-box;
  8274. width:100%;
  8275. }
  8276. #u28339_text {
  8277. border-width:0px;
  8278. word-wrap:break-word;
  8279. text-transform:none;
  8280. visibility:hidden;
  8281. }
  8282. #u28340_input {
  8283. position:absolute;
  8284. left:0px;
  8285. top:0px;
  8286. width:153px;
  8287. height:23px;
  8288. padding:2px 2px 2px 2px;
  8289. font-family:'ArialMT', 'Arial', sans-serif;
  8290. font-weight:400;
  8291. font-style:normal;
  8292. font-size:14px;
  8293. letter-spacing:normal;
  8294. color:#AAAAAA;
  8295. vertical-align:none;
  8296. text-align:left;
  8297. text-transform:none;
  8298. background-color:transparent;
  8299. border-color:transparent;
  8300. }
  8301. #u28340_input.disabled {
  8302. position:absolute;
  8303. left:0px;
  8304. top:0px;
  8305. width:153px;
  8306. height:23px;
  8307. padding:2px 2px 2px 2px;
  8308. font-family:'ArialMT', 'Arial', sans-serif;
  8309. font-weight:400;
  8310. font-style:normal;
  8311. font-size:14px;
  8312. letter-spacing:normal;
  8313. color:#AAAAAA;
  8314. vertical-align:none;
  8315. text-align:left;
  8316. text-transform:none;
  8317. background-color:transparent;
  8318. border-color:transparent;
  8319. }
  8320. #u28340_div {
  8321. border-width:0px;
  8322. position:absolute;
  8323. left:0px;
  8324. top:0px;
  8325. width:153px;
  8326. height:23px;
  8327. background:inherit;
  8328. background-color:rgba(255, 255, 255, 1);
  8329. border:none;
  8330. border-radius:0px;
  8331. -moz-box-shadow:none;
  8332. -webkit-box-shadow:none;
  8333. box-shadow:none;
  8334. font-size:14px;
  8335. color:#AAAAAA;
  8336. }
  8337. #u28340 {
  8338. border-width:0px;
  8339. position:absolute;
  8340. left:361px;
  8341. top:252px;
  8342. width:153px;
  8343. height:23px;
  8344. display:flex;
  8345. font-size:14px;
  8346. color:#AAAAAA;
  8347. }
  8348. #u28340 .text {
  8349. position:absolute;
  8350. align-self:flex-start;
  8351. padding:2px 2px 2px 2px;
  8352. box-sizing:border-box;
  8353. width:100%;
  8354. }
  8355. #u28340_div.disabled {
  8356. border-width:0px;
  8357. position:absolute;
  8358. left:0px;
  8359. top:0px;
  8360. width:153px;
  8361. height:23px;
  8362. background:inherit;
  8363. background-color:rgba(240, 240, 240, 1);
  8364. border:none;
  8365. border-radius:0px;
  8366. -moz-box-shadow:none;
  8367. -webkit-box-shadow:none;
  8368. box-shadow:none;
  8369. font-size:14px;
  8370. color:#AAAAAA;
  8371. }
  8372. #u28340.disabled {
  8373. }
  8374. .u28340_input_option {
  8375. font-size:14px;
  8376. }