styles.css 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2309px;
  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. #u28789_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. #u28789 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u28789 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u28789_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u28790_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. #u28790 {
  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. #u28790 .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. #u28790_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u28791_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. #u28791 {
  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. #u28791 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u28791_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u28792 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u28793_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u28793 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u28793 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u28793_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u28794_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. #u28794 {
  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. #u28794 .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. #u28794_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u28795_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. #u28795 {
  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. #u28795 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u28795_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u28796 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u28797_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. #u28797 {
  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. #u28797 .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. #u28797_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u28798_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u28798 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u28798 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u28798_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u28799 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u28800_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. #u28800 {
  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. #u28800 .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. #u28800_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u28801_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u28801 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u28801 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u28801_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u28802 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u28803_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. #u28803 {
  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. #u28803 .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. #u28803_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u28804_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u28804 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u28804 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u28804_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u28805 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u28806_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. #u28806 {
  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. #u28806 .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. #u28806_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u28807_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u28807 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u28807 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u28807_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u28808 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u28809_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. #u28809 {
  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. #u28809 .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. #u28809_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u28810_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u28810 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u28810 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u28810_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u28811 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u28812_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. #u28812 {
  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. #u28812 .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. #u28812_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u28813_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u28813 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u28813 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u28813_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u28814 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u28815_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. #u28815 {
  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. #u28815 .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. #u28815_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u28816_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u28816 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u28816 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u28816_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u28817 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u28818_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. #u28818 {
  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. #u28818 .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. #u28818_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u28819_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u28819 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u28819 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u28819_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u28820 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u28821_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. #u28821 {
  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. #u28821 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u28821_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u28822_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u28822 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u28822 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u28822_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u28823 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u28824_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. #u28824 {
  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. #u28824 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u28824_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u28825_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u28825 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u28825 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u28825_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u28826 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u28827_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. #u28827 {
  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. #u28827 .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. #u28827_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u28828_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u28828 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u28828 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u28828_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u28829 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u28830_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. #u28830_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. #u28830_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. #u28830 {
  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. #u28830 .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. #u28830_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. #u28830.disabled {
  1276. }
  1277. .u28830_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u28831_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u28831 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u28831 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u28831_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u28832_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. #u28832 {
  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. #u28832 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u28832_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u28833_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u28833 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u28833 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u28833_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u28834 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u28835_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. #u28835 {
  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. #u28835 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u28835_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u28836_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u28836 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u28836 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u28836_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u28837_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u28837 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u28837 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u28837_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u28838_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u28838 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u28838 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u28838_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u28839_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u28839 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u28839 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u28839_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u28840 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u28841_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. #u28841 {
  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. #u28841 .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. #u28841_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u28842_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u28842 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u28842 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u28842_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u28843_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1260px;
  1648. height:1180px;
  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. #u28843 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:332px;
  1664. top:50px;
  1665. width:1260px;
  1666. height:1180px;
  1667. display:flex;
  1668. }
  1669. #u28843 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:2px 2px 2px 2px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u28843_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. visibility:hidden;
  1681. }
  1682. #u28844_img {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:0px;
  1686. top:0px;
  1687. width:1261px;
  1688. height:2px;
  1689. }
  1690. #u28844 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:332px;
  1694. top:99px;
  1695. width:1260px;
  1696. height:1px;
  1697. display:flex;
  1698. }
  1699. #u28844 .text {
  1700. position:absolute;
  1701. align-self:center;
  1702. padding:2px 2px 2px 2px;
  1703. box-sizing:border-box;
  1704. width:100%;
  1705. }
  1706. #u28844_text {
  1707. border-width:0px;
  1708. word-wrap:break-word;
  1709. text-transform:none;
  1710. visibility:hidden;
  1711. }
  1712. #u28845 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:360px;
  1716. top:255px;
  1717. width:1204px;
  1718. height:458px;
  1719. }
  1720. #u28846_img {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:201px;
  1726. height:35px;
  1727. }
  1728. #u28846 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:0px;
  1732. top:0px;
  1733. width:201px;
  1734. height:35px;
  1735. display:flex;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:14px;
  1740. color:#FFFFFF;
  1741. }
  1742. #u28846 .text {
  1743. position:absolute;
  1744. align-self:center;
  1745. padding:2px 2px 2px 2px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u28846_text {
  1750. border-width:0px;
  1751. word-wrap:break-word;
  1752. text-transform:none;
  1753. }
  1754. #u28847_img {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:120px;
  1760. height:35px;
  1761. }
  1762. #u28847 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:201px;
  1766. top:0px;
  1767. width:120px;
  1768. height:35px;
  1769. display:flex;
  1770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1771. font-weight:400;
  1772. font-style:normal;
  1773. font-size:14px;
  1774. color:#FFFFFF;
  1775. }
  1776. #u28847 .text {
  1777. position:absolute;
  1778. align-self:center;
  1779. padding:2px 2px 2px 2px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u28847_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. }
  1788. #u28848_img {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:426px;
  1794. height:35px;
  1795. }
  1796. #u28848 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:321px;
  1800. top:0px;
  1801. width:426px;
  1802. height:35px;
  1803. display:flex;
  1804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1805. font-weight:400;
  1806. font-style:normal;
  1807. font-size:14px;
  1808. color:#FFFFFF;
  1809. }
  1810. #u28848 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:2px 2px 2px 2px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u28848_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. }
  1822. #u28849_img {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:0px;
  1826. top:0px;
  1827. width:120px;
  1828. height:35px;
  1829. }
  1830. #u28849 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:747px;
  1834. top:0px;
  1835. width:120px;
  1836. height:35px;
  1837. display:flex;
  1838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1839. font-weight:400;
  1840. font-style:normal;
  1841. font-size:14px;
  1842. color:#FFFFFF;
  1843. }
  1844. #u28849 .text {
  1845. position:absolute;
  1846. align-self:center;
  1847. padding:2px 2px 2px 2px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u28849_text {
  1852. border-width:0px;
  1853. word-wrap:break-word;
  1854. text-transform:none;
  1855. }
  1856. #u28850_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:192px;
  1862. height:35px;
  1863. }
  1864. #u28850 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:867px;
  1868. top:0px;
  1869. width:192px;
  1870. height:35px;
  1871. display:flex;
  1872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1873. font-weight:400;
  1874. font-style:normal;
  1875. font-size:14px;
  1876. color:#FFFFFF;
  1877. }
  1878. #u28850 .text {
  1879. position:absolute;
  1880. align-self:center;
  1881. padding:2px 2px 2px 2px;
  1882. box-sizing:border-box;
  1883. width:100%;
  1884. }
  1885. #u28850_text {
  1886. border-width:0px;
  1887. word-wrap:break-word;
  1888. text-transform:none;
  1889. }
  1890. #u28851_img {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:145px;
  1896. height:35px;
  1897. }
  1898. #u28851 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:1059px;
  1902. top:0px;
  1903. width:145px;
  1904. height:35px;
  1905. display:flex;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:14px;
  1910. color:#FFFFFF;
  1911. }
  1912. #u28851 .text {
  1913. position:absolute;
  1914. align-self:center;
  1915. padding:2px 2px 2px 2px;
  1916. box-sizing:border-box;
  1917. width:100%;
  1918. }
  1919. #u28851_text {
  1920. border-width:0px;
  1921. word-wrap:break-word;
  1922. text-transform:none;
  1923. }
  1924. #u28852_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:201px;
  1930. height:35px;
  1931. }
  1932. #u28852 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:35px;
  1937. width:201px;
  1938. height:35px;
  1939. display:flex;
  1940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1941. font-weight:400;
  1942. font-style:normal;
  1943. font-size:14px;
  1944. }
  1945. #u28852 .text {
  1946. position:absolute;
  1947. align-self:center;
  1948. padding:2px 2px 2px 2px;
  1949. box-sizing:border-box;
  1950. width:100%;
  1951. }
  1952. #u28852_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. visibility:hidden;
  1957. }
  1958. #u28853_img {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:120px;
  1964. height:35px;
  1965. }
  1966. #u28853 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:201px;
  1970. top:35px;
  1971. width:120px;
  1972. height:35px;
  1973. display:flex;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:14px;
  1978. }
  1979. #u28853 .text {
  1980. position:absolute;
  1981. align-self:center;
  1982. padding:2px 2px 2px 2px;
  1983. box-sizing:border-box;
  1984. width:100%;
  1985. }
  1986. #u28853_text {
  1987. border-width:0px;
  1988. word-wrap:break-word;
  1989. text-transform:none;
  1990. }
  1991. #u28854_img {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:426px;
  1997. height:35px;
  1998. }
  1999. #u28854 {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:321px;
  2003. top:35px;
  2004. width:426px;
  2005. height:35px;
  2006. display:flex;
  2007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2008. font-weight:400;
  2009. font-style:normal;
  2010. font-size:14px;
  2011. }
  2012. #u28854 .text {
  2013. position:absolute;
  2014. align-self:center;
  2015. padding:2px 2px 2px 2px;
  2016. box-sizing:border-box;
  2017. width:100%;
  2018. }
  2019. #u28854_text {
  2020. border-width:0px;
  2021. word-wrap:break-word;
  2022. text-transform:none;
  2023. }
  2024. #u28855_img {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:0px;
  2028. top:0px;
  2029. width:120px;
  2030. height:35px;
  2031. }
  2032. #u28855 {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:747px;
  2036. top:35px;
  2037. width:120px;
  2038. height:35px;
  2039. display:flex;
  2040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2041. font-weight:400;
  2042. font-style:normal;
  2043. font-size:14px;
  2044. }
  2045. #u28855 .text {
  2046. position:absolute;
  2047. align-self:center;
  2048. padding:2px 2px 2px 2px;
  2049. box-sizing:border-box;
  2050. width:100%;
  2051. }
  2052. #u28855_text {
  2053. border-width:0px;
  2054. word-wrap:break-word;
  2055. text-transform:none;
  2056. }
  2057. #u28856_img {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:192px;
  2063. height:35px;
  2064. }
  2065. #u28856 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:867px;
  2069. top:35px;
  2070. width:192px;
  2071. height:35px;
  2072. display:flex;
  2073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:14px;
  2077. }
  2078. #u28856 .text {
  2079. position:absolute;
  2080. align-self:center;
  2081. padding:2px 2px 2px 2px;
  2082. box-sizing:border-box;
  2083. width:100%;
  2084. }
  2085. #u28856_text {
  2086. border-width:0px;
  2087. word-wrap:break-word;
  2088. text-transform:none;
  2089. }
  2090. #u28857_img {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:145px;
  2096. height:35px;
  2097. }
  2098. #u28857 {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:1059px;
  2102. top:35px;
  2103. width:145px;
  2104. height:35px;
  2105. display:flex;
  2106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:14px;
  2110. color:#298FFF;
  2111. }
  2112. #u28857 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:2px 2px 2px 2px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u28857_text {
  2120. border-width:0px;
  2121. word-wrap:break-word;
  2122. text-transform:none;
  2123. }
  2124. #u28858_img {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:201px;
  2130. height:35px;
  2131. }
  2132. #u28858 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:70px;
  2137. width:201px;
  2138. height:35px;
  2139. display:flex;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:14px;
  2144. }
  2145. #u28858 .text {
  2146. position:absolute;
  2147. align-self:center;
  2148. padding:2px 2px 2px 2px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u28858_text {
  2153. border-width:0px;
  2154. word-wrap:break-word;
  2155. text-transform:none;
  2156. visibility:hidden;
  2157. }
  2158. #u28859_img {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:120px;
  2164. height:35px;
  2165. }
  2166. #u28859 {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:201px;
  2170. top:70px;
  2171. width:120px;
  2172. height:35px;
  2173. display:flex;
  2174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2175. font-weight:400;
  2176. font-style:normal;
  2177. font-size:14px;
  2178. }
  2179. #u28859 .text {
  2180. position:absolute;
  2181. align-self:center;
  2182. padding:2px 2px 2px 2px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u28859_text {
  2187. border-width:0px;
  2188. word-wrap:break-word;
  2189. text-transform:none;
  2190. }
  2191. #u28860_img {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:426px;
  2197. height:35px;
  2198. }
  2199. #u28860 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:321px;
  2203. top:70px;
  2204. width:426px;
  2205. height:35px;
  2206. display:flex;
  2207. font-size:14px;
  2208. }
  2209. #u28860 .text {
  2210. position:absolute;
  2211. align-self:center;
  2212. padding:2px 2px 2px 2px;
  2213. box-sizing:border-box;
  2214. width:100%;
  2215. }
  2216. #u28860_text {
  2217. border-width:0px;
  2218. word-wrap:break-word;
  2219. text-transform:none;
  2220. }
  2221. #u28861_img {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:120px;
  2227. height:35px;
  2228. }
  2229. #u28861 {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:747px;
  2233. top:70px;
  2234. width:120px;
  2235. height:35px;
  2236. display:flex;
  2237. font-size:14px;
  2238. }
  2239. #u28861 .text {
  2240. position:absolute;
  2241. align-self:center;
  2242. padding:2px 2px 2px 2px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u28861_text {
  2247. border-width:0px;
  2248. word-wrap:break-word;
  2249. text-transform:none;
  2250. }
  2251. #u28862_img {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:192px;
  2257. height:35px;
  2258. }
  2259. #u28862 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:867px;
  2263. top:70px;
  2264. width:192px;
  2265. height:35px;
  2266. display:flex;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. font-size:14px;
  2271. }
  2272. #u28862 .text {
  2273. position:absolute;
  2274. align-self:center;
  2275. padding:2px 2px 2px 2px;
  2276. box-sizing:border-box;
  2277. width:100%;
  2278. }
  2279. #u28862_text {
  2280. border-width:0px;
  2281. word-wrap:break-word;
  2282. text-transform:none;
  2283. }
  2284. #u28863_img {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:145px;
  2290. height:35px;
  2291. }
  2292. #u28863 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:1059px;
  2296. top:70px;
  2297. width:145px;
  2298. height:35px;
  2299. display:flex;
  2300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:14px;
  2304. color:#298FFF;
  2305. }
  2306. #u28863 .text {
  2307. position:absolute;
  2308. align-self:center;
  2309. padding:2px 2px 2px 2px;
  2310. box-sizing:border-box;
  2311. width:100%;
  2312. }
  2313. #u28863_text {
  2314. border-width:0px;
  2315. word-wrap:break-word;
  2316. text-transform:none;
  2317. }
  2318. #u28864_img {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:201px;
  2324. height:35px;
  2325. }
  2326. #u28864 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:105px;
  2331. width:201px;
  2332. height:35px;
  2333. display:flex;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:14px;
  2338. }
  2339. #u28864 .text {
  2340. position:absolute;
  2341. align-self:center;
  2342. padding:2px 2px 2px 2px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u28864_text {
  2347. border-width:0px;
  2348. word-wrap:break-word;
  2349. text-transform:none;
  2350. visibility:hidden;
  2351. }
  2352. #u28865_img {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:120px;
  2358. height:35px;
  2359. }
  2360. #u28865 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:201px;
  2364. top:105px;
  2365. width:120px;
  2366. height:35px;
  2367. display:flex;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:14px;
  2372. }
  2373. #u28865 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 2px 2px 2px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u28865_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. visibility:hidden;
  2385. }
  2386. #u28866_img {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:426px;
  2392. height:35px;
  2393. }
  2394. #u28866 {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:321px;
  2398. top:105px;
  2399. width:426px;
  2400. height:35px;
  2401. display:flex;
  2402. font-size:14px;
  2403. }
  2404. #u28866 .text {
  2405. position:absolute;
  2406. align-self:center;
  2407. padding:2px 2px 2px 2px;
  2408. box-sizing:border-box;
  2409. width:100%;
  2410. }
  2411. #u28866_text {
  2412. border-width:0px;
  2413. word-wrap:break-word;
  2414. text-transform:none;
  2415. visibility:hidden;
  2416. }
  2417. #u28867_img {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:120px;
  2423. height:35px;
  2424. }
  2425. #u28867 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:747px;
  2429. top:105px;
  2430. width:120px;
  2431. height:35px;
  2432. display:flex;
  2433. font-size:14px;
  2434. }
  2435. #u28867 .text {
  2436. position:absolute;
  2437. align-self:center;
  2438. padding:2px 2px 2px 2px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u28867_text {
  2443. border-width:0px;
  2444. word-wrap:break-word;
  2445. text-transform:none;
  2446. visibility:hidden;
  2447. }
  2448. #u28868_img {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:0px;
  2452. top:0px;
  2453. width:192px;
  2454. height:35px;
  2455. }
  2456. #u28868 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:867px;
  2460. top:105px;
  2461. width:192px;
  2462. height:35px;
  2463. display:flex;
  2464. font-size:14px;
  2465. }
  2466. #u28868 .text {
  2467. position:absolute;
  2468. align-self:center;
  2469. padding:2px 2px 2px 2px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u28868_text {
  2474. border-width:0px;
  2475. word-wrap:break-word;
  2476. text-transform:none;
  2477. visibility:hidden;
  2478. }
  2479. #u28869_img {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:145px;
  2485. height:35px;
  2486. }
  2487. #u28869 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:1059px;
  2491. top:105px;
  2492. width:145px;
  2493. height:35px;
  2494. display:flex;
  2495. font-size:14px;
  2496. }
  2497. #u28869 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 2px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u28869_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. visibility:hidden;
  2509. }
  2510. #u28870_img {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:201px;
  2516. height:38px;
  2517. }
  2518. #u28870 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:0px;
  2522. top:140px;
  2523. width:201px;
  2524. height:38px;
  2525. display:flex;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:14px;
  2530. }
  2531. #u28870 .text {
  2532. position:absolute;
  2533. align-self:center;
  2534. padding:2px 2px 2px 2px;
  2535. box-sizing:border-box;
  2536. width:100%;
  2537. }
  2538. #u28870_text {
  2539. border-width:0px;
  2540. word-wrap:break-word;
  2541. text-transform:none;
  2542. visibility:hidden;
  2543. }
  2544. #u28871_img {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:120px;
  2550. height:38px;
  2551. }
  2552. #u28871 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:201px;
  2556. top:140px;
  2557. width:120px;
  2558. height:38px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:14px;
  2564. }
  2565. #u28871 .text {
  2566. position:absolute;
  2567. align-self:center;
  2568. padding:2px 2px 2px 2px;
  2569. box-sizing:border-box;
  2570. width:100%;
  2571. }
  2572. #u28871_text {
  2573. border-width:0px;
  2574. word-wrap:break-word;
  2575. text-transform:none;
  2576. visibility:hidden;
  2577. }
  2578. #u28872_img {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:426px;
  2584. height:38px;
  2585. }
  2586. #u28872 {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:321px;
  2590. top:140px;
  2591. width:426px;
  2592. height:38px;
  2593. display:flex;
  2594. font-size:14px;
  2595. }
  2596. #u28872 .text {
  2597. position:absolute;
  2598. align-self:center;
  2599. padding:2px 2px 2px 2px;
  2600. box-sizing:border-box;
  2601. width:100%;
  2602. }
  2603. #u28872_text {
  2604. border-width:0px;
  2605. word-wrap:break-word;
  2606. text-transform:none;
  2607. visibility:hidden;
  2608. }
  2609. #u28873_img {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:120px;
  2615. height:38px;
  2616. }
  2617. #u28873 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:747px;
  2621. top:140px;
  2622. width:120px;
  2623. height:38px;
  2624. display:flex;
  2625. font-size:14px;
  2626. }
  2627. #u28873 .text {
  2628. position:absolute;
  2629. align-self:center;
  2630. padding:2px 2px 2px 2px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u28873_text {
  2635. border-width:0px;
  2636. word-wrap:break-word;
  2637. text-transform:none;
  2638. visibility:hidden;
  2639. }
  2640. #u28874_img {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:192px;
  2646. height:38px;
  2647. }
  2648. #u28874 {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:867px;
  2652. top:140px;
  2653. width:192px;
  2654. height:38px;
  2655. display:flex;
  2656. font-size:14px;
  2657. }
  2658. #u28874 .text {
  2659. position:absolute;
  2660. align-self:center;
  2661. padding:2px 2px 2px 2px;
  2662. box-sizing:border-box;
  2663. width:100%;
  2664. }
  2665. #u28874_text {
  2666. border-width:0px;
  2667. word-wrap:break-word;
  2668. text-transform:none;
  2669. visibility:hidden;
  2670. }
  2671. #u28875_img {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:145px;
  2677. height:38px;
  2678. }
  2679. #u28875 {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:1059px;
  2683. top:140px;
  2684. width:145px;
  2685. height:38px;
  2686. display:flex;
  2687. font-size:14px;
  2688. }
  2689. #u28875 .text {
  2690. position:absolute;
  2691. align-self:center;
  2692. padding:2px 2px 2px 2px;
  2693. box-sizing:border-box;
  2694. width:100%;
  2695. }
  2696. #u28875_text {
  2697. border-width:0px;
  2698. word-wrap:break-word;
  2699. text-transform:none;
  2700. visibility:hidden;
  2701. }
  2702. #u28876_img {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:201px;
  2708. height:35px;
  2709. }
  2710. #u28876 {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:178px;
  2715. width:201px;
  2716. height:35px;
  2717. display:flex;
  2718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2719. font-weight:400;
  2720. font-style:normal;
  2721. font-size:14px;
  2722. }
  2723. #u28876 .text {
  2724. position:absolute;
  2725. align-self:center;
  2726. padding:2px 2px 2px 2px;
  2727. box-sizing:border-box;
  2728. width:100%;
  2729. }
  2730. #u28876_text {
  2731. border-width:0px;
  2732. word-wrap:break-word;
  2733. text-transform:none;
  2734. visibility:hidden;
  2735. }
  2736. #u28877_img {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:0px;
  2740. top:0px;
  2741. width:120px;
  2742. height:35px;
  2743. }
  2744. #u28877 {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:201px;
  2748. top:178px;
  2749. width:120px;
  2750. height:35px;
  2751. display:flex;
  2752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2753. font-weight:400;
  2754. font-style:normal;
  2755. font-size:14px;
  2756. }
  2757. #u28877 .text {
  2758. position:absolute;
  2759. align-self:center;
  2760. padding:2px 2px 2px 2px;
  2761. box-sizing:border-box;
  2762. width:100%;
  2763. }
  2764. #u28877_text {
  2765. border-width:0px;
  2766. word-wrap:break-word;
  2767. text-transform:none;
  2768. visibility:hidden;
  2769. }
  2770. #u28878_img {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:426px;
  2776. height:35px;
  2777. }
  2778. #u28878 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:321px;
  2782. top:178px;
  2783. width:426px;
  2784. height:35px;
  2785. display:flex;
  2786. font-size:14px;
  2787. }
  2788. #u28878 .text {
  2789. position:absolute;
  2790. align-self:center;
  2791. padding:2px 2px 2px 2px;
  2792. box-sizing:border-box;
  2793. width:100%;
  2794. }
  2795. #u28878_text {
  2796. border-width:0px;
  2797. word-wrap:break-word;
  2798. text-transform:none;
  2799. visibility:hidden;
  2800. }
  2801. #u28879_img {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:120px;
  2807. height:35px;
  2808. }
  2809. #u28879 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:747px;
  2813. top:178px;
  2814. width:120px;
  2815. height:35px;
  2816. display:flex;
  2817. font-size:14px;
  2818. }
  2819. #u28879 .text {
  2820. position:absolute;
  2821. align-self:center;
  2822. padding:2px 2px 2px 2px;
  2823. box-sizing:border-box;
  2824. width:100%;
  2825. }
  2826. #u28879_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. visibility:hidden;
  2831. }
  2832. #u28880_img {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:192px;
  2838. height:35px;
  2839. }
  2840. #u28880 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:867px;
  2844. top:178px;
  2845. width:192px;
  2846. height:35px;
  2847. display:flex;
  2848. font-size:14px;
  2849. }
  2850. #u28880 .text {
  2851. position:absolute;
  2852. align-self:center;
  2853. padding:2px 2px 2px 2px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u28880_text {
  2858. border-width:0px;
  2859. word-wrap:break-word;
  2860. text-transform:none;
  2861. visibility:hidden;
  2862. }
  2863. #u28881_img {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:145px;
  2869. height:35px;
  2870. }
  2871. #u28881 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:1059px;
  2875. top:178px;
  2876. width:145px;
  2877. height:35px;
  2878. display:flex;
  2879. font-size:14px;
  2880. }
  2881. #u28881 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:2px 2px 2px 2px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u28881_text {
  2889. border-width:0px;
  2890. word-wrap:break-word;
  2891. text-transform:none;
  2892. visibility:hidden;
  2893. }
  2894. #u28882_img {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:201px;
  2900. height:35px;
  2901. }
  2902. #u28882 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:213px;
  2907. width:201px;
  2908. height:35px;
  2909. display:flex;
  2910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2911. font-weight:400;
  2912. font-style:normal;
  2913. font-size:14px;
  2914. }
  2915. #u28882 .text {
  2916. position:absolute;
  2917. align-self:center;
  2918. padding:2px 2px 2px 2px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u28882_text {
  2923. border-width:0px;
  2924. word-wrap:break-word;
  2925. text-transform:none;
  2926. visibility:hidden;
  2927. }
  2928. #u28883_img {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:120px;
  2934. height:35px;
  2935. }
  2936. #u28883 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:201px;
  2940. top:213px;
  2941. width:120px;
  2942. height:35px;
  2943. display:flex;
  2944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:14px;
  2948. }
  2949. #u28883 .text {
  2950. position:absolute;
  2951. align-self:center;
  2952. padding:2px 2px 2px 2px;
  2953. box-sizing:border-box;
  2954. width:100%;
  2955. }
  2956. #u28883_text {
  2957. border-width:0px;
  2958. word-wrap:break-word;
  2959. text-transform:none;
  2960. visibility:hidden;
  2961. }
  2962. #u28884_img {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:426px;
  2968. height:35px;
  2969. }
  2970. #u28884 {
  2971. border-width:0px;
  2972. position:absolute;
  2973. left:321px;
  2974. top:213px;
  2975. width:426px;
  2976. height:35px;
  2977. display:flex;
  2978. font-size:14px;
  2979. }
  2980. #u28884 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:2px 2px 2px 2px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u28884_text {
  2988. border-width:0px;
  2989. word-wrap:break-word;
  2990. text-transform:none;
  2991. visibility:hidden;
  2992. }
  2993. #u28885_img {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:120px;
  2999. height:35px;
  3000. }
  3001. #u28885 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:747px;
  3005. top:213px;
  3006. width:120px;
  3007. height:35px;
  3008. display:flex;
  3009. font-size:14px;
  3010. }
  3011. #u28885 .text {
  3012. position:absolute;
  3013. align-self:center;
  3014. padding:2px 2px 2px 2px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u28885_text {
  3019. border-width:0px;
  3020. word-wrap:break-word;
  3021. text-transform:none;
  3022. visibility:hidden;
  3023. }
  3024. #u28886_img {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:192px;
  3030. height:35px;
  3031. }
  3032. #u28886 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:867px;
  3036. top:213px;
  3037. width:192px;
  3038. height:35px;
  3039. display:flex;
  3040. font-size:14px;
  3041. }
  3042. #u28886 .text {
  3043. position:absolute;
  3044. align-self:center;
  3045. padding:2px 2px 2px 2px;
  3046. box-sizing:border-box;
  3047. width:100%;
  3048. }
  3049. #u28886_text {
  3050. border-width:0px;
  3051. word-wrap:break-word;
  3052. text-transform:none;
  3053. visibility:hidden;
  3054. }
  3055. #u28887_img {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:145px;
  3061. height:35px;
  3062. }
  3063. #u28887 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:1059px;
  3067. top:213px;
  3068. width:145px;
  3069. height:35px;
  3070. display:flex;
  3071. font-size:14px;
  3072. }
  3073. #u28887 .text {
  3074. position:absolute;
  3075. align-self:center;
  3076. padding:2px 2px 2px 2px;
  3077. box-sizing:border-box;
  3078. width:100%;
  3079. }
  3080. #u28887_text {
  3081. border-width:0px;
  3082. word-wrap:break-word;
  3083. text-transform:none;
  3084. visibility:hidden;
  3085. }
  3086. #u28888_img {
  3087. border-width:0px;
  3088. position:absolute;
  3089. left:0px;
  3090. top:0px;
  3091. width:201px;
  3092. height:35px;
  3093. }
  3094. #u28888 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:0px;
  3098. top:248px;
  3099. width:201px;
  3100. height:35px;
  3101. display:flex;
  3102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3103. font-weight:400;
  3104. font-style:normal;
  3105. font-size:14px;
  3106. }
  3107. #u28888 .text {
  3108. position:absolute;
  3109. align-self:center;
  3110. padding:2px 2px 2px 2px;
  3111. box-sizing:border-box;
  3112. width:100%;
  3113. }
  3114. #u28888_text {
  3115. border-width:0px;
  3116. word-wrap:break-word;
  3117. text-transform:none;
  3118. visibility:hidden;
  3119. }
  3120. #u28889_img {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:120px;
  3126. height:35px;
  3127. }
  3128. #u28889 {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:201px;
  3132. top:248px;
  3133. width:120px;
  3134. height:35px;
  3135. display:flex;
  3136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3137. font-weight:400;
  3138. font-style:normal;
  3139. font-size:14px;
  3140. }
  3141. #u28889 .text {
  3142. position:absolute;
  3143. align-self:center;
  3144. padding:2px 2px 2px 2px;
  3145. box-sizing:border-box;
  3146. width:100%;
  3147. }
  3148. #u28889_text {
  3149. border-width:0px;
  3150. word-wrap:break-word;
  3151. text-transform:none;
  3152. visibility:hidden;
  3153. }
  3154. #u28890_img {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:426px;
  3160. height:35px;
  3161. }
  3162. #u28890 {
  3163. border-width:0px;
  3164. position:absolute;
  3165. left:321px;
  3166. top:248px;
  3167. width:426px;
  3168. height:35px;
  3169. display:flex;
  3170. font-size:14px;
  3171. }
  3172. #u28890 .text {
  3173. position:absolute;
  3174. align-self:center;
  3175. padding:2px 2px 2px 2px;
  3176. box-sizing:border-box;
  3177. width:100%;
  3178. }
  3179. #u28890_text {
  3180. border-width:0px;
  3181. word-wrap:break-word;
  3182. text-transform:none;
  3183. visibility:hidden;
  3184. }
  3185. #u28891_img {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:0px;
  3189. top:0px;
  3190. width:120px;
  3191. height:35px;
  3192. }
  3193. #u28891 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:747px;
  3197. top:248px;
  3198. width:120px;
  3199. height:35px;
  3200. display:flex;
  3201. font-size:14px;
  3202. }
  3203. #u28891 .text {
  3204. position:absolute;
  3205. align-self:center;
  3206. padding:2px 2px 2px 2px;
  3207. box-sizing:border-box;
  3208. width:100%;
  3209. }
  3210. #u28891_text {
  3211. border-width:0px;
  3212. word-wrap:break-word;
  3213. text-transform:none;
  3214. visibility:hidden;
  3215. }
  3216. #u28892_img {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:0px;
  3220. top:0px;
  3221. width:192px;
  3222. height:35px;
  3223. }
  3224. #u28892 {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:867px;
  3228. top:248px;
  3229. width:192px;
  3230. height:35px;
  3231. display:flex;
  3232. font-size:14px;
  3233. }
  3234. #u28892 .text {
  3235. position:absolute;
  3236. align-self:center;
  3237. padding:2px 2px 2px 2px;
  3238. box-sizing:border-box;
  3239. width:100%;
  3240. }
  3241. #u28892_text {
  3242. border-width:0px;
  3243. word-wrap:break-word;
  3244. text-transform:none;
  3245. visibility:hidden;
  3246. }
  3247. #u28893_img {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:0px;
  3251. top:0px;
  3252. width:145px;
  3253. height:35px;
  3254. }
  3255. #u28893 {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:1059px;
  3259. top:248px;
  3260. width:145px;
  3261. height:35px;
  3262. display:flex;
  3263. font-size:14px;
  3264. }
  3265. #u28893 .text {
  3266. position:absolute;
  3267. align-self:center;
  3268. padding:2px 2px 2px 2px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u28893_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. visibility:hidden;
  3277. }
  3278. #u28894_img {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:201px;
  3284. height:35px;
  3285. }
  3286. #u28894 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:0px;
  3290. top:283px;
  3291. width:201px;
  3292. height:35px;
  3293. display:flex;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:14px;
  3298. }
  3299. #u28894 .text {
  3300. position:absolute;
  3301. align-self:center;
  3302. padding:2px 2px 2px 2px;
  3303. box-sizing:border-box;
  3304. width:100%;
  3305. }
  3306. #u28894_text {
  3307. border-width:0px;
  3308. word-wrap:break-word;
  3309. text-transform:none;
  3310. visibility:hidden;
  3311. }
  3312. #u28895_img {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:120px;
  3318. height:35px;
  3319. }
  3320. #u28895 {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:201px;
  3324. top:283px;
  3325. width:120px;
  3326. height:35px;
  3327. display:flex;
  3328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3329. font-weight:400;
  3330. font-style:normal;
  3331. font-size:14px;
  3332. }
  3333. #u28895 .text {
  3334. position:absolute;
  3335. align-self:center;
  3336. padding:2px 2px 2px 2px;
  3337. box-sizing:border-box;
  3338. width:100%;
  3339. }
  3340. #u28895_text {
  3341. border-width:0px;
  3342. word-wrap:break-word;
  3343. text-transform:none;
  3344. visibility:hidden;
  3345. }
  3346. #u28896_img {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:0px;
  3350. top:0px;
  3351. width:426px;
  3352. height:35px;
  3353. }
  3354. #u28896 {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:321px;
  3358. top:283px;
  3359. width:426px;
  3360. height:35px;
  3361. display:flex;
  3362. font-size:14px;
  3363. }
  3364. #u28896 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 2px 2px 2px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u28896_text {
  3372. border-width:0px;
  3373. word-wrap:break-word;
  3374. text-transform:none;
  3375. visibility:hidden;
  3376. }
  3377. #u28897_img {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:120px;
  3383. height:35px;
  3384. }
  3385. #u28897 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:747px;
  3389. top:283px;
  3390. width:120px;
  3391. height:35px;
  3392. display:flex;
  3393. font-size:14px;
  3394. }
  3395. #u28897 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 2px 2px 2px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u28897_text {
  3403. border-width:0px;
  3404. word-wrap:break-word;
  3405. text-transform:none;
  3406. visibility:hidden;
  3407. }
  3408. #u28898_img {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:192px;
  3414. height:35px;
  3415. }
  3416. #u28898 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:867px;
  3420. top:283px;
  3421. width:192px;
  3422. height:35px;
  3423. display:flex;
  3424. font-size:14px;
  3425. }
  3426. #u28898 .text {
  3427. position:absolute;
  3428. align-self:center;
  3429. padding:2px 2px 2px 2px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u28898_text {
  3434. border-width:0px;
  3435. word-wrap:break-word;
  3436. text-transform:none;
  3437. visibility:hidden;
  3438. }
  3439. #u28899_img {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:0px;
  3443. top:0px;
  3444. width:145px;
  3445. height:35px;
  3446. }
  3447. #u28899 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:1059px;
  3451. top:283px;
  3452. width:145px;
  3453. height:35px;
  3454. display:flex;
  3455. font-size:14px;
  3456. }
  3457. #u28899 .text {
  3458. position:absolute;
  3459. align-self:center;
  3460. padding:2px 2px 2px 2px;
  3461. box-sizing:border-box;
  3462. width:100%;
  3463. }
  3464. #u28899_text {
  3465. border-width:0px;
  3466. word-wrap:break-word;
  3467. text-transform:none;
  3468. visibility:hidden;
  3469. }
  3470. #u28900_img {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:0px;
  3474. top:0px;
  3475. width:201px;
  3476. height:35px;
  3477. }
  3478. #u28900 {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:0px;
  3482. top:318px;
  3483. width:201px;
  3484. height:35px;
  3485. display:flex;
  3486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3487. font-weight:400;
  3488. font-style:normal;
  3489. font-size:14px;
  3490. }
  3491. #u28900 .text {
  3492. position:absolute;
  3493. align-self:center;
  3494. padding:2px 2px 2px 2px;
  3495. box-sizing:border-box;
  3496. width:100%;
  3497. }
  3498. #u28900_text {
  3499. border-width:0px;
  3500. word-wrap:break-word;
  3501. text-transform:none;
  3502. visibility:hidden;
  3503. }
  3504. #u28901_img {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:120px;
  3510. height:35px;
  3511. }
  3512. #u28901 {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:201px;
  3516. top:318px;
  3517. width:120px;
  3518. height:35px;
  3519. display:flex;
  3520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3521. font-weight:400;
  3522. font-style:normal;
  3523. font-size:14px;
  3524. }
  3525. #u28901 .text {
  3526. position:absolute;
  3527. align-self:center;
  3528. padding:2px 2px 2px 2px;
  3529. box-sizing:border-box;
  3530. width:100%;
  3531. }
  3532. #u28901_text {
  3533. border-width:0px;
  3534. word-wrap:break-word;
  3535. text-transform:none;
  3536. visibility:hidden;
  3537. }
  3538. #u28902_img {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:426px;
  3544. height:35px;
  3545. }
  3546. #u28902 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:321px;
  3550. top:318px;
  3551. width:426px;
  3552. height:35px;
  3553. display:flex;
  3554. font-size:14px;
  3555. }
  3556. #u28902 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:2px 2px 2px 2px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u28902_text {
  3564. border-width:0px;
  3565. word-wrap:break-word;
  3566. text-transform:none;
  3567. visibility:hidden;
  3568. }
  3569. #u28903_img {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:120px;
  3575. height:35px;
  3576. }
  3577. #u28903 {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:747px;
  3581. top:318px;
  3582. width:120px;
  3583. height:35px;
  3584. display:flex;
  3585. font-size:14px;
  3586. }
  3587. #u28903 .text {
  3588. position:absolute;
  3589. align-self:center;
  3590. padding:2px 2px 2px 2px;
  3591. box-sizing:border-box;
  3592. width:100%;
  3593. }
  3594. #u28903_text {
  3595. border-width:0px;
  3596. word-wrap:break-word;
  3597. text-transform:none;
  3598. visibility:hidden;
  3599. }
  3600. #u28904_img {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:0px;
  3604. top:0px;
  3605. width:192px;
  3606. height:35px;
  3607. }
  3608. #u28904 {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:867px;
  3612. top:318px;
  3613. width:192px;
  3614. height:35px;
  3615. display:flex;
  3616. font-size:14px;
  3617. }
  3618. #u28904 .text {
  3619. position:absolute;
  3620. align-self:center;
  3621. padding:2px 2px 2px 2px;
  3622. box-sizing:border-box;
  3623. width:100%;
  3624. }
  3625. #u28904_text {
  3626. border-width:0px;
  3627. word-wrap:break-word;
  3628. text-transform:none;
  3629. visibility:hidden;
  3630. }
  3631. #u28905_img {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:145px;
  3637. height:35px;
  3638. }
  3639. #u28905 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:1059px;
  3643. top:318px;
  3644. width:145px;
  3645. height:35px;
  3646. display:flex;
  3647. font-size:14px;
  3648. }
  3649. #u28905 .text {
  3650. position:absolute;
  3651. align-self:center;
  3652. padding:2px 2px 2px 2px;
  3653. box-sizing:border-box;
  3654. width:100%;
  3655. }
  3656. #u28905_text {
  3657. border-width:0px;
  3658. word-wrap:break-word;
  3659. text-transform:none;
  3660. visibility:hidden;
  3661. }
  3662. #u28906_img {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:201px;
  3668. height:35px;
  3669. }
  3670. #u28906 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:353px;
  3675. width:201px;
  3676. height:35px;
  3677. display:flex;
  3678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3679. font-weight:400;
  3680. font-style:normal;
  3681. font-size:14px;
  3682. }
  3683. #u28906 .text {
  3684. position:absolute;
  3685. align-self:center;
  3686. padding:2px 2px 2px 2px;
  3687. box-sizing:border-box;
  3688. width:100%;
  3689. }
  3690. #u28906_text {
  3691. border-width:0px;
  3692. word-wrap:break-word;
  3693. text-transform:none;
  3694. visibility:hidden;
  3695. }
  3696. #u28907_img {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:120px;
  3702. height:35px;
  3703. }
  3704. #u28907 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:201px;
  3708. top:353px;
  3709. width:120px;
  3710. height:35px;
  3711. display:flex;
  3712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:14px;
  3716. }
  3717. #u28907 .text {
  3718. position:absolute;
  3719. align-self:center;
  3720. padding:2px 2px 2px 2px;
  3721. box-sizing:border-box;
  3722. width:100%;
  3723. }
  3724. #u28907_text {
  3725. border-width:0px;
  3726. word-wrap:break-word;
  3727. text-transform:none;
  3728. visibility:hidden;
  3729. }
  3730. #u28908_img {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:426px;
  3736. height:35px;
  3737. }
  3738. #u28908 {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:321px;
  3742. top:353px;
  3743. width:426px;
  3744. height:35px;
  3745. display:flex;
  3746. font-size:14px;
  3747. }
  3748. #u28908 .text {
  3749. position:absolute;
  3750. align-self:center;
  3751. padding:2px 2px 2px 2px;
  3752. box-sizing:border-box;
  3753. width:100%;
  3754. }
  3755. #u28908_text {
  3756. border-width:0px;
  3757. word-wrap:break-word;
  3758. text-transform:none;
  3759. visibility:hidden;
  3760. }
  3761. #u28909_img {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:120px;
  3767. height:35px;
  3768. }
  3769. #u28909 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:747px;
  3773. top:353px;
  3774. width:120px;
  3775. height:35px;
  3776. display:flex;
  3777. font-size:14px;
  3778. }
  3779. #u28909 .text {
  3780. position:absolute;
  3781. align-self:center;
  3782. padding:2px 2px 2px 2px;
  3783. box-sizing:border-box;
  3784. width:100%;
  3785. }
  3786. #u28909_text {
  3787. border-width:0px;
  3788. word-wrap:break-word;
  3789. text-transform:none;
  3790. visibility:hidden;
  3791. }
  3792. #u28910_img {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:0px;
  3796. top:0px;
  3797. width:192px;
  3798. height:35px;
  3799. }
  3800. #u28910 {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:867px;
  3804. top:353px;
  3805. width:192px;
  3806. height:35px;
  3807. display:flex;
  3808. font-size:14px;
  3809. }
  3810. #u28910 .text {
  3811. position:absolute;
  3812. align-self:center;
  3813. padding:2px 2px 2px 2px;
  3814. box-sizing:border-box;
  3815. width:100%;
  3816. }
  3817. #u28910_text {
  3818. border-width:0px;
  3819. word-wrap:break-word;
  3820. text-transform:none;
  3821. visibility:hidden;
  3822. }
  3823. #u28911_img {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:0px;
  3827. top:0px;
  3828. width:145px;
  3829. height:35px;
  3830. }
  3831. #u28911 {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:1059px;
  3835. top:353px;
  3836. width:145px;
  3837. height:35px;
  3838. display:flex;
  3839. font-size:14px;
  3840. }
  3841. #u28911 .text {
  3842. position:absolute;
  3843. align-self:center;
  3844. padding:2px 2px 2px 2px;
  3845. box-sizing:border-box;
  3846. width:100%;
  3847. }
  3848. #u28911_text {
  3849. border-width:0px;
  3850. word-wrap:break-word;
  3851. text-transform:none;
  3852. visibility:hidden;
  3853. }
  3854. #u28912_img {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:201px;
  3860. height:35px;
  3861. }
  3862. #u28912 {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:0px;
  3866. top:388px;
  3867. width:201px;
  3868. height:35px;
  3869. display:flex;
  3870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3871. font-weight:400;
  3872. font-style:normal;
  3873. font-size:14px;
  3874. }
  3875. #u28912 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 2px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u28912_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u28913_img {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:120px;
  3894. height:35px;
  3895. }
  3896. #u28913 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:201px;
  3900. top:388px;
  3901. width:120px;
  3902. height:35px;
  3903. display:flex;
  3904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:14px;
  3908. }
  3909. #u28913 .text {
  3910. position:absolute;
  3911. align-self:center;
  3912. padding:2px 2px 2px 2px;
  3913. box-sizing:border-box;
  3914. width:100%;
  3915. }
  3916. #u28913_text {
  3917. border-width:0px;
  3918. word-wrap:break-word;
  3919. text-transform:none;
  3920. visibility:hidden;
  3921. }
  3922. #u28914_img {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:426px;
  3928. height:35px;
  3929. }
  3930. #u28914 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:321px;
  3934. top:388px;
  3935. width:426px;
  3936. height:35px;
  3937. display:flex;
  3938. font-size:14px;
  3939. }
  3940. #u28914 .text {
  3941. position:absolute;
  3942. align-self:center;
  3943. padding:2px 2px 2px 2px;
  3944. box-sizing:border-box;
  3945. width:100%;
  3946. }
  3947. #u28914_text {
  3948. border-width:0px;
  3949. word-wrap:break-word;
  3950. text-transform:none;
  3951. visibility:hidden;
  3952. }
  3953. #u28915_img {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:0px;
  3957. top:0px;
  3958. width:120px;
  3959. height:35px;
  3960. }
  3961. #u28915 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:747px;
  3965. top:388px;
  3966. width:120px;
  3967. height:35px;
  3968. display:flex;
  3969. font-size:14px;
  3970. }
  3971. #u28915 .text {
  3972. position:absolute;
  3973. align-self:center;
  3974. padding:2px 2px 2px 2px;
  3975. box-sizing:border-box;
  3976. width:100%;
  3977. }
  3978. #u28915_text {
  3979. border-width:0px;
  3980. word-wrap:break-word;
  3981. text-transform:none;
  3982. visibility:hidden;
  3983. }
  3984. #u28916_img {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:0px;
  3988. top:0px;
  3989. width:192px;
  3990. height:35px;
  3991. }
  3992. #u28916 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:867px;
  3996. top:388px;
  3997. width:192px;
  3998. height:35px;
  3999. display:flex;
  4000. font-size:14px;
  4001. }
  4002. #u28916 .text {
  4003. position:absolute;
  4004. align-self:center;
  4005. padding:2px 2px 2px 2px;
  4006. box-sizing:border-box;
  4007. width:100%;
  4008. }
  4009. #u28916_text {
  4010. border-width:0px;
  4011. word-wrap:break-word;
  4012. text-transform:none;
  4013. visibility:hidden;
  4014. }
  4015. #u28917_img {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:145px;
  4021. height:35px;
  4022. }
  4023. #u28917 {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:1059px;
  4027. top:388px;
  4028. width:145px;
  4029. height:35px;
  4030. display:flex;
  4031. font-size:14px;
  4032. }
  4033. #u28917 .text {
  4034. position:absolute;
  4035. align-self:center;
  4036. padding:2px 2px 2px 2px;
  4037. box-sizing:border-box;
  4038. width:100%;
  4039. }
  4040. #u28917_text {
  4041. border-width:0px;
  4042. word-wrap:break-word;
  4043. text-transform:none;
  4044. visibility:hidden;
  4045. }
  4046. #u28918_img {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:0px;
  4050. top:0px;
  4051. width:201px;
  4052. height:35px;
  4053. }
  4054. #u28918 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:423px;
  4059. width:201px;
  4060. height:35px;
  4061. display:flex;
  4062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4063. font-weight:400;
  4064. font-style:normal;
  4065. font-size:14px;
  4066. }
  4067. #u28918 .text {
  4068. position:absolute;
  4069. align-self:center;
  4070. padding:2px 2px 2px 2px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u28918_text {
  4075. border-width:0px;
  4076. word-wrap:break-word;
  4077. text-transform:none;
  4078. visibility:hidden;
  4079. }
  4080. #u28919_img {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:120px;
  4086. height:35px;
  4087. }
  4088. #u28919 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:201px;
  4092. top:423px;
  4093. width:120px;
  4094. height:35px;
  4095. display:flex;
  4096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4097. font-weight:400;
  4098. font-style:normal;
  4099. font-size:14px;
  4100. }
  4101. #u28919 .text {
  4102. position:absolute;
  4103. align-self:center;
  4104. padding:2px 2px 2px 2px;
  4105. box-sizing:border-box;
  4106. width:100%;
  4107. }
  4108. #u28919_text {
  4109. border-width:0px;
  4110. word-wrap:break-word;
  4111. text-transform:none;
  4112. visibility:hidden;
  4113. }
  4114. #u28920_img {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:426px;
  4120. height:35px;
  4121. }
  4122. #u28920 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:321px;
  4126. top:423px;
  4127. width:426px;
  4128. height:35px;
  4129. display:flex;
  4130. font-size:14px;
  4131. }
  4132. #u28920 .text {
  4133. position:absolute;
  4134. align-self:center;
  4135. padding:2px 2px 2px 2px;
  4136. box-sizing:border-box;
  4137. width:100%;
  4138. }
  4139. #u28920_text {
  4140. border-width:0px;
  4141. word-wrap:break-word;
  4142. text-transform:none;
  4143. visibility:hidden;
  4144. }
  4145. #u28921_img {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:0px;
  4149. top:0px;
  4150. width:120px;
  4151. height:35px;
  4152. }
  4153. #u28921 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:747px;
  4157. top:423px;
  4158. width:120px;
  4159. height:35px;
  4160. display:flex;
  4161. font-size:14px;
  4162. }
  4163. #u28921 .text {
  4164. position:absolute;
  4165. align-self:center;
  4166. padding:2px 2px 2px 2px;
  4167. box-sizing:border-box;
  4168. width:100%;
  4169. }
  4170. #u28921_text {
  4171. border-width:0px;
  4172. word-wrap:break-word;
  4173. text-transform:none;
  4174. visibility:hidden;
  4175. }
  4176. #u28922_img {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:192px;
  4182. height:35px;
  4183. }
  4184. #u28922 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:867px;
  4188. top:423px;
  4189. width:192px;
  4190. height:35px;
  4191. display:flex;
  4192. font-size:14px;
  4193. }
  4194. #u28922 .text {
  4195. position:absolute;
  4196. align-self:center;
  4197. padding:2px 2px 2px 2px;
  4198. box-sizing:border-box;
  4199. width:100%;
  4200. }
  4201. #u28922_text {
  4202. border-width:0px;
  4203. word-wrap:break-word;
  4204. text-transform:none;
  4205. visibility:hidden;
  4206. }
  4207. #u28923_img {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:0px;
  4211. top:0px;
  4212. width:145px;
  4213. height:35px;
  4214. }
  4215. #u28923 {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:1059px;
  4219. top:423px;
  4220. width:145px;
  4221. height:35px;
  4222. display:flex;
  4223. font-size:14px;
  4224. }
  4225. #u28923 .text {
  4226. position:absolute;
  4227. align-self:center;
  4228. padding:2px 2px 2px 2px;
  4229. box-sizing:border-box;
  4230. width:100%;
  4231. }
  4232. #u28923_text {
  4233. border-width:0px;
  4234. word-wrap:break-word;
  4235. text-transform:none;
  4236. visibility:hidden;
  4237. }
  4238. #u28924_div {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:85px;
  4244. height:50px;
  4245. background:inherit;
  4246. background-color:rgba(255, 255, 255, 0);
  4247. border:none;
  4248. border-left:0px;
  4249. border-top:0px;
  4250. border-right:0px;
  4251. border-radius:0px;
  4252. border-bottom-right-radius:0px;
  4253. border-bottom-left-radius:0px;
  4254. -moz-box-shadow:none;
  4255. -webkit-box-shadow:none;
  4256. box-shadow:none;
  4257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4258. font-weight:400;
  4259. font-style:normal;
  4260. font-size:14px;
  4261. line-height:40px;
  4262. }
  4263. #u28924 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:360px;
  4267. top:50px;
  4268. width:85px;
  4269. height:50px;
  4270. display:flex;
  4271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4272. font-weight:400;
  4273. font-style:normal;
  4274. font-size:14px;
  4275. line-height:40px;
  4276. }
  4277. #u28924 .text {
  4278. position:absolute;
  4279. align-self:center;
  4280. padding:0px 0px 0px 0px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u28924_text {
  4285. border-width:0px;
  4286. white-space:nowrap;
  4287. text-transform:none;
  4288. }
  4289. #u28925_div {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:85px;
  4295. height:50px;
  4296. background:inherit;
  4297. background-color:rgba(255, 255, 255, 0);
  4298. box-sizing:border-box;
  4299. border-width:2px;
  4300. border-style:solid;
  4301. border-color:rgba(41, 143, 255, 1);
  4302. border-left:0px;
  4303. border-top:0px;
  4304. border-right:0px;
  4305. border-radius:0px;
  4306. border-bottom-right-radius:0px;
  4307. border-bottom-left-radius:0px;
  4308. -moz-box-shadow:none;
  4309. -webkit-box-shadow:none;
  4310. box-shadow:none;
  4311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4312. font-weight:400;
  4313. font-style:normal;
  4314. font-size:14px;
  4315. color:#298FFF;
  4316. line-height:40px;
  4317. }
  4318. #u28925 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:485px;
  4322. top:50px;
  4323. width:85px;
  4324. height:50px;
  4325. display:flex;
  4326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4327. font-weight:400;
  4328. font-style:normal;
  4329. font-size:14px;
  4330. color:#298FFF;
  4331. line-height:40px;
  4332. }
  4333. #u28925 .text {
  4334. position:absolute;
  4335. align-self:center;
  4336. padding:0px 0px 0px 0px;
  4337. box-sizing:border-box;
  4338. width:100%;
  4339. }
  4340. #u28925_text {
  4341. border-width:0px;
  4342. white-space:nowrap;
  4343. text-transform:none;
  4344. }
  4345. #u28926_div {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:0px;
  4349. top:0px;
  4350. width:113px;
  4351. height:50px;
  4352. background:inherit;
  4353. background-color:rgba(255, 255, 255, 0);
  4354. border:none;
  4355. border-left:0px;
  4356. border-top:0px;
  4357. border-right:0px;
  4358. border-radius:0px;
  4359. border-bottom-right-radius:0px;
  4360. border-bottom-left-radius:0px;
  4361. -moz-box-shadow:none;
  4362. -webkit-box-shadow:none;
  4363. box-shadow:none;
  4364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4365. font-weight:400;
  4366. font-style:normal;
  4367. font-size:14px;
  4368. color:#000000;
  4369. line-height:40px;
  4370. }
  4371. #u28926 {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:610px;
  4375. top:50px;
  4376. width:113px;
  4377. height:50px;
  4378. display:flex;
  4379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4380. font-weight:400;
  4381. font-style:normal;
  4382. font-size:14px;
  4383. color:#000000;
  4384. line-height:40px;
  4385. }
  4386. #u28926 .text {
  4387. position:absolute;
  4388. align-self:center;
  4389. padding:0px 0px 0px 0px;
  4390. box-sizing:border-box;
  4391. width:100%;
  4392. }
  4393. #u28926_text {
  4394. border-width:0px;
  4395. white-space:nowrap;
  4396. text-transform:none;
  4397. }
  4398. #u28927_div {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:60px;
  4404. height:30px;
  4405. background:inherit;
  4406. background-color:rgba(24, 144, 255, 1);
  4407. border:none;
  4408. border-radius:4px;
  4409. -moz-box-shadow:none;
  4410. -webkit-box-shadow:none;
  4411. box-shadow:none;
  4412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4413. font-weight:400;
  4414. font-style:normal;
  4415. font-size:14px;
  4416. color:#FFFFFF;
  4417. }
  4418. #u28927 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:360px;
  4422. top:210px;
  4423. width:60px;
  4424. height:30px;
  4425. display:flex;
  4426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:14px;
  4430. color:#FFFFFF;
  4431. }
  4432. #u28927 .text {
  4433. position:absolute;
  4434. align-self:center;
  4435. padding:2px 2px 2px 2px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u28927_text {
  4440. border-width:0px;
  4441. word-wrap:break-word;
  4442. text-transform:none;
  4443. }
  4444. #u28928 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:0px;
  4450. height:0px;
  4451. }
  4452. #u28929_div {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:680px;
  4458. height:490px;
  4459. background:inherit;
  4460. background-color:rgba(255, 255, 255, 1);
  4461. box-sizing:border-box;
  4462. border-width:1px;
  4463. border-style:solid;
  4464. border-color:rgba(215, 215, 215, 1);
  4465. border-radius:4px;
  4466. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  4467. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  4468. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. font-size:14px;
  4473. color:#AAAAAA;
  4474. text-align:center;
  4475. line-height:30px;
  4476. }
  4477. #u28929 {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:1629px;
  4481. top:50px;
  4482. width:680px;
  4483. height:490px;
  4484. display:flex;
  4485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. font-size:14px;
  4489. color:#AAAAAA;
  4490. text-align:center;
  4491. line-height:30px;
  4492. }
  4493. #u28929 .text {
  4494. position:absolute;
  4495. align-self:center;
  4496. padding:5px 10px 5px 10px;
  4497. box-sizing:border-box;
  4498. width:100%;
  4499. }
  4500. #u28929_text {
  4501. border-width:0px;
  4502. word-wrap:break-word;
  4503. text-transform:none;
  4504. visibility:hidden;
  4505. }
  4506. #u28930_div {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:0px;
  4510. top:0px;
  4511. width:47px;
  4512. height:35px;
  4513. background:inherit;
  4514. background-color:rgba(255, 255, 255, 0);
  4515. border:none;
  4516. border-top:0px;
  4517. border-right:0px;
  4518. border-bottom:0px;
  4519. border-radius:0px;
  4520. border-top-left-radius:0px;
  4521. border-bottom-left-radius:0px;
  4522. -moz-box-shadow:none;
  4523. -webkit-box-shadow:none;
  4524. box-shadow:none;
  4525. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4526. font-weight:500;
  4527. font-style:normal;
  4528. font-size:18px;
  4529. }
  4530. #u28930 {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:1659px;
  4534. top:68px;
  4535. width:47px;
  4536. height:35px;
  4537. display:flex;
  4538. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4539. font-weight:500;
  4540. font-style:normal;
  4541. font-size:18px;
  4542. }
  4543. #u28930 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:5px 10px 5px 0px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u28930_text {
  4551. border-width:0px;
  4552. white-space:nowrap;
  4553. text-transform:none;
  4554. }
  4555. #u28931_div {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:88px;
  4561. height:40px;
  4562. background:inherit;
  4563. background-color:rgba(255, 255, 255, 0);
  4564. border:none;
  4565. border-top:0px;
  4566. border-right:0px;
  4567. border-bottom:0px;
  4568. border-radius:0px;
  4569. border-top-left-radius:0px;
  4570. border-bottom-left-radius:0px;
  4571. -moz-box-shadow:none;
  4572. -webkit-box-shadow:none;
  4573. box-shadow:none;
  4574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4575. font-weight:400;
  4576. font-style:normal;
  4577. font-size:14px;
  4578. text-align:right;
  4579. }
  4580. #u28931 {
  4581. border-width:0px;
  4582. position:absolute;
  4583. left:1692px;
  4584. top:234px;
  4585. width:88px;
  4586. height:40px;
  4587. display:flex;
  4588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4589. font-weight:400;
  4590. font-style:normal;
  4591. font-size:14px;
  4592. text-align:right;
  4593. }
  4594. #u28931 .text {
  4595. position:absolute;
  4596. align-self:center;
  4597. padding:5px 10px 5px 0px;
  4598. box-sizing:border-box;
  4599. width:100%;
  4600. }
  4601. #u28931_text {
  4602. border-width:0px;
  4603. white-space:nowrap;
  4604. text-transform:none;
  4605. }
  4606. #u28932 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:0px;
  4610. top:0px;
  4611. width:0px;
  4612. height:0px;
  4613. }
  4614. #u28933_div {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:680px;
  4620. height:60px;
  4621. background:inherit;
  4622. background-color:rgba(255, 255, 255, 1);
  4623. box-sizing:border-box;
  4624. border-width:1px;
  4625. border-style:solid;
  4626. border-color:rgba(215, 215, 215, 1);
  4627. border-radius:0px;
  4628. -moz-box-shadow:none;
  4629. -webkit-box-shadow:none;
  4630. box-shadow:none;
  4631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4632. font-weight:400;
  4633. font-style:normal;
  4634. font-size:14px;
  4635. color:#AAAAAA;
  4636. text-align:center;
  4637. line-height:30px;
  4638. }
  4639. #u28933 {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:1629px;
  4643. top:480px;
  4644. width:680px;
  4645. height:60px;
  4646. display:flex;
  4647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4648. font-weight:400;
  4649. font-style:normal;
  4650. font-size:14px;
  4651. color:#AAAAAA;
  4652. text-align:center;
  4653. line-height:30px;
  4654. }
  4655. #u28933 .text {
  4656. position:absolute;
  4657. align-self:center;
  4658. padding:5px 10px 5px 10px;
  4659. box-sizing:border-box;
  4660. width:100%;
  4661. }
  4662. #u28933_text {
  4663. border-width:0px;
  4664. word-wrap:break-word;
  4665. text-transform:none;
  4666. visibility:hidden;
  4667. }
  4668. #u28934_div {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:80px;
  4674. height:30px;
  4675. background:inherit;
  4676. background-color:rgba(24, 144, 255, 1);
  4677. border:none;
  4678. border-radius:4px;
  4679. -moz-box-shadow:none;
  4680. -webkit-box-shadow:none;
  4681. box-shadow:none;
  4682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4683. font-weight:400;
  4684. font-style:normal;
  4685. font-size:14px;
  4686. color:#FFFFFF;
  4687. }
  4688. #u28934 {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:2199px;
  4692. top:495px;
  4693. width:80px;
  4694. height:30px;
  4695. display:flex;
  4696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:14px;
  4700. color:#FFFFFF;
  4701. }
  4702. #u28934 .text {
  4703. position:absolute;
  4704. align-self:center;
  4705. padding:2px 2px 2px 2px;
  4706. box-sizing:border-box;
  4707. width:100%;
  4708. }
  4709. #u28934_text {
  4710. border-width:0px;
  4711. word-wrap:break-word;
  4712. text-transform:none;
  4713. }
  4714. #u28935_div {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:0px;
  4718. top:0px;
  4719. width:80px;
  4720. height:30px;
  4721. background:inherit;
  4722. background-color:rgba(255, 255, 255, 1);
  4723. box-sizing:border-box;
  4724. border-width:1px;
  4725. border-style:solid;
  4726. border-color:rgba(170, 170, 170, 1);
  4727. border-radius:4px;
  4728. -moz-box-shadow:none;
  4729. -webkit-box-shadow:none;
  4730. box-shadow:none;
  4731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4732. font-weight:400;
  4733. font-style:normal;
  4734. font-size:14px;
  4735. }
  4736. #u28935 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:2099px;
  4740. top:495px;
  4741. width:80px;
  4742. height:30px;
  4743. display:flex;
  4744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:14px;
  4748. }
  4749. #u28935 .text {
  4750. position:absolute;
  4751. align-self:center;
  4752. padding:2px 2px 2px 2px;
  4753. box-sizing:border-box;
  4754. width:100%;
  4755. }
  4756. #u28935_text {
  4757. border-width:0px;
  4758. word-wrap:break-word;
  4759. text-transform:none;
  4760. }
  4761. #u28936 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:0px;
  4767. height:0px;
  4768. }
  4769. #u28937_div {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:380px;
  4775. height:40px;
  4776. background:inherit;
  4777. background-color:rgba(255, 255, 255, 1);
  4778. box-sizing:border-box;
  4779. border-width:1px;
  4780. border-style:solid;
  4781. border-color:rgba(201, 201, 201, 1);
  4782. border-radius:4px;
  4783. -moz-box-shadow:none;
  4784. -webkit-box-shadow:none;
  4785. box-shadow:none;
  4786. font-family:'Microsoft YaHei', sans-serif;
  4787. font-weight:400;
  4788. font-style:normal;
  4789. font-size:14px;
  4790. color:#CCCCCC;
  4791. text-align:left;
  4792. }
  4793. #u28937 {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:1780px;
  4797. top:234px;
  4798. width:380px;
  4799. height:40px;
  4800. display:flex;
  4801. font-family:'Microsoft YaHei', sans-serif;
  4802. font-weight:400;
  4803. font-style:normal;
  4804. font-size:14px;
  4805. color:#CCCCCC;
  4806. text-align:left;
  4807. }
  4808. #u28937 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:2px 8px 2px 8px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u28937_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u28938_input {
  4822. position:absolute;
  4823. left:0px;
  4824. top:0px;
  4825. width:354px;
  4826. height:38px;
  4827. padding:2px 2px 2px 2px;
  4828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4829. font-weight:400;
  4830. font-style:normal;
  4831. font-size:14px;
  4832. letter-spacing:normal;
  4833. color:#000000;
  4834. vertical-align:none;
  4835. text-align:left;
  4836. text-transform:none;
  4837. background-color:transparent;
  4838. border-color:transparent;
  4839. }
  4840. #u28938_input.disabled {
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:354px;
  4845. height:38px;
  4846. padding:2px 2px 2px 2px;
  4847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4848. font-weight:400;
  4849. font-style:normal;
  4850. font-size:14px;
  4851. letter-spacing:normal;
  4852. color:#000000;
  4853. vertical-align:none;
  4854. text-align:left;
  4855. text-transform:none;
  4856. background-color:transparent;
  4857. border-color:transparent;
  4858. }
  4859. #u28938_div {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:354px;
  4865. height:38px;
  4866. background:inherit;
  4867. background-color:rgba(255, 255, 255, 1);
  4868. border:none;
  4869. border-radius:0px;
  4870. -moz-box-shadow:none;
  4871. -webkit-box-shadow:none;
  4872. box-shadow:none;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:14px;
  4877. }
  4878. #u28938 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:1794px;
  4882. top:235px;
  4883. width:354px;
  4884. height:38px;
  4885. display:flex;
  4886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4887. font-weight:400;
  4888. font-style:normal;
  4889. font-size:14px;
  4890. }
  4891. #u28938 .text {
  4892. position:absolute;
  4893. align-self:center;
  4894. padding:2px 2px 2px 2px;
  4895. box-sizing:border-box;
  4896. width:100%;
  4897. }
  4898. #u28938_div.disabled {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:354px;
  4904. height:38px;
  4905. background:inherit;
  4906. background-color:rgba(240, 240, 240, 1);
  4907. border:none;
  4908. border-radius:0px;
  4909. -moz-box-shadow:none;
  4910. -webkit-box-shadow:none;
  4911. box-shadow:none;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:14px;
  4916. }
  4917. #u28938.disabled {
  4918. }
  4919. #u28939_div {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:0px;
  4923. top:0px;
  4924. width:88px;
  4925. height:40px;
  4926. background:inherit;
  4927. background-color:rgba(255, 255, 255, 0);
  4928. border:none;
  4929. border-top:0px;
  4930. border-right:0px;
  4931. border-bottom:0px;
  4932. border-radius:0px;
  4933. border-top-left-radius:0px;
  4934. border-bottom-left-radius:0px;
  4935. -moz-box-shadow:none;
  4936. -webkit-box-shadow:none;
  4937. box-shadow:none;
  4938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4939. font-weight:400;
  4940. font-style:normal;
  4941. font-size:14px;
  4942. text-align:right;
  4943. }
  4944. #u28939 {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:1692px;
  4948. top:184px;
  4949. width:88px;
  4950. height:40px;
  4951. display:flex;
  4952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4953. font-weight:400;
  4954. font-style:normal;
  4955. font-size:14px;
  4956. text-align:right;
  4957. }
  4958. #u28939 .text {
  4959. position:absolute;
  4960. align-self:center;
  4961. padding:5px 10px 5px 0px;
  4962. box-sizing:border-box;
  4963. width:100%;
  4964. }
  4965. #u28939_text {
  4966. border-width:0px;
  4967. white-space:nowrap;
  4968. text-transform:none;
  4969. }
  4970. #u28940 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:0px;
  4976. height:0px;
  4977. }
  4978. #u28941_div {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:0px;
  4982. top:0px;
  4983. width:380px;
  4984. height:40px;
  4985. background:inherit;
  4986. background-color:rgba(255, 255, 255, 1);
  4987. box-sizing:border-box;
  4988. border-width:1px;
  4989. border-style:solid;
  4990. border-color:rgba(201, 201, 201, 1);
  4991. border-radius:4px;
  4992. -moz-box-shadow:none;
  4993. -webkit-box-shadow:none;
  4994. box-shadow:none;
  4995. font-family:'Microsoft YaHei', sans-serif;
  4996. font-weight:400;
  4997. font-style:normal;
  4998. font-size:14px;
  4999. color:#CCCCCC;
  5000. text-align:left;
  5001. }
  5002. #u28941 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:1780px;
  5006. top:184px;
  5007. width:380px;
  5008. height:40px;
  5009. display:flex;
  5010. font-family:'Microsoft YaHei', sans-serif;
  5011. font-weight:400;
  5012. font-style:normal;
  5013. font-size:14px;
  5014. color:#CCCCCC;
  5015. text-align:left;
  5016. }
  5017. #u28941 .text {
  5018. position:absolute;
  5019. align-self:center;
  5020. padding:2px 8px 2px 8px;
  5021. box-sizing:border-box;
  5022. width:100%;
  5023. }
  5024. #u28941_text {
  5025. border-width:0px;
  5026. word-wrap:break-word;
  5027. text-transform:none;
  5028. visibility:hidden;
  5029. }
  5030. #u28942_input {
  5031. position:absolute;
  5032. left:0px;
  5033. top:0px;
  5034. width:358px;
  5035. height:38px;
  5036. padding:2px 2px 2px 2px;
  5037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5038. font-weight:400;
  5039. font-style:normal;
  5040. font-size:14px;
  5041. letter-spacing:normal;
  5042. color:#000000;
  5043. vertical-align:none;
  5044. text-align:left;
  5045. text-transform:none;
  5046. background-color:transparent;
  5047. border-color:transparent;
  5048. }
  5049. #u28942_input.disabled {
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:358px;
  5054. height:38px;
  5055. padding:2px 2px 2px 2px;
  5056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5057. font-weight:400;
  5058. font-style:normal;
  5059. font-size:14px;
  5060. letter-spacing:normal;
  5061. color:#000000;
  5062. vertical-align:none;
  5063. text-align:left;
  5064. text-transform:none;
  5065. background-color:transparent;
  5066. border-color:transparent;
  5067. }
  5068. #u28942_div {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:358px;
  5074. height:38px;
  5075. background:inherit;
  5076. background-color:rgba(255, 255, 255, 1);
  5077. border:none;
  5078. border-radius:0px;
  5079. -moz-box-shadow:none;
  5080. -webkit-box-shadow:none;
  5081. box-shadow:none;
  5082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5083. font-weight:400;
  5084. font-style:normal;
  5085. font-size:14px;
  5086. }
  5087. #u28942 {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:1790px;
  5091. top:185px;
  5092. width:358px;
  5093. height:38px;
  5094. display:flex;
  5095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5096. font-weight:400;
  5097. font-style:normal;
  5098. font-size:14px;
  5099. }
  5100. #u28942 .text {
  5101. position:absolute;
  5102. align-self:center;
  5103. padding:2px 2px 2px 2px;
  5104. box-sizing:border-box;
  5105. width:100%;
  5106. }
  5107. #u28942_div.disabled {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:0px;
  5111. top:0px;
  5112. width:358px;
  5113. height:38px;
  5114. background:inherit;
  5115. background-color:rgba(240, 240, 240, 1);
  5116. border:none;
  5117. border-radius:0px;
  5118. -moz-box-shadow:none;
  5119. -webkit-box-shadow:none;
  5120. box-shadow:none;
  5121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5122. font-weight:400;
  5123. font-style:normal;
  5124. font-size:14px;
  5125. }
  5126. #u28942.disabled {
  5127. }
  5128. #u28943_div {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:88px;
  5134. height:40px;
  5135. background:inherit;
  5136. background-color:rgba(255, 255, 255, 0);
  5137. border:none;
  5138. border-top:0px;
  5139. border-right:0px;
  5140. border-bottom:0px;
  5141. border-radius:0px;
  5142. border-top-left-radius:0px;
  5143. border-bottom-left-radius:0px;
  5144. -moz-box-shadow:none;
  5145. -webkit-box-shadow:none;
  5146. box-shadow:none;
  5147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5148. font-weight:400;
  5149. font-style:normal;
  5150. font-size:14px;
  5151. text-align:right;
  5152. }
  5153. #u28943 {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:1692px;
  5157. top:285px;
  5158. width:88px;
  5159. height:40px;
  5160. display:flex;
  5161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5162. font-weight:400;
  5163. font-style:normal;
  5164. font-size:14px;
  5165. text-align:right;
  5166. }
  5167. #u28943 .text {
  5168. position:absolute;
  5169. align-self:center;
  5170. padding:5px 10px 5px 0px;
  5171. box-sizing:border-box;
  5172. width:100%;
  5173. }
  5174. #u28943_text {
  5175. border-width:0px;
  5176. white-space:nowrap;
  5177. text-transform:none;
  5178. }
  5179. #u28944 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:0px;
  5185. height:0px;
  5186. }
  5187. #u28945_div {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:0px;
  5191. top:0px;
  5192. width:380px;
  5193. height:40px;
  5194. background:inherit;
  5195. background-color:rgba(255, 255, 255, 1);
  5196. box-sizing:border-box;
  5197. border-width:1px;
  5198. border-style:solid;
  5199. border-color:rgba(201, 201, 201, 1);
  5200. border-radius:4px;
  5201. -moz-box-shadow:none;
  5202. -webkit-box-shadow:none;
  5203. box-shadow:none;
  5204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5205. font-weight:400;
  5206. font-style:normal;
  5207. font-size:12px;
  5208. text-align:right;
  5209. }
  5210. #u28945 {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:1780px;
  5214. top:285px;
  5215. width:380px;
  5216. height:40px;
  5217. display:flex;
  5218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. font-size:12px;
  5222. text-align:right;
  5223. }
  5224. #u28945 .text {
  5225. position:absolute;
  5226. align-self:center;
  5227. padding:2px 8px 2px 8px;
  5228. box-sizing:border-box;
  5229. width:100%;
  5230. }
  5231. #u28945_text {
  5232. border-width:0px;
  5233. word-wrap:break-word;
  5234. text-transform:none;
  5235. }
  5236. #u28946_input {
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:328px;
  5241. height:38px;
  5242. padding:2px 2px 2px 2px;
  5243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5244. font-weight:400;
  5245. font-style:normal;
  5246. font-size:14px;
  5247. letter-spacing:normal;
  5248. color:#000000;
  5249. vertical-align:none;
  5250. text-align:left;
  5251. text-transform:none;
  5252. background-color:transparent;
  5253. border-color:transparent;
  5254. }
  5255. #u28946_input.disabled {
  5256. position:absolute;
  5257. left:0px;
  5258. top:0px;
  5259. width:328px;
  5260. height:38px;
  5261. padding:2px 2px 2px 2px;
  5262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5263. font-weight:400;
  5264. font-style:normal;
  5265. font-size:14px;
  5266. letter-spacing:normal;
  5267. color:#000000;
  5268. vertical-align:none;
  5269. text-align:left;
  5270. text-transform:none;
  5271. background-color:transparent;
  5272. border-color:transparent;
  5273. }
  5274. #u28946_div {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:328px;
  5280. height:38px;
  5281. background:inherit;
  5282. background-color:rgba(255, 255, 255, 1);
  5283. border:none;
  5284. border-radius:0px;
  5285. -moz-box-shadow:none;
  5286. -webkit-box-shadow:none;
  5287. box-shadow:none;
  5288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:14px;
  5292. }
  5293. #u28946 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:1794px;
  5297. top:286px;
  5298. width:328px;
  5299. height:38px;
  5300. display:flex;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:14px;
  5305. }
  5306. #u28946 .text {
  5307. position:absolute;
  5308. align-self:center;
  5309. padding:2px 2px 2px 2px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u28946_div.disabled {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:328px;
  5319. height:38px;
  5320. background:inherit;
  5321. background-color:rgba(240, 240, 240, 1);
  5322. border:none;
  5323. border-radius:0px;
  5324. -moz-box-shadow:none;
  5325. -webkit-box-shadow:none;
  5326. box-shadow:none;
  5327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5328. font-weight:400;
  5329. font-style:normal;
  5330. font-size:14px;
  5331. }
  5332. #u28946.disabled {
  5333. }
  5334. #u28947_div {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:0px;
  5338. top:0px;
  5339. width:53px;
  5340. height:40px;
  5341. background:inherit;
  5342. background-color:rgba(255, 255, 255, 0);
  5343. border:none;
  5344. border-top:0px;
  5345. border-right:0px;
  5346. border-bottom:0px;
  5347. border-radius:0px;
  5348. border-top-left-radius:0px;
  5349. border-bottom-left-radius:0px;
  5350. -moz-box-shadow:none;
  5351. -webkit-box-shadow:none;
  5352. box-shadow:none;
  5353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5354. font-weight:400;
  5355. font-style:normal;
  5356. font-size:14px;
  5357. text-align:right;
  5358. }
  5359. #u28947 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:1727px;
  5363. top:336px;
  5364. width:53px;
  5365. height:40px;
  5366. display:flex;
  5367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. font-size:14px;
  5371. text-align:right;
  5372. }
  5373. #u28947 .text {
  5374. position:absolute;
  5375. align-self:center;
  5376. padding:5px 10px 5px 0px;
  5377. box-sizing:border-box;
  5378. width:100%;
  5379. }
  5380. #u28947_text {
  5381. border-width:0px;
  5382. white-space:nowrap;
  5383. text-transform:none;
  5384. }
  5385. #u28948 {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:0px;
  5389. top:0px;
  5390. width:0px;
  5391. height:0px;
  5392. }
  5393. #u28949_div {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:0px;
  5397. top:0px;
  5398. width:380px;
  5399. height:80px;
  5400. background:inherit;
  5401. background-color:rgba(255, 255, 255, 1);
  5402. box-sizing:border-box;
  5403. border-width:1px;
  5404. border-style:solid;
  5405. border-color:rgba(201, 201, 201, 1);
  5406. border-radius:4px;
  5407. -moz-box-shadow:none;
  5408. -webkit-box-shadow:none;
  5409. box-shadow:none;
  5410. font-family:'Microsoft YaHei', sans-serif;
  5411. font-weight:400;
  5412. font-style:normal;
  5413. font-size:14px;
  5414. color:#CCCCCC;
  5415. text-align:left;
  5416. }
  5417. #u28949 {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:1780px;
  5421. top:336px;
  5422. width:380px;
  5423. height:80px;
  5424. display:flex;
  5425. font-family:'Microsoft YaHei', sans-serif;
  5426. font-weight:400;
  5427. font-style:normal;
  5428. font-size:14px;
  5429. color:#CCCCCC;
  5430. text-align:left;
  5431. }
  5432. #u28949 .text {
  5433. position:absolute;
  5434. align-self:center;
  5435. padding:2px 8px 2px 8px;
  5436. box-sizing:border-box;
  5437. width:100%;
  5438. }
  5439. #u28949_text {
  5440. border-width:0px;
  5441. word-wrap:break-word;
  5442. text-transform:none;
  5443. visibility:hidden;
  5444. }
  5445. #u28950_input {
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:354px;
  5450. height:76px;
  5451. padding:2px 2px 2px 2px;
  5452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5453. font-weight:400;
  5454. font-style:normal;
  5455. font-size:14px;
  5456. letter-spacing:normal;
  5457. color:#000000;
  5458. vertical-align:none;
  5459. text-align:left;
  5460. text-transform:none;
  5461. background-color:transparent;
  5462. border-color:transparent;
  5463. }
  5464. #u28950_input.disabled {
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:354px;
  5469. height:76px;
  5470. padding:2px 2px 2px 2px;
  5471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5472. font-weight:400;
  5473. font-style:normal;
  5474. font-size:14px;
  5475. letter-spacing:normal;
  5476. color:#000000;
  5477. vertical-align:none;
  5478. text-align:left;
  5479. text-transform:none;
  5480. background-color:transparent;
  5481. border-color:transparent;
  5482. }
  5483. #u28950_div {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:354px;
  5489. height:76px;
  5490. background:inherit;
  5491. background-color:rgba(255, 255, 255, 1);
  5492. border:none;
  5493. border-radius:0px;
  5494. -moz-box-shadow:none;
  5495. -webkit-box-shadow:none;
  5496. box-shadow:none;
  5497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5498. font-weight:400;
  5499. font-style:normal;
  5500. font-size:14px;
  5501. }
  5502. #u28950 {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:1794px;
  5506. top:338px;
  5507. width:354px;
  5508. height:76px;
  5509. display:flex;
  5510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5511. font-weight:400;
  5512. font-style:normal;
  5513. font-size:14px;
  5514. }
  5515. #u28950 .text {
  5516. position:absolute;
  5517. align-self:center;
  5518. padding:2px 2px 2px 2px;
  5519. box-sizing:border-box;
  5520. width:100%;
  5521. }
  5522. #u28950_div.disabled {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:354px;
  5528. height:76px;
  5529. background:inherit;
  5530. background-color:rgba(240, 240, 240, 1);
  5531. border:none;
  5532. border-radius:0px;
  5533. -moz-box-shadow:none;
  5534. -webkit-box-shadow:none;
  5535. box-shadow:none;
  5536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5537. font-weight:400;
  5538. font-style:normal;
  5539. font-size:14px;
  5540. }
  5541. #u28950.disabled {
  5542. }
  5543. #u28951_div {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:0px;
  5547. top:0px;
  5548. width:88px;
  5549. height:40px;
  5550. background:inherit;
  5551. background-color:rgba(255, 255, 255, 0);
  5552. border:none;
  5553. border-top:0px;
  5554. border-right:0px;
  5555. border-bottom:0px;
  5556. border-radius:0px;
  5557. border-top-left-radius:0px;
  5558. border-bottom-left-radius:0px;
  5559. -moz-box-shadow:none;
  5560. -webkit-box-shadow:none;
  5561. box-shadow:none;
  5562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5563. font-weight:400;
  5564. font-style:normal;
  5565. font-size:14px;
  5566. text-align:right;
  5567. }
  5568. #u28951 {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:1692px;
  5572. top:134px;
  5573. width:88px;
  5574. height:40px;
  5575. display:flex;
  5576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5577. font-weight:400;
  5578. font-style:normal;
  5579. font-size:14px;
  5580. text-align:right;
  5581. }
  5582. #u28951 .text {
  5583. position:absolute;
  5584. align-self:center;
  5585. padding:5px 10px 5px 0px;
  5586. box-sizing:border-box;
  5587. width:100%;
  5588. }
  5589. #u28951_text {
  5590. border-width:0px;
  5591. white-space:nowrap;
  5592. text-transform:none;
  5593. }
  5594. #u28952 {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:0px;
  5598. top:0px;
  5599. width:0px;
  5600. height:0px;
  5601. }
  5602. #u28953_div {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:0px;
  5606. top:0px;
  5607. width:380px;
  5608. height:40px;
  5609. background:inherit;
  5610. background-color:rgba(255, 255, 255, 1);
  5611. box-sizing:border-box;
  5612. border-width:1px;
  5613. border-style:solid;
  5614. border-color:rgba(215, 215, 215, 1);
  5615. border-radius:4px;
  5616. -moz-box-shadow:none;
  5617. -webkit-box-shadow:none;
  5618. box-shadow:none;
  5619. font-size:14px;
  5620. }
  5621. #u28953 {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:1780px;
  5625. top:134px;
  5626. width:380px;
  5627. height:40px;
  5628. display:flex;
  5629. font-size:14px;
  5630. }
  5631. #u28953 .text {
  5632. position:absolute;
  5633. align-self:center;
  5634. padding:2px 2px 2px 2px;
  5635. box-sizing:border-box;
  5636. width:100%;
  5637. }
  5638. #u28953_text {
  5639. border-width:0px;
  5640. word-wrap:break-word;
  5641. text-transform:none;
  5642. visibility:hidden;
  5643. }
  5644. #u28954_input {
  5645. position:absolute;
  5646. left:0px;
  5647. top:0px;
  5648. width:363px;
  5649. height:31px;
  5650. padding:2px 2px 2px 2px;
  5651. font-family:'ArialMT', 'Arial', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. font-size:14px;
  5655. letter-spacing:normal;
  5656. color:#AAAAAA;
  5657. vertical-align:none;
  5658. text-align:left;
  5659. text-transform:none;
  5660. background-color:transparent;
  5661. border-color:transparent;
  5662. }
  5663. #u28954_input.disabled {
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:363px;
  5668. height:31px;
  5669. padding:2px 2px 2px 2px;
  5670. font-family:'ArialMT', 'Arial', sans-serif;
  5671. font-weight:400;
  5672. font-style:normal;
  5673. font-size:14px;
  5674. letter-spacing:normal;
  5675. color:#AAAAAA;
  5676. vertical-align:none;
  5677. text-align:left;
  5678. text-transform:none;
  5679. background-color:transparent;
  5680. border-color:transparent;
  5681. }
  5682. #u28954_div {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:0px;
  5686. top:0px;
  5687. width:363px;
  5688. height:31px;
  5689. background:inherit;
  5690. background-color:rgba(255, 255, 255, 1);
  5691. border:none;
  5692. border-radius:0px;
  5693. -moz-box-shadow:none;
  5694. -webkit-box-shadow:none;
  5695. box-shadow:none;
  5696. font-size:14px;
  5697. color:#AAAAAA;
  5698. }
  5699. #u28954 {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:1792px;
  5703. top:137px;
  5704. width:363px;
  5705. height:31px;
  5706. display:flex;
  5707. font-size:14px;
  5708. color:#AAAAAA;
  5709. }
  5710. #u28954 .text {
  5711. position:absolute;
  5712. align-self:flex-start;
  5713. padding:2px 2px 2px 2px;
  5714. box-sizing:border-box;
  5715. width:100%;
  5716. }
  5717. #u28954_div.disabled {
  5718. border-width:0px;
  5719. position:absolute;
  5720. left:0px;
  5721. top:0px;
  5722. width:363px;
  5723. height:31px;
  5724. background:inherit;
  5725. background-color:rgba(240, 240, 240, 1);
  5726. border:none;
  5727. border-radius:0px;
  5728. -moz-box-shadow:none;
  5729. -webkit-box-shadow:none;
  5730. box-shadow:none;
  5731. font-size:14px;
  5732. color:#AAAAAA;
  5733. }
  5734. #u28954.disabled {
  5735. }
  5736. .u28954_input_option {
  5737. font-size:14px;
  5738. }
  5739. #u28955 {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:0px;
  5743. top:0px;
  5744. width:0px;
  5745. height:0px;
  5746. }
  5747. #u28956_div {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:0px;
  5751. top:0px;
  5752. width:160px;
  5753. height:30px;
  5754. background:inherit;
  5755. background-color:rgba(255, 255, 255, 1);
  5756. box-sizing:border-box;
  5757. border-width:1px;
  5758. border-style:solid;
  5759. border-color:rgba(201, 201, 201, 1);
  5760. border-radius:4px;
  5761. -moz-box-shadow:none;
  5762. -webkit-box-shadow:none;
  5763. box-shadow:none;
  5764. font-family:'Microsoft YaHei', sans-serif;
  5765. font-weight:400;
  5766. font-style:normal;
  5767. font-size:14px;
  5768. color:#CCCCCC;
  5769. text-align:left;
  5770. }
  5771. #u28956 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:531px;
  5775. top:159px;
  5776. width:160px;
  5777. height:30px;
  5778. display:flex;
  5779. font-family:'Microsoft YaHei', sans-serif;
  5780. font-weight:400;
  5781. font-style:normal;
  5782. font-size:14px;
  5783. color:#CCCCCC;
  5784. text-align:left;
  5785. }
  5786. #u28956 .text {
  5787. position:absolute;
  5788. align-self:center;
  5789. padding:2px 8px 2px 8px;
  5790. box-sizing:border-box;
  5791. width:100%;
  5792. }
  5793. #u28956_text {
  5794. border-width:0px;
  5795. word-wrap:break-word;
  5796. text-transform:none;
  5797. visibility:hidden;
  5798. }
  5799. #u28957_input {
  5800. position:absolute;
  5801. left:0px;
  5802. top:0px;
  5803. width:150px;
  5804. height:28px;
  5805. padding:2px 2px 2px 2px;
  5806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5807. font-weight:400;
  5808. font-style:normal;
  5809. font-size:14px;
  5810. letter-spacing:normal;
  5811. color:#000000;
  5812. vertical-align:none;
  5813. text-align:left;
  5814. text-transform:none;
  5815. background-color:transparent;
  5816. border-color:transparent;
  5817. }
  5818. #u28957_input.disabled {
  5819. position:absolute;
  5820. left:0px;
  5821. top:0px;
  5822. width:150px;
  5823. height:28px;
  5824. padding:2px 2px 2px 2px;
  5825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:14px;
  5829. letter-spacing:normal;
  5830. color:#000000;
  5831. vertical-align:none;
  5832. text-align:left;
  5833. text-transform:none;
  5834. background-color:transparent;
  5835. border-color:transparent;
  5836. }
  5837. #u28957_div {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:150px;
  5843. height:28px;
  5844. background:inherit;
  5845. background-color:rgba(255, 255, 255, 1);
  5846. border:none;
  5847. border-radius:0px;
  5848. -moz-box-shadow:none;
  5849. -webkit-box-shadow:none;
  5850. box-shadow:none;
  5851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5852. font-weight:400;
  5853. font-style:normal;
  5854. font-size:14px;
  5855. }
  5856. #u28957 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:537px;
  5860. top:160px;
  5861. width:150px;
  5862. height:28px;
  5863. display:flex;
  5864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:14px;
  5868. }
  5869. #u28957 .text {
  5870. position:absolute;
  5871. align-self:center;
  5872. padding:2px 2px 2px 2px;
  5873. box-sizing:border-box;
  5874. width:100%;
  5875. }
  5876. #u28957_div.disabled {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:150px;
  5882. height:28px;
  5883. background:inherit;
  5884. background-color:rgba(240, 240, 240, 1);
  5885. border:none;
  5886. border-radius:0px;
  5887. -moz-box-shadow:none;
  5888. -webkit-box-shadow:none;
  5889. box-shadow:none;
  5890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5891. font-weight:400;
  5892. font-style:normal;
  5893. font-size:14px;
  5894. }
  5895. #u28957.disabled {
  5896. }
  5897. #u28958_div {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:60px;
  5903. height:30px;
  5904. background:inherit;
  5905. background-color:rgba(24, 144, 255, 1);
  5906. border:none;
  5907. border-radius:4px;
  5908. -moz-box-shadow:none;
  5909. -webkit-box-shadow:none;
  5910. box-shadow:none;
  5911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5912. font-weight:400;
  5913. font-style:normal;
  5914. font-size:14px;
  5915. color:#FFFFFF;
  5916. }
  5917. #u28958 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:701px;
  5921. top:159px;
  5922. width:60px;
  5923. height:30px;
  5924. display:flex;
  5925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:14px;
  5929. color:#FFFFFF;
  5930. }
  5931. #u28958 .text {
  5932. position:absolute;
  5933. align-self:center;
  5934. padding:2px 2px 2px 2px;
  5935. box-sizing:border-box;
  5936. width:100%;
  5937. }
  5938. #u28958_text {
  5939. border-width:0px;
  5940. word-wrap:break-word;
  5941. text-transform:none;
  5942. }
  5943. #u28959_div {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:57px;
  5949. height:50px;
  5950. background:inherit;
  5951. background-color:rgba(255, 255, 255, 0);
  5952. border:none;
  5953. border-left:0px;
  5954. border-top:0px;
  5955. border-right:0px;
  5956. border-radius:0px;
  5957. border-bottom-right-radius:0px;
  5958. border-bottom-left-radius:0px;
  5959. -moz-box-shadow:none;
  5960. -webkit-box-shadow:none;
  5961. box-shadow:none;
  5962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5963. font-weight:400;
  5964. font-style:normal;
  5965. font-size:14px;
  5966. line-height:40px;
  5967. }
  5968. #u28959 {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:763px;
  5972. top:51px;
  5973. width:57px;
  5974. height:50px;
  5975. display:flex;
  5976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5977. font-weight:400;
  5978. font-style:normal;
  5979. font-size:14px;
  5980. line-height:40px;
  5981. }
  5982. #u28959 .text {
  5983. position:absolute;
  5984. align-self:center;
  5985. padding:0px 0px 0px 0px;
  5986. box-sizing:border-box;
  5987. width:100%;
  5988. }
  5989. #u28959_text {
  5990. border-width:0px;
  5991. white-space:nowrap;
  5992. text-transform:none;
  5993. }
  5994. #u28961_div {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:0px;
  5998. top:0px;
  5999. width:200px;
  6000. height:1180px;
  6001. background:inherit;
  6002. background-color:rgba(255, 255, 255, 1);
  6003. border:none;
  6004. border-radius:0px;
  6005. -moz-box-shadow:none;
  6006. -webkit-box-shadow:none;
  6007. box-shadow:none;
  6008. }
  6009. #u28961 {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:120px;
  6013. top:50px;
  6014. width:200px;
  6015. height:1180px;
  6016. display:flex;
  6017. }
  6018. #u28961 .text {
  6019. position:absolute;
  6020. align-self:center;
  6021. padding:2px 2px 2px 2px;
  6022. box-sizing:border-box;
  6023. width:100%;
  6024. }
  6025. #u28961_text {
  6026. border-width:0px;
  6027. word-wrap:break-word;
  6028. text-transform:none;
  6029. visibility:hidden;
  6030. }
  6031. #u28962_div {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:0px;
  6035. top:0px;
  6036. width:200px;
  6037. height:60px;
  6038. background:inherit;
  6039. background-color:rgba(224, 231, 247, 1);
  6040. border:none;
  6041. border-radius:0px;
  6042. -moz-box-shadow:none;
  6043. -webkit-box-shadow:none;
  6044. box-shadow:none;
  6045. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6046. font-weight:500;
  6047. font-style:normal;
  6048. font-size:18px;
  6049. }
  6050. #u28962 {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:120px;
  6054. top:50px;
  6055. width:200px;
  6056. height:60px;
  6057. display:flex;
  6058. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6059. font-weight:500;
  6060. font-style:normal;
  6061. font-size:18px;
  6062. }
  6063. #u28962 .text {
  6064. position:absolute;
  6065. align-self:center;
  6066. padding:0px 0px 0px 20px;
  6067. box-sizing:border-box;
  6068. width:100%;
  6069. }
  6070. #u28962_text {
  6071. border-width:0px;
  6072. word-wrap:break-word;
  6073. text-transform:none;
  6074. }
  6075. #u28963_div {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:97px;
  6081. height:22px;
  6082. background:inherit;
  6083. background-color:rgba(255, 255, 255, 0);
  6084. border:none;
  6085. border-radius:0px;
  6086. -moz-box-shadow:none;
  6087. -webkit-box-shadow:none;
  6088. box-shadow:none;
  6089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6090. font-weight:400;
  6091. font-style:normal;
  6092. font-size:16px;
  6093. }
  6094. #u28963 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:147px;
  6098. top:161px;
  6099. width:97px;
  6100. height:22px;
  6101. display:flex;
  6102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6103. font-weight:400;
  6104. font-style:normal;
  6105. font-size:16px;
  6106. }
  6107. #u28963 .text {
  6108. position:absolute;
  6109. align-self:flex-start;
  6110. padding:0px 0px 0px 0px;
  6111. box-sizing:border-box;
  6112. width:100%;
  6113. }
  6114. #u28963_text {
  6115. border-width:0px;
  6116. white-space:nowrap;
  6117. text-transform:none;
  6118. }
  6119. #u28964_div {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:97px;
  6125. height:22px;
  6126. background:inherit;
  6127. background-color:rgba(255, 255, 255, 0);
  6128. border:none;
  6129. border-radius:0px;
  6130. -moz-box-shadow:none;
  6131. -webkit-box-shadow:none;
  6132. box-shadow:none;
  6133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:16px;
  6137. }
  6138. #u28964 {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:147px;
  6142. top:203px;
  6143. width:97px;
  6144. height:22px;
  6145. display:flex;
  6146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6147. font-weight:400;
  6148. font-style:normal;
  6149. font-size:16px;
  6150. }
  6151. #u28964 .text {
  6152. position:absolute;
  6153. align-self:flex-start;
  6154. padding:0px 0px 0px 0px;
  6155. box-sizing:border-box;
  6156. width:100%;
  6157. }
  6158. #u28964_text {
  6159. border-width:0px;
  6160. white-space:nowrap;
  6161. text-transform:none;
  6162. }
  6163. #u28965_div {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:97px;
  6169. height:22px;
  6170. background:inherit;
  6171. background-color:rgba(255, 255, 255, 0);
  6172. border:none;
  6173. border-radius:0px;
  6174. -moz-box-shadow:none;
  6175. -webkit-box-shadow:none;
  6176. box-shadow:none;
  6177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6178. font-weight:400;
  6179. font-style:normal;
  6180. font-size:16px;
  6181. }
  6182. #u28965 {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:147px;
  6186. top:247px;
  6187. width:97px;
  6188. height:22px;
  6189. display:flex;
  6190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6191. font-weight:400;
  6192. font-style:normal;
  6193. font-size:16px;
  6194. }
  6195. #u28965 .text {
  6196. position:absolute;
  6197. align-self:flex-start;
  6198. padding:0px 0px 0px 0px;
  6199. box-sizing:border-box;
  6200. width:100%;
  6201. }
  6202. #u28965_text {
  6203. border-width:0px;
  6204. white-space:nowrap;
  6205. text-transform:none;
  6206. }
  6207. #u28966_div {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:49px;
  6213. height:17px;
  6214. background:inherit;
  6215. background-color:rgba(255, 255, 255, 0);
  6216. border:none;
  6217. border-radius:0px;
  6218. -moz-box-shadow:none;
  6219. -webkit-box-shadow:none;
  6220. box-shadow:none;
  6221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. font-size:12px;
  6225. color:#AAAAAA;
  6226. }
  6227. #u28966 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:147px;
  6231. top:125px;
  6232. width:49px;
  6233. height:17px;
  6234. display:flex;
  6235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6236. font-weight:400;
  6237. font-style:normal;
  6238. font-size:12px;
  6239. color:#AAAAAA;
  6240. }
  6241. #u28966 .text {
  6242. position:absolute;
  6243. align-self:flex-start;
  6244. padding:0px 0px 0px 0px;
  6245. box-sizing:border-box;
  6246. width:100%;
  6247. }
  6248. #u28966_text {
  6249. border-width:0px;
  6250. white-space:nowrap;
  6251. text-transform:none;
  6252. }
  6253. #u28967_div {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:0px;
  6257. top:0px;
  6258. width:65px;
  6259. height:22px;
  6260. background:inherit;
  6261. background-color:rgba(255, 255, 255, 0);
  6262. border:none;
  6263. border-radius:0px;
  6264. -moz-box-shadow:none;
  6265. -webkit-box-shadow:none;
  6266. box-shadow:none;
  6267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6268. font-weight:400;
  6269. font-style:normal;
  6270. font-size:16px;
  6271. }
  6272. #u28967 {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:147px;
  6276. top:347px;
  6277. width:65px;
  6278. height:22px;
  6279. display:flex;
  6280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6281. font-weight:400;
  6282. font-style:normal;
  6283. font-size:16px;
  6284. }
  6285. #u28967 .text {
  6286. position:absolute;
  6287. align-self:flex-start;
  6288. padding:0px 0px 0px 0px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u28967_text {
  6293. border-width:0px;
  6294. white-space:nowrap;
  6295. text-transform:none;
  6296. }
  6297. #u28968_div {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:49px;
  6303. height:17px;
  6304. background:inherit;
  6305. background-color:rgba(255, 255, 255, 0);
  6306. border:none;
  6307. border-radius:0px;
  6308. -moz-box-shadow:none;
  6309. -webkit-box-shadow:none;
  6310. box-shadow:none;
  6311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6312. font-weight:400;
  6313. font-style:normal;
  6314. font-size:12px;
  6315. color:#AAAAAA;
  6316. }
  6317. #u28968 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:147px;
  6321. top:311px;
  6322. width:49px;
  6323. height:17px;
  6324. display:flex;
  6325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6326. font-weight:400;
  6327. font-style:normal;
  6328. font-size:12px;
  6329. color:#AAAAAA;
  6330. }
  6331. #u28968 .text {
  6332. position:absolute;
  6333. align-self:flex-start;
  6334. padding:0px 0px 0px 0px;
  6335. box-sizing:border-box;
  6336. width:100%;
  6337. }
  6338. #u28968_text {
  6339. border-width:0px;
  6340. white-space:nowrap;
  6341. text-transform:none;
  6342. }
  6343. #u28969_img {
  6344. border-width:0px;
  6345. position:absolute;
  6346. left:0px;
  6347. top:0px;
  6348. width:201px;
  6349. height:2px;
  6350. }
  6351. #u28969 {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:120px;
  6355. top:289px;
  6356. width:200px;
  6357. height:1px;
  6358. display:flex;
  6359. }
  6360. #u28969 .text {
  6361. position:absolute;
  6362. align-self:center;
  6363. padding:2px 2px 2px 2px;
  6364. box-sizing:border-box;
  6365. width:100%;
  6366. }
  6367. #u28969_text {
  6368. border-width:0px;
  6369. word-wrap:break-word;
  6370. text-transform:none;
  6371. visibility:hidden;
  6372. }
  6373. #u28970 {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:0px;
  6377. top:0px;
  6378. width:0px;
  6379. height:0px;
  6380. }
  6381. #u28971 {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:0px;
  6385. top:0px;
  6386. width:0px;
  6387. height:0px;
  6388. }
  6389. #u28972_div {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:0px;
  6393. top:0px;
  6394. width:380px;
  6395. height:164px;
  6396. background:inherit;
  6397. background-color:rgba(255, 255, 255, 1);
  6398. box-sizing:border-box;
  6399. border-width:1px;
  6400. border-style:solid;
  6401. border-color:rgba(204, 204, 204, 1);
  6402. border-radius:4px;
  6403. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6404. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6405. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6406. font-family:'Microsoft YaHei', sans-serif;
  6407. font-weight:400;
  6408. font-style:normal;
  6409. }
  6410. #u28972 {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:1153px;
  6414. top:410px;
  6415. width:380px;
  6416. height:164px;
  6417. display:flex;
  6418. font-family:'Microsoft YaHei', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. }
  6422. #u28972 .text {
  6423. position:absolute;
  6424. align-self:center;
  6425. padding:2px 2px 2px 2px;
  6426. box-sizing:border-box;
  6427. width:100%;
  6428. }
  6429. #u28972_text {
  6430. border-width:0px;
  6431. word-wrap:break-word;
  6432. text-transform:none;
  6433. visibility:hidden;
  6434. }
  6435. #u28973_div {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:299px;
  6441. height:22px;
  6442. background:inherit;
  6443. background-color:rgba(255, 255, 255, 0);
  6444. border:none;
  6445. border-radius:0px;
  6446. -moz-box-shadow:none;
  6447. -webkit-box-shadow:none;
  6448. box-shadow:none;
  6449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6450. font-weight:400;
  6451. font-style:normal;
  6452. font-size:14px;
  6453. color:#666666;
  6454. line-height:22px;
  6455. }
  6456. #u28973 {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:1213px;
  6460. top:465px;
  6461. width:299px;
  6462. height:22px;
  6463. display:flex;
  6464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6465. font-weight:400;
  6466. font-style:normal;
  6467. font-size:14px;
  6468. color:#666666;
  6469. line-height:22px;
  6470. }
  6471. #u28973 .text {
  6472. position:absolute;
  6473. align-self:flex-start;
  6474. padding:0px 0px 0px 0px;
  6475. box-sizing:border-box;
  6476. width:100%;
  6477. }
  6478. #u28973_text {
  6479. border-width:0px;
  6480. word-wrap:break-word;
  6481. text-transform:none;
  6482. }
  6483. #u28974_div {
  6484. border-width:0px;
  6485. position:absolute;
  6486. left:0px;
  6487. top:0px;
  6488. width:163px;
  6489. height:21px;
  6490. background:inherit;
  6491. background-color:rgba(255, 255, 255, 0);
  6492. border:none;
  6493. border-radius:0px;
  6494. -moz-box-shadow:none;
  6495. -webkit-box-shadow:none;
  6496. box-shadow:none;
  6497. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6498. font-weight:650;
  6499. font-style:normal;
  6500. font-size:18px;
  6501. color:#000000;
  6502. line-height:22px;
  6503. }
  6504. #u28974 {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:1213px;
  6508. top:435px;
  6509. width:163px;
  6510. height:21px;
  6511. display:flex;
  6512. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6513. font-weight:650;
  6514. font-style:normal;
  6515. font-size:18px;
  6516. color:#000000;
  6517. line-height:22px;
  6518. }
  6519. #u28974 .text {
  6520. position:absolute;
  6521. align-self:flex-start;
  6522. padding:0px 0px 0px 0px;
  6523. box-sizing:border-box;
  6524. width:100%;
  6525. }
  6526. #u28974_text {
  6527. border-width:0px;
  6528. white-space:nowrap;
  6529. text-transform:none;
  6530. }
  6531. #u28975_div {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:0px;
  6535. top:0px;
  6536. width:61px;
  6537. height:30px;
  6538. background:inherit;
  6539. background-color:rgba(24, 144, 255, 1);
  6540. border:none;
  6541. border-radius:4px;
  6542. -moz-box-shadow:none;
  6543. -webkit-box-shadow:none;
  6544. box-shadow:none;
  6545. font-family:'Microsoft YaHei', sans-serif;
  6546. font-weight:400;
  6547. font-style:normal;
  6548. font-size:14px;
  6549. color:#FFFFFF;
  6550. }
  6551. #u28975 {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:1455px;
  6555. top:525px;
  6556. width:61px;
  6557. height:30px;
  6558. display:flex;
  6559. font-family:'Microsoft YaHei', sans-serif;
  6560. font-weight:400;
  6561. font-style:normal;
  6562. font-size:14px;
  6563. color:#FFFFFF;
  6564. }
  6565. #u28975 .text {
  6566. position:absolute;
  6567. align-self:center;
  6568. padding:2px 16px 2px 16px;
  6569. box-sizing:border-box;
  6570. width:100%;
  6571. }
  6572. #u28975_text {
  6573. border-width:0px;
  6574. white-space:nowrap;
  6575. text-transform:none;
  6576. }
  6577. #u28976_div {
  6578. border-width:0px;
  6579. position:absolute;
  6580. left:0px;
  6581. top:0px;
  6582. width:66px;
  6583. height:30px;
  6584. background:inherit;
  6585. background-color:rgba(255, 255, 255, 1);
  6586. box-sizing:border-box;
  6587. border-width:1px;
  6588. border-style:solid;
  6589. border-color:rgba(217, 217, 217, 1);
  6590. border-radius:4px;
  6591. -moz-box-shadow:none;
  6592. -webkit-box-shadow:none;
  6593. box-shadow:none;
  6594. font-family:'Microsoft YaHei', sans-serif;
  6595. font-weight:400;
  6596. font-style:normal;
  6597. font-size:14px;
  6598. color:rgba(0, 0, 0, 0.647058823529412);
  6599. line-height:21px;
  6600. }
  6601. #u28976 {
  6602. border-width:0px;
  6603. position:absolute;
  6604. left:1373px;
  6605. top:525px;
  6606. width:66px;
  6607. height:30px;
  6608. display:flex;
  6609. font-family:'Microsoft YaHei', sans-serif;
  6610. font-weight:400;
  6611. font-style:normal;
  6612. font-size:14px;
  6613. color:rgba(0, 0, 0, 0.647058823529412);
  6614. line-height:21px;
  6615. }
  6616. #u28976 .text {
  6617. position:absolute;
  6618. align-self:center;
  6619. padding:2px 16px 2px 16px;
  6620. box-sizing:border-box;
  6621. width:100%;
  6622. }
  6623. #u28976_text {
  6624. border-width:0px;
  6625. white-space:nowrap;
  6626. text-transform:none;
  6627. }
  6628. #u28977_img {
  6629. border-width:0px;
  6630. position:absolute;
  6631. left:0px;
  6632. top:0px;
  6633. width:20px;
  6634. height:20px;
  6635. }
  6636. #u28977 {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:1182px;
  6640. top:439px;
  6641. width:20px;
  6642. height:20px;
  6643. display:flex;
  6644. }
  6645. #u28977 .text {
  6646. position:absolute;
  6647. align-self:center;
  6648. padding:2px 2px 2px 2px;
  6649. box-sizing:border-box;
  6650. width:100%;
  6651. }
  6652. #u28977_text {
  6653. border-width:0px;
  6654. word-wrap:break-word;
  6655. text-transform:none;
  6656. visibility:hidden;
  6657. }
  6658. #u28978_div {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:0px;
  6662. top:0px;
  6663. width:953px;
  6664. height:20px;
  6665. background:inherit;
  6666. background-color:rgba(255, 255, 255, 0);
  6667. border:none;
  6668. border-left:0px;
  6669. border-top:0px;
  6670. border-right:0px;
  6671. border-radius:0px;
  6672. border-bottom-right-radius:0px;
  6673. border-bottom-left-radius:0px;
  6674. -moz-box-shadow:none;
  6675. -webkit-box-shadow:none;
  6676. box-shadow:none;
  6677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. font-size:14px;
  6681. color:#7F7F7F;
  6682. }
  6683. #u28978 {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:352px;
  6687. top:120px;
  6688. width:953px;
  6689. height:20px;
  6690. display:flex;
  6691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6692. font-weight:400;
  6693. font-style:normal;
  6694. font-size:14px;
  6695. color:#7F7F7F;
  6696. }
  6697. #u28978 .text {
  6698. position:absolute;
  6699. align-self:center;
  6700. padding:0px 0px 0px 0px;
  6701. box-sizing:border-box;
  6702. width:100%;
  6703. }
  6704. #u28978_text {
  6705. border-width:0px;
  6706. white-space:nowrap;
  6707. text-transform:none;
  6708. }
  6709. #u28979 {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:0px;
  6713. top:0px;
  6714. width:0px;
  6715. height:0px;
  6716. }
  6717. #u28980_div {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:0px;
  6721. top:0px;
  6722. width:160px;
  6723. height:30px;
  6724. background:inherit;
  6725. background-color:rgba(255, 255, 255, 1);
  6726. box-sizing:border-box;
  6727. border-width:1px;
  6728. border-style:solid;
  6729. border-color:rgba(215, 215, 215, 1);
  6730. border-radius:4px;
  6731. -moz-box-shadow:none;
  6732. -webkit-box-shadow:none;
  6733. box-shadow:none;
  6734. font-size:14px;
  6735. }
  6736. #u28980 {
  6737. border-width:0px;
  6738. position:absolute;
  6739. left:361px;
  6740. top:159px;
  6741. width:160px;
  6742. height:30px;
  6743. display:flex;
  6744. font-size:14px;
  6745. }
  6746. #u28980 .text {
  6747. position:absolute;
  6748. align-self:center;
  6749. padding:2px 2px 2px 2px;
  6750. box-sizing:border-box;
  6751. width:100%;
  6752. }
  6753. #u28980_text {
  6754. border-width:0px;
  6755. word-wrap:break-word;
  6756. text-transform:none;
  6757. visibility:hidden;
  6758. }
  6759. #u28981_input {
  6760. position:absolute;
  6761. left:0px;
  6762. top:0px;
  6763. width:153px;
  6764. height:23px;
  6765. padding:2px 2px 2px 2px;
  6766. font-family:'ArialMT', 'Arial', sans-serif;
  6767. font-weight:400;
  6768. font-style:normal;
  6769. font-size:14px;
  6770. letter-spacing:normal;
  6771. color:#AAAAAA;
  6772. vertical-align:none;
  6773. text-align:left;
  6774. text-transform:none;
  6775. background-color:transparent;
  6776. border-color:transparent;
  6777. }
  6778. #u28981_input.disabled {
  6779. position:absolute;
  6780. left:0px;
  6781. top:0px;
  6782. width:153px;
  6783. height:23px;
  6784. padding:2px 2px 2px 2px;
  6785. font-family:'ArialMT', 'Arial', sans-serif;
  6786. font-weight:400;
  6787. font-style:normal;
  6788. font-size:14px;
  6789. letter-spacing:normal;
  6790. color:#AAAAAA;
  6791. vertical-align:none;
  6792. text-align:left;
  6793. text-transform:none;
  6794. background-color:transparent;
  6795. border-color:transparent;
  6796. }
  6797. #u28981_div {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:0px;
  6801. top:0px;
  6802. width:153px;
  6803. height:23px;
  6804. background:inherit;
  6805. background-color:rgba(255, 255, 255, 1);
  6806. border:none;
  6807. border-radius:0px;
  6808. -moz-box-shadow:none;
  6809. -webkit-box-shadow:none;
  6810. box-shadow:none;
  6811. font-size:14px;
  6812. color:#AAAAAA;
  6813. }
  6814. #u28981 {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:366px;
  6818. top:161px;
  6819. width:153px;
  6820. height:23px;
  6821. display:flex;
  6822. font-size:14px;
  6823. color:#AAAAAA;
  6824. }
  6825. #u28981 .text {
  6826. position:absolute;
  6827. align-self:flex-start;
  6828. padding:2px 2px 2px 2px;
  6829. box-sizing:border-box;
  6830. width:100%;
  6831. }
  6832. #u28981_div.disabled {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:0px;
  6836. top:0px;
  6837. width:153px;
  6838. height:23px;
  6839. background:inherit;
  6840. background-color:rgba(240, 240, 240, 1);
  6841. border:none;
  6842. border-radius:0px;
  6843. -moz-box-shadow:none;
  6844. -webkit-box-shadow:none;
  6845. box-shadow:none;
  6846. font-size:14px;
  6847. color:#AAAAAA;
  6848. }
  6849. #u28981.disabled {
  6850. }
  6851. .u28981_input_option {
  6852. font-size:14px;
  6853. }
  6854. #u28982 {
  6855. border-width:0px;
  6856. position:absolute;
  6857. left:0px;
  6858. top:0px;
  6859. width:0px;
  6860. height:0px;
  6861. }
  6862. #u28983_div {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:0px;
  6866. top:0px;
  6867. width:680px;
  6868. height:490px;
  6869. background:inherit;
  6870. background-color:rgba(255, 255, 255, 1);
  6871. box-sizing:border-box;
  6872. border-width:1px;
  6873. border-style:solid;
  6874. border-color:rgba(215, 215, 215, 1);
  6875. border-radius:4px;
  6876. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  6877. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  6878. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  6879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6880. font-weight:400;
  6881. font-style:normal;
  6882. font-size:14px;
  6883. color:#AAAAAA;
  6884. text-align:center;
  6885. line-height:30px;
  6886. }
  6887. #u28983 {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:1629px;
  6891. top:562px;
  6892. width:680px;
  6893. height:490px;
  6894. display:flex;
  6895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6896. font-weight:400;
  6897. font-style:normal;
  6898. font-size:14px;
  6899. color:#AAAAAA;
  6900. text-align:center;
  6901. line-height:30px;
  6902. }
  6903. #u28983 .text {
  6904. position:absolute;
  6905. align-self:center;
  6906. padding:5px 10px 5px 10px;
  6907. box-sizing:border-box;
  6908. width:100%;
  6909. }
  6910. #u28983_text {
  6911. border-width:0px;
  6912. word-wrap:break-word;
  6913. text-transform:none;
  6914. visibility:hidden;
  6915. }
  6916. #u28984_div {
  6917. border-width:0px;
  6918. position:absolute;
  6919. left:0px;
  6920. top:0px;
  6921. width:47px;
  6922. height:35px;
  6923. background:inherit;
  6924. background-color:rgba(255, 255, 255, 0);
  6925. border:none;
  6926. border-top:0px;
  6927. border-right:0px;
  6928. border-bottom:0px;
  6929. border-radius:0px;
  6930. border-top-left-radius:0px;
  6931. border-bottom-left-radius:0px;
  6932. -moz-box-shadow:none;
  6933. -webkit-box-shadow:none;
  6934. box-shadow:none;
  6935. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6936. font-weight:500;
  6937. font-style:normal;
  6938. font-size:18px;
  6939. }
  6940. #u28984 {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:1659px;
  6944. top:580px;
  6945. width:47px;
  6946. height:35px;
  6947. display:flex;
  6948. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6949. font-weight:500;
  6950. font-style:normal;
  6951. font-size:18px;
  6952. }
  6953. #u28984 .text {
  6954. position:absolute;
  6955. align-self:center;
  6956. padding:5px 10px 5px 0px;
  6957. box-sizing:border-box;
  6958. width:100%;
  6959. }
  6960. #u28984_text {
  6961. border-width:0px;
  6962. white-space:nowrap;
  6963. text-transform:none;
  6964. }
  6965. #u28985_div {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:0px;
  6970. width:88px;
  6971. height:40px;
  6972. background:inherit;
  6973. background-color:rgba(255, 255, 255, 0);
  6974. border:none;
  6975. border-top:0px;
  6976. border-right:0px;
  6977. border-bottom:0px;
  6978. border-radius:0px;
  6979. border-top-left-radius:0px;
  6980. border-bottom-left-radius:0px;
  6981. -moz-box-shadow:none;
  6982. -webkit-box-shadow:none;
  6983. box-shadow:none;
  6984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6985. font-weight:400;
  6986. font-style:normal;
  6987. font-size:14px;
  6988. text-align:right;
  6989. }
  6990. #u28985 {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:1692px;
  6994. top:746px;
  6995. width:88px;
  6996. height:40px;
  6997. display:flex;
  6998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6999. font-weight:400;
  7000. font-style:normal;
  7001. font-size:14px;
  7002. text-align:right;
  7003. }
  7004. #u28985 .text {
  7005. position:absolute;
  7006. align-self:center;
  7007. padding:5px 10px 5px 0px;
  7008. box-sizing:border-box;
  7009. width:100%;
  7010. }
  7011. #u28985_text {
  7012. border-width:0px;
  7013. white-space:nowrap;
  7014. text-transform:none;
  7015. }
  7016. #u28986 {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:0px;
  7022. height:0px;
  7023. }
  7024. #u28987_div {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:0px;
  7028. top:0px;
  7029. width:680px;
  7030. height:60px;
  7031. background:inherit;
  7032. background-color:rgba(255, 255, 255, 1);
  7033. box-sizing:border-box;
  7034. border-width:1px;
  7035. border-style:solid;
  7036. border-color:rgba(215, 215, 215, 1);
  7037. border-radius:0px;
  7038. -moz-box-shadow:none;
  7039. -webkit-box-shadow:none;
  7040. box-shadow:none;
  7041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7042. font-weight:400;
  7043. font-style:normal;
  7044. font-size:14px;
  7045. color:#AAAAAA;
  7046. text-align:center;
  7047. line-height:30px;
  7048. }
  7049. #u28987 {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:1629px;
  7053. top:992px;
  7054. width:680px;
  7055. height:60px;
  7056. display:flex;
  7057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7058. font-weight:400;
  7059. font-style:normal;
  7060. font-size:14px;
  7061. color:#AAAAAA;
  7062. text-align:center;
  7063. line-height:30px;
  7064. }
  7065. #u28987 .text {
  7066. position:absolute;
  7067. align-self:center;
  7068. padding:5px 10px 5px 10px;
  7069. box-sizing:border-box;
  7070. width:100%;
  7071. }
  7072. #u28987_text {
  7073. border-width:0px;
  7074. word-wrap:break-word;
  7075. text-transform:none;
  7076. visibility:hidden;
  7077. }
  7078. #u28988_div {
  7079. border-width:0px;
  7080. position:absolute;
  7081. left:0px;
  7082. top:0px;
  7083. width:80px;
  7084. height:30px;
  7085. background:inherit;
  7086. background-color:rgba(24, 144, 255, 1);
  7087. border:none;
  7088. border-radius:4px;
  7089. -moz-box-shadow:none;
  7090. -webkit-box-shadow:none;
  7091. box-shadow:none;
  7092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7093. font-weight:400;
  7094. font-style:normal;
  7095. font-size:14px;
  7096. color:#FFFFFF;
  7097. }
  7098. #u28988 {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:2199px;
  7102. top:1007px;
  7103. width:80px;
  7104. height:30px;
  7105. display:flex;
  7106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7107. font-weight:400;
  7108. font-style:normal;
  7109. font-size:14px;
  7110. color:#FFFFFF;
  7111. }
  7112. #u28988 .text {
  7113. position:absolute;
  7114. align-self:center;
  7115. padding:2px 2px 2px 2px;
  7116. box-sizing:border-box;
  7117. width:100%;
  7118. }
  7119. #u28988_text {
  7120. border-width:0px;
  7121. word-wrap:break-word;
  7122. text-transform:none;
  7123. }
  7124. #u28989_div {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:80px;
  7130. height:30px;
  7131. background:inherit;
  7132. background-color:rgba(255, 255, 255, 1);
  7133. box-sizing:border-box;
  7134. border-width:1px;
  7135. border-style:solid;
  7136. border-color:rgba(170, 170, 170, 1);
  7137. border-radius:4px;
  7138. -moz-box-shadow:none;
  7139. -webkit-box-shadow:none;
  7140. box-shadow:none;
  7141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7142. font-weight:400;
  7143. font-style:normal;
  7144. font-size:14px;
  7145. }
  7146. #u28989 {
  7147. border-width:0px;
  7148. position:absolute;
  7149. left:2099px;
  7150. top:1007px;
  7151. width:80px;
  7152. height:30px;
  7153. display:flex;
  7154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7155. font-weight:400;
  7156. font-style:normal;
  7157. font-size:14px;
  7158. }
  7159. #u28989 .text {
  7160. position:absolute;
  7161. align-self:center;
  7162. padding:2px 2px 2px 2px;
  7163. box-sizing:border-box;
  7164. width:100%;
  7165. }
  7166. #u28989_text {
  7167. border-width:0px;
  7168. word-wrap:break-word;
  7169. text-transform:none;
  7170. }
  7171. #u28990 {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:0px;
  7175. top:0px;
  7176. width:0px;
  7177. height:0px;
  7178. }
  7179. #u28991_div {
  7180. border-width:0px;
  7181. position:absolute;
  7182. left:0px;
  7183. top:0px;
  7184. width:380px;
  7185. height:40px;
  7186. background:inherit;
  7187. background-color:rgba(242, 242, 242, 1);
  7188. box-sizing:border-box;
  7189. border-width:1px;
  7190. border-style:solid;
  7191. border-color:rgba(201, 201, 201, 1);
  7192. border-radius:4px;
  7193. -moz-box-shadow:none;
  7194. -webkit-box-shadow:none;
  7195. box-shadow:none;
  7196. font-family:'Microsoft YaHei', sans-serif;
  7197. font-weight:400;
  7198. font-style:normal;
  7199. font-size:14px;
  7200. color:#CCCCCC;
  7201. text-align:left;
  7202. }
  7203. #u28991 {
  7204. border-width:0px;
  7205. position:absolute;
  7206. left:1780px;
  7207. top:746px;
  7208. width:380px;
  7209. height:40px;
  7210. display:flex;
  7211. font-family:'Microsoft YaHei', sans-serif;
  7212. font-weight:400;
  7213. font-style:normal;
  7214. font-size:14px;
  7215. color:#CCCCCC;
  7216. text-align:left;
  7217. }
  7218. #u28991 .text {
  7219. position:absolute;
  7220. align-self:center;
  7221. padding:2px 8px 2px 8px;
  7222. box-sizing:border-box;
  7223. width:100%;
  7224. }
  7225. #u28991_text {
  7226. border-width:0px;
  7227. word-wrap:break-word;
  7228. text-transform:none;
  7229. visibility:hidden;
  7230. }
  7231. #u28992_input {
  7232. position:absolute;
  7233. left:0px;
  7234. top:0px;
  7235. width:354px;
  7236. height:38px;
  7237. padding:2px 2px 2px 2px;
  7238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7239. font-weight:400;
  7240. font-style:normal;
  7241. font-size:14px;
  7242. letter-spacing:normal;
  7243. color:#000000;
  7244. vertical-align:none;
  7245. text-align:left;
  7246. text-transform:none;
  7247. background-color:transparent;
  7248. border-color:transparent;
  7249. }
  7250. #u28992_input.disabled {
  7251. position:absolute;
  7252. left:0px;
  7253. top:0px;
  7254. width:354px;
  7255. height:38px;
  7256. padding:2px 2px 2px 2px;
  7257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7258. font-weight:400;
  7259. font-style:normal;
  7260. font-size:14px;
  7261. letter-spacing:normal;
  7262. color:#000000;
  7263. vertical-align:none;
  7264. text-align:left;
  7265. text-transform:none;
  7266. background-color:transparent;
  7267. border-color:transparent;
  7268. }
  7269. #u28992_div {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:0px;
  7273. top:0px;
  7274. width:354px;
  7275. height:38px;
  7276. background:inherit;
  7277. background-color:rgba(242, 242, 242, 1);
  7278. border:none;
  7279. border-radius:0px;
  7280. -moz-box-shadow:none;
  7281. -webkit-box-shadow:none;
  7282. box-shadow:none;
  7283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7284. font-weight:400;
  7285. font-style:normal;
  7286. font-size:14px;
  7287. }
  7288. #u28992 {
  7289. border-width:0px;
  7290. position:absolute;
  7291. left:1794px;
  7292. top:747px;
  7293. width:354px;
  7294. height:38px;
  7295. display:flex;
  7296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7297. font-weight:400;
  7298. font-style:normal;
  7299. font-size:14px;
  7300. }
  7301. #u28992 .text {
  7302. position:absolute;
  7303. align-self:center;
  7304. padding:2px 2px 2px 2px;
  7305. box-sizing:border-box;
  7306. width:100%;
  7307. }
  7308. #u28992_div.disabled {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:354px;
  7314. height:38px;
  7315. background:inherit;
  7316. background-color:rgba(240, 240, 240, 1);
  7317. border:none;
  7318. border-radius:0px;
  7319. -moz-box-shadow:none;
  7320. -webkit-box-shadow:none;
  7321. box-shadow:none;
  7322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7323. font-weight:400;
  7324. font-style:normal;
  7325. font-size:14px;
  7326. }
  7327. #u28992.disabled {
  7328. }
  7329. #u28993_div {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:0px;
  7333. top:0px;
  7334. width:88px;
  7335. height:40px;
  7336. background:inherit;
  7337. background-color:rgba(255, 255, 255, 0);
  7338. border:none;
  7339. border-top:0px;
  7340. border-right:0px;
  7341. border-bottom:0px;
  7342. border-radius:0px;
  7343. border-top-left-radius:0px;
  7344. border-bottom-left-radius:0px;
  7345. -moz-box-shadow:none;
  7346. -webkit-box-shadow:none;
  7347. box-shadow:none;
  7348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7349. font-weight:400;
  7350. font-style:normal;
  7351. font-size:14px;
  7352. text-align:right;
  7353. }
  7354. #u28993 {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:1692px;
  7358. top:696px;
  7359. width:88px;
  7360. height:40px;
  7361. display:flex;
  7362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7363. font-weight:400;
  7364. font-style:normal;
  7365. font-size:14px;
  7366. text-align:right;
  7367. }
  7368. #u28993 .text {
  7369. position:absolute;
  7370. align-self:center;
  7371. padding:5px 10px 5px 0px;
  7372. box-sizing:border-box;
  7373. width:100%;
  7374. }
  7375. #u28993_text {
  7376. border-width:0px;
  7377. white-space:nowrap;
  7378. text-transform:none;
  7379. }
  7380. #u28994 {
  7381. border-width:0px;
  7382. position:absolute;
  7383. left:0px;
  7384. top:0px;
  7385. width:0px;
  7386. height:0px;
  7387. }
  7388. #u28995_div {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:0px;
  7392. top:0px;
  7393. width:380px;
  7394. height:40px;
  7395. background:inherit;
  7396. background-color:rgba(255, 255, 255, 1);
  7397. box-sizing:border-box;
  7398. border-width:1px;
  7399. border-style:solid;
  7400. border-color:rgba(201, 201, 201, 1);
  7401. border-radius:4px;
  7402. -moz-box-shadow:none;
  7403. -webkit-box-shadow:none;
  7404. box-shadow:none;
  7405. font-family:'Microsoft YaHei', sans-serif;
  7406. font-weight:400;
  7407. font-style:normal;
  7408. font-size:14px;
  7409. color:#CCCCCC;
  7410. text-align:left;
  7411. }
  7412. #u28995 {
  7413. border-width:0px;
  7414. position:absolute;
  7415. left:1780px;
  7416. top:696px;
  7417. width:380px;
  7418. height:40px;
  7419. display:flex;
  7420. font-family:'Microsoft YaHei', sans-serif;
  7421. font-weight:400;
  7422. font-style:normal;
  7423. font-size:14px;
  7424. color:#CCCCCC;
  7425. text-align:left;
  7426. }
  7427. #u28995 .text {
  7428. position:absolute;
  7429. align-self:center;
  7430. padding:2px 8px 2px 8px;
  7431. box-sizing:border-box;
  7432. width:100%;
  7433. }
  7434. #u28995_text {
  7435. border-width:0px;
  7436. word-wrap:break-word;
  7437. text-transform:none;
  7438. visibility:hidden;
  7439. }
  7440. #u28996_input {
  7441. position:absolute;
  7442. left:0px;
  7443. top:0px;
  7444. width:358px;
  7445. height:38px;
  7446. padding:2px 2px 2px 2px;
  7447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7448. font-weight:400;
  7449. font-style:normal;
  7450. font-size:14px;
  7451. letter-spacing:normal;
  7452. color:#000000;
  7453. vertical-align:none;
  7454. text-align:left;
  7455. text-transform:none;
  7456. background-color:transparent;
  7457. border-color:transparent;
  7458. }
  7459. #u28996_input.disabled {
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:358px;
  7464. height:38px;
  7465. padding:2px 2px 2px 2px;
  7466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7467. font-weight:400;
  7468. font-style:normal;
  7469. font-size:14px;
  7470. letter-spacing:normal;
  7471. color:#000000;
  7472. vertical-align:none;
  7473. text-align:left;
  7474. text-transform:none;
  7475. background-color:transparent;
  7476. border-color:transparent;
  7477. }
  7478. #u28996_div {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:0px;
  7482. top:0px;
  7483. width:358px;
  7484. height:38px;
  7485. background:inherit;
  7486. background-color:rgba(255, 255, 255, 1);
  7487. border:none;
  7488. border-radius:0px;
  7489. -moz-box-shadow:none;
  7490. -webkit-box-shadow:none;
  7491. box-shadow:none;
  7492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7493. font-weight:400;
  7494. font-style:normal;
  7495. font-size:14px;
  7496. }
  7497. #u28996 {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:1790px;
  7501. top:697px;
  7502. width:358px;
  7503. height:38px;
  7504. display:flex;
  7505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7506. font-weight:400;
  7507. font-style:normal;
  7508. font-size:14px;
  7509. }
  7510. #u28996 .text {
  7511. position:absolute;
  7512. align-self:center;
  7513. padding:2px 2px 2px 2px;
  7514. box-sizing:border-box;
  7515. width:100%;
  7516. }
  7517. #u28996_div.disabled {
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:0px;
  7521. top:0px;
  7522. width:358px;
  7523. height:38px;
  7524. background:inherit;
  7525. background-color:rgba(240, 240, 240, 1);
  7526. border:none;
  7527. border-radius:0px;
  7528. -moz-box-shadow:none;
  7529. -webkit-box-shadow:none;
  7530. box-shadow:none;
  7531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7532. font-weight:400;
  7533. font-style:normal;
  7534. font-size:14px;
  7535. }
  7536. #u28996.disabled {
  7537. }
  7538. #u28997_div {
  7539. border-width:0px;
  7540. position:absolute;
  7541. left:0px;
  7542. top:0px;
  7543. width:88px;
  7544. height:40px;
  7545. background:inherit;
  7546. background-color:rgba(255, 255, 255, 0);
  7547. border:none;
  7548. border-top:0px;
  7549. border-right:0px;
  7550. border-bottom:0px;
  7551. border-radius:0px;
  7552. border-top-left-radius:0px;
  7553. border-bottom-left-radius:0px;
  7554. -moz-box-shadow:none;
  7555. -webkit-box-shadow:none;
  7556. box-shadow:none;
  7557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7558. font-weight:400;
  7559. font-style:normal;
  7560. font-size:14px;
  7561. text-align:right;
  7562. }
  7563. #u28997 {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:1692px;
  7567. top:797px;
  7568. width:88px;
  7569. height:40px;
  7570. display:flex;
  7571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7572. font-weight:400;
  7573. font-style:normal;
  7574. font-size:14px;
  7575. text-align:right;
  7576. }
  7577. #u28997 .text {
  7578. position:absolute;
  7579. align-self:center;
  7580. padding:5px 10px 5px 0px;
  7581. box-sizing:border-box;
  7582. width:100%;
  7583. }
  7584. #u28997_text {
  7585. border-width:0px;
  7586. white-space:nowrap;
  7587. text-transform:none;
  7588. }
  7589. #u28998 {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:0px;
  7593. top:0px;
  7594. width:0px;
  7595. height:0px;
  7596. }
  7597. #u28999_div {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:0px;
  7601. top:0px;
  7602. width:380px;
  7603. height:40px;
  7604. background:inherit;
  7605. background-color:rgba(255, 255, 255, 1);
  7606. box-sizing:border-box;
  7607. border-width:1px;
  7608. border-style:solid;
  7609. border-color:rgba(201, 201, 201, 1);
  7610. border-radius:4px;
  7611. -moz-box-shadow:none;
  7612. -webkit-box-shadow:none;
  7613. box-shadow:none;
  7614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7615. font-weight:400;
  7616. font-style:normal;
  7617. font-size:12px;
  7618. text-align:right;
  7619. }
  7620. #u28999 {
  7621. border-width:0px;
  7622. position:absolute;
  7623. left:1780px;
  7624. top:797px;
  7625. width:380px;
  7626. height:40px;
  7627. display:flex;
  7628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7629. font-weight:400;
  7630. font-style:normal;
  7631. font-size:12px;
  7632. text-align:right;
  7633. }
  7634. #u28999 .text {
  7635. position:absolute;
  7636. align-self:center;
  7637. padding:2px 8px 2px 8px;
  7638. box-sizing:border-box;
  7639. width:100%;
  7640. }
  7641. #u28999_text {
  7642. border-width:0px;
  7643. word-wrap:break-word;
  7644. text-transform:none;
  7645. }
  7646. #u29000_input {
  7647. position:absolute;
  7648. left:0px;
  7649. top:0px;
  7650. width:328px;
  7651. height:38px;
  7652. padding:2px 2px 2px 2px;
  7653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7654. font-weight:400;
  7655. font-style:normal;
  7656. font-size:14px;
  7657. letter-spacing:normal;
  7658. color:#000000;
  7659. vertical-align:none;
  7660. text-align:left;
  7661. text-transform:none;
  7662. background-color:transparent;
  7663. border-color:transparent;
  7664. }
  7665. #u29000_input.disabled {
  7666. position:absolute;
  7667. left:0px;
  7668. top:0px;
  7669. width:328px;
  7670. height:38px;
  7671. padding:2px 2px 2px 2px;
  7672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7673. font-weight:400;
  7674. font-style:normal;
  7675. font-size:14px;
  7676. letter-spacing:normal;
  7677. color:#000000;
  7678. vertical-align:none;
  7679. text-align:left;
  7680. text-transform:none;
  7681. background-color:transparent;
  7682. border-color:transparent;
  7683. }
  7684. #u29000_div {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:0px;
  7688. top:0px;
  7689. width:328px;
  7690. height:38px;
  7691. background:inherit;
  7692. background-color:rgba(255, 255, 255, 1);
  7693. border:none;
  7694. border-radius:0px;
  7695. -moz-box-shadow:none;
  7696. -webkit-box-shadow:none;
  7697. box-shadow:none;
  7698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7699. font-weight:400;
  7700. font-style:normal;
  7701. font-size:14px;
  7702. }
  7703. #u29000 {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:1794px;
  7707. top:798px;
  7708. width:328px;
  7709. height:38px;
  7710. display:flex;
  7711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7712. font-weight:400;
  7713. font-style:normal;
  7714. font-size:14px;
  7715. }
  7716. #u29000 .text {
  7717. position:absolute;
  7718. align-self:center;
  7719. padding:2px 2px 2px 2px;
  7720. box-sizing:border-box;
  7721. width:100%;
  7722. }
  7723. #u29000_div.disabled {
  7724. border-width:0px;
  7725. position:absolute;
  7726. left:0px;
  7727. top:0px;
  7728. width:328px;
  7729. height:38px;
  7730. background:inherit;
  7731. background-color:rgba(240, 240, 240, 1);
  7732. border:none;
  7733. border-radius:0px;
  7734. -moz-box-shadow:none;
  7735. -webkit-box-shadow:none;
  7736. box-shadow:none;
  7737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7738. font-weight:400;
  7739. font-style:normal;
  7740. font-size:14px;
  7741. }
  7742. #u29000.disabled {
  7743. }
  7744. #u29001_div {
  7745. border-width:0px;
  7746. position:absolute;
  7747. left:0px;
  7748. top:0px;
  7749. width:53px;
  7750. height:40px;
  7751. background:inherit;
  7752. background-color:rgba(255, 255, 255, 0);
  7753. border:none;
  7754. border-top:0px;
  7755. border-right:0px;
  7756. border-bottom:0px;
  7757. border-radius:0px;
  7758. border-top-left-radius:0px;
  7759. border-bottom-left-radius:0px;
  7760. -moz-box-shadow:none;
  7761. -webkit-box-shadow:none;
  7762. box-shadow:none;
  7763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7764. font-weight:400;
  7765. font-style:normal;
  7766. font-size:14px;
  7767. text-align:right;
  7768. }
  7769. #u29001 {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:1727px;
  7773. top:848px;
  7774. width:53px;
  7775. height:40px;
  7776. display:flex;
  7777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7778. font-weight:400;
  7779. font-style:normal;
  7780. font-size:14px;
  7781. text-align:right;
  7782. }
  7783. #u29001 .text {
  7784. position:absolute;
  7785. align-self:center;
  7786. padding:5px 10px 5px 0px;
  7787. box-sizing:border-box;
  7788. width:100%;
  7789. }
  7790. #u29001_text {
  7791. border-width:0px;
  7792. white-space:nowrap;
  7793. text-transform:none;
  7794. }
  7795. #u29002 {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:0px;
  7799. top:0px;
  7800. width:0px;
  7801. height:0px;
  7802. }
  7803. #u29003_div {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:0px;
  7807. top:0px;
  7808. width:380px;
  7809. height:80px;
  7810. background:inherit;
  7811. background-color:rgba(255, 255, 255, 1);
  7812. box-sizing:border-box;
  7813. border-width:1px;
  7814. border-style:solid;
  7815. border-color:rgba(201, 201, 201, 1);
  7816. border-radius:4px;
  7817. -moz-box-shadow:none;
  7818. -webkit-box-shadow:none;
  7819. box-shadow:none;
  7820. font-family:'Microsoft YaHei', sans-serif;
  7821. font-weight:400;
  7822. font-style:normal;
  7823. font-size:14px;
  7824. color:#CCCCCC;
  7825. text-align:left;
  7826. }
  7827. #u29003 {
  7828. border-width:0px;
  7829. position:absolute;
  7830. left:1780px;
  7831. top:848px;
  7832. width:380px;
  7833. height:80px;
  7834. display:flex;
  7835. font-family:'Microsoft YaHei', sans-serif;
  7836. font-weight:400;
  7837. font-style:normal;
  7838. font-size:14px;
  7839. color:#CCCCCC;
  7840. text-align:left;
  7841. }
  7842. #u29003 .text {
  7843. position:absolute;
  7844. align-self:center;
  7845. padding:2px 8px 2px 8px;
  7846. box-sizing:border-box;
  7847. width:100%;
  7848. }
  7849. #u29003_text {
  7850. border-width:0px;
  7851. word-wrap:break-word;
  7852. text-transform:none;
  7853. visibility:hidden;
  7854. }
  7855. #u29004_input {
  7856. position:absolute;
  7857. left:0px;
  7858. top:0px;
  7859. width:354px;
  7860. height:76px;
  7861. padding:2px 2px 2px 2px;
  7862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7863. font-weight:400;
  7864. font-style:normal;
  7865. font-size:14px;
  7866. letter-spacing:normal;
  7867. color:#000000;
  7868. vertical-align:none;
  7869. text-align:left;
  7870. text-transform:none;
  7871. background-color:transparent;
  7872. border-color:transparent;
  7873. }
  7874. #u29004_input.disabled {
  7875. position:absolute;
  7876. left:0px;
  7877. top:0px;
  7878. width:354px;
  7879. height:76px;
  7880. padding:2px 2px 2px 2px;
  7881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7882. font-weight:400;
  7883. font-style:normal;
  7884. font-size:14px;
  7885. letter-spacing:normal;
  7886. color:#000000;
  7887. vertical-align:none;
  7888. text-align:left;
  7889. text-transform:none;
  7890. background-color:transparent;
  7891. border-color:transparent;
  7892. }
  7893. #u29004_div {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:0px;
  7897. top:0px;
  7898. width:354px;
  7899. height:76px;
  7900. background:inherit;
  7901. background-color:rgba(255, 255, 255, 1);
  7902. border:none;
  7903. border-radius:0px;
  7904. -moz-box-shadow:none;
  7905. -webkit-box-shadow:none;
  7906. box-shadow:none;
  7907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7908. font-weight:400;
  7909. font-style:normal;
  7910. font-size:14px;
  7911. }
  7912. #u29004 {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:1794px;
  7916. top:850px;
  7917. width:354px;
  7918. height:76px;
  7919. display:flex;
  7920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7921. font-weight:400;
  7922. font-style:normal;
  7923. font-size:14px;
  7924. }
  7925. #u29004 .text {
  7926. position:absolute;
  7927. align-self:center;
  7928. padding:2px 2px 2px 2px;
  7929. box-sizing:border-box;
  7930. width:100%;
  7931. }
  7932. #u29004_div.disabled {
  7933. border-width:0px;
  7934. position:absolute;
  7935. left:0px;
  7936. top:0px;
  7937. width:354px;
  7938. height:76px;
  7939. background:inherit;
  7940. background-color:rgba(240, 240, 240, 1);
  7941. border:none;
  7942. border-radius:0px;
  7943. -moz-box-shadow:none;
  7944. -webkit-box-shadow:none;
  7945. box-shadow:none;
  7946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7947. font-weight:400;
  7948. font-style:normal;
  7949. font-size:14px;
  7950. }
  7951. #u29004.disabled {
  7952. }
  7953. #u29005_div {
  7954. border-width:0px;
  7955. position:absolute;
  7956. left:0px;
  7957. top:0px;
  7958. width:88px;
  7959. height:40px;
  7960. background:inherit;
  7961. background-color:rgba(255, 255, 255, 0);
  7962. border:none;
  7963. border-top:0px;
  7964. border-right:0px;
  7965. border-bottom:0px;
  7966. border-radius:0px;
  7967. border-top-left-radius:0px;
  7968. border-bottom-left-radius:0px;
  7969. -moz-box-shadow:none;
  7970. -webkit-box-shadow:none;
  7971. box-shadow:none;
  7972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7973. font-weight:400;
  7974. font-style:normal;
  7975. font-size:14px;
  7976. text-align:right;
  7977. }
  7978. #u29005 {
  7979. border-width:0px;
  7980. position:absolute;
  7981. left:1692px;
  7982. top:646px;
  7983. width:88px;
  7984. height:40px;
  7985. display:flex;
  7986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7987. font-weight:400;
  7988. font-style:normal;
  7989. font-size:14px;
  7990. text-align:right;
  7991. }
  7992. #u29005 .text {
  7993. position:absolute;
  7994. align-self:center;
  7995. padding:5px 10px 5px 0px;
  7996. box-sizing:border-box;
  7997. width:100%;
  7998. }
  7999. #u29005_text {
  8000. border-width:0px;
  8001. white-space:nowrap;
  8002. text-transform:none;
  8003. }
  8004. #u29006 {
  8005. border-width:0px;
  8006. position:absolute;
  8007. left:0px;
  8008. top:0px;
  8009. width:0px;
  8010. height:0px;
  8011. }
  8012. #u29007_div {
  8013. border-width:0px;
  8014. position:absolute;
  8015. left:0px;
  8016. top:0px;
  8017. width:380px;
  8018. height:40px;
  8019. background:inherit;
  8020. background-color:rgba(242, 242, 242, 1);
  8021. box-sizing:border-box;
  8022. border-width:1px;
  8023. border-style:solid;
  8024. border-color:rgba(215, 215, 215, 1);
  8025. border-radius:4px;
  8026. -moz-box-shadow:none;
  8027. -webkit-box-shadow:none;
  8028. box-shadow:none;
  8029. font-size:14px;
  8030. }
  8031. #u29007 {
  8032. border-width:0px;
  8033. position:absolute;
  8034. left:1780px;
  8035. top:646px;
  8036. width:380px;
  8037. height:40px;
  8038. display:flex;
  8039. font-size:14px;
  8040. }
  8041. #u29007 .text {
  8042. position:absolute;
  8043. align-self:center;
  8044. padding:2px 2px 2px 2px;
  8045. box-sizing:border-box;
  8046. width:100%;
  8047. }
  8048. #u29007_text {
  8049. border-width:0px;
  8050. word-wrap:break-word;
  8051. text-transform:none;
  8052. visibility:hidden;
  8053. }
  8054. #u29008_input {
  8055. position:absolute;
  8056. left:0px;
  8057. top:0px;
  8058. width:363px;
  8059. height:31px;
  8060. padding:2px 2px 2px 2px;
  8061. font-family:'ArialMT', 'Arial', sans-serif;
  8062. font-weight:400;
  8063. font-style:normal;
  8064. font-size:14px;
  8065. letter-spacing:normal;
  8066. color:#AAAAAA;
  8067. vertical-align:none;
  8068. text-align:left;
  8069. text-transform:none;
  8070. background-color:transparent;
  8071. border-color:transparent;
  8072. }
  8073. #u29008_input.disabled {
  8074. position:absolute;
  8075. left:0px;
  8076. top:0px;
  8077. width:363px;
  8078. height:31px;
  8079. padding:2px 2px 2px 2px;
  8080. font-family:'ArialMT', 'Arial', sans-serif;
  8081. font-weight:400;
  8082. font-style:normal;
  8083. font-size:14px;
  8084. letter-spacing:normal;
  8085. color:#AAAAAA;
  8086. vertical-align:none;
  8087. text-align:left;
  8088. text-transform:none;
  8089. background-color:transparent;
  8090. border-color:transparent;
  8091. }
  8092. #u29008_div {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:0px;
  8096. top:0px;
  8097. width:363px;
  8098. height:31px;
  8099. background:inherit;
  8100. background-color:rgba(242, 242, 242, 1);
  8101. border:none;
  8102. border-radius:0px;
  8103. -moz-box-shadow:none;
  8104. -webkit-box-shadow:none;
  8105. box-shadow:none;
  8106. font-size:14px;
  8107. color:#AAAAAA;
  8108. }
  8109. #u29008 {
  8110. border-width:0px;
  8111. position:absolute;
  8112. left:1792px;
  8113. top:649px;
  8114. width:363px;
  8115. height:31px;
  8116. display:flex;
  8117. font-size:14px;
  8118. color:#AAAAAA;
  8119. }
  8120. #u29008 .text {
  8121. position:absolute;
  8122. align-self:flex-start;
  8123. padding:2px 2px 2px 2px;
  8124. box-sizing:border-box;
  8125. width:100%;
  8126. }
  8127. #u29008_div.disabled {
  8128. border-width:0px;
  8129. position:absolute;
  8130. left:0px;
  8131. top:0px;
  8132. width:363px;
  8133. height:31px;
  8134. background:inherit;
  8135. background-color:rgba(240, 240, 240, 1);
  8136. border:none;
  8137. border-radius:0px;
  8138. -moz-box-shadow:none;
  8139. -webkit-box-shadow:none;
  8140. box-shadow:none;
  8141. font-size:14px;
  8142. color:#AAAAAA;
  8143. }
  8144. #u29008.disabled {
  8145. }
  8146. .u29008_input_option {
  8147. font-size:14px;
  8148. }
  8149. #u29009 {
  8150. border-width:0px;
  8151. position:absolute;
  8152. left:0px;
  8153. top:0px;
  8154. width:0px;
  8155. height:0px;
  8156. }
  8157. #u29010 {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:0px;
  8161. top:0px;
  8162. width:0px;
  8163. height:0px;
  8164. }
  8165. #u29011_div {
  8166. border-width:0px;
  8167. position:absolute;
  8168. left:0px;
  8169. top:0px;
  8170. width:380px;
  8171. height:164px;
  8172. background:inherit;
  8173. background-color:rgba(255, 255, 255, 1);
  8174. box-sizing:border-box;
  8175. border-width:1px;
  8176. border-style:solid;
  8177. border-color:rgba(204, 204, 204, 1);
  8178. border-radius:4px;
  8179. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8180. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8181. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8182. font-family:'Microsoft YaHei', sans-serif;
  8183. font-weight:400;
  8184. font-style:normal;
  8185. }
  8186. #u29011 {
  8187. border-width:0px;
  8188. position:absolute;
  8189. left:1659px;
  8190. top:878px;
  8191. width:380px;
  8192. height:164px;
  8193. display:flex;
  8194. font-family:'Microsoft YaHei', sans-serif;
  8195. font-weight:400;
  8196. font-style:normal;
  8197. }
  8198. #u29011 .text {
  8199. position:absolute;
  8200. align-self:center;
  8201. padding:2px 2px 2px 2px;
  8202. box-sizing:border-box;
  8203. width:100%;
  8204. }
  8205. #u29011_text {
  8206. border-width:0px;
  8207. word-wrap:break-word;
  8208. text-transform:none;
  8209. visibility:hidden;
  8210. }
  8211. #u29012_div {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:0px;
  8215. top:0px;
  8216. width:299px;
  8217. height:44px;
  8218. background:inherit;
  8219. background-color:rgba(255, 255, 255, 0);
  8220. border:none;
  8221. border-radius:0px;
  8222. -moz-box-shadow:none;
  8223. -webkit-box-shadow:none;
  8224. box-shadow:none;
  8225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8226. font-weight:400;
  8227. font-style:normal;
  8228. font-size:14px;
  8229. color:#666666;
  8230. line-height:22px;
  8231. }
  8232. #u29012 {
  8233. border-width:0px;
  8234. position:absolute;
  8235. left:1719px;
  8236. top:933px;
  8237. width:299px;
  8238. height:44px;
  8239. display:flex;
  8240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8241. font-weight:400;
  8242. font-style:normal;
  8243. font-size:14px;
  8244. color:#666666;
  8245. line-height:22px;
  8246. }
  8247. #u29012 .text {
  8248. position:absolute;
  8249. align-self:flex-start;
  8250. padding:0px 0px 0px 0px;
  8251. box-sizing:border-box;
  8252. width:100%;
  8253. }
  8254. #u29012_text {
  8255. border-width:0px;
  8256. word-wrap:break-word;
  8257. text-transform:none;
  8258. }
  8259. #u29013_div {
  8260. border-width:0px;
  8261. position:absolute;
  8262. left:0px;
  8263. top:0px;
  8264. width:163px;
  8265. height:21px;
  8266. background:inherit;
  8267. background-color:rgba(255, 255, 255, 0);
  8268. border:none;
  8269. border-radius:0px;
  8270. -moz-box-shadow:none;
  8271. -webkit-box-shadow:none;
  8272. box-shadow:none;
  8273. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8274. font-weight:650;
  8275. font-style:normal;
  8276. font-size:18px;
  8277. color:#000000;
  8278. line-height:22px;
  8279. }
  8280. #u29013 {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:1719px;
  8284. top:903px;
  8285. width:163px;
  8286. height:21px;
  8287. display:flex;
  8288. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8289. font-weight:650;
  8290. font-style:normal;
  8291. font-size:18px;
  8292. color:#000000;
  8293. line-height:22px;
  8294. }
  8295. #u29013 .text {
  8296. position:absolute;
  8297. align-self:flex-start;
  8298. padding:0px 0px 0px 0px;
  8299. box-sizing:border-box;
  8300. width:100%;
  8301. }
  8302. #u29013_text {
  8303. border-width:0px;
  8304. white-space:nowrap;
  8305. text-transform:none;
  8306. }
  8307. #u29014_div {
  8308. border-width:0px;
  8309. position:absolute;
  8310. left:0px;
  8311. top:0px;
  8312. width:61px;
  8313. height:30px;
  8314. background:inherit;
  8315. background-color:rgba(24, 144, 255, 1);
  8316. border:none;
  8317. border-radius:4px;
  8318. -moz-box-shadow:none;
  8319. -webkit-box-shadow:none;
  8320. box-shadow:none;
  8321. font-family:'Microsoft YaHei', sans-serif;
  8322. font-weight:400;
  8323. font-style:normal;
  8324. font-size:14px;
  8325. color:#FFFFFF;
  8326. }
  8327. #u29014 {
  8328. border-width:0px;
  8329. position:absolute;
  8330. left:1961px;
  8331. top:993px;
  8332. width:61px;
  8333. height:30px;
  8334. display:flex;
  8335. font-family:'Microsoft YaHei', sans-serif;
  8336. font-weight:400;
  8337. font-style:normal;
  8338. font-size:14px;
  8339. color:#FFFFFF;
  8340. }
  8341. #u29014 .text {
  8342. position:absolute;
  8343. align-self:center;
  8344. padding:2px 16px 2px 16px;
  8345. box-sizing:border-box;
  8346. width:100%;
  8347. }
  8348. #u29014_text {
  8349. border-width:0px;
  8350. white-space:nowrap;
  8351. text-transform:none;
  8352. }
  8353. #u29015_div {
  8354. border-width:0px;
  8355. position:absolute;
  8356. left:0px;
  8357. top:0px;
  8358. width:66px;
  8359. height:30px;
  8360. background:inherit;
  8361. background-color:rgba(255, 255, 255, 1);
  8362. box-sizing:border-box;
  8363. border-width:1px;
  8364. border-style:solid;
  8365. border-color:rgba(217, 217, 217, 1);
  8366. border-radius:4px;
  8367. -moz-box-shadow:none;
  8368. -webkit-box-shadow:none;
  8369. box-shadow:none;
  8370. font-family:'Microsoft YaHei', sans-serif;
  8371. font-weight:400;
  8372. font-style:normal;
  8373. font-size:14px;
  8374. color:rgba(0, 0, 0, 0.647058823529412);
  8375. line-height:21px;
  8376. }
  8377. #u29015 {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:1879px;
  8381. top:993px;
  8382. width:66px;
  8383. height:30px;
  8384. display:flex;
  8385. font-family:'Microsoft YaHei', sans-serif;
  8386. font-weight:400;
  8387. font-style:normal;
  8388. font-size:14px;
  8389. color:rgba(0, 0, 0, 0.647058823529412);
  8390. line-height:21px;
  8391. }
  8392. #u29015 .text {
  8393. position:absolute;
  8394. align-self:center;
  8395. padding:2px 16px 2px 16px;
  8396. box-sizing:border-box;
  8397. width:100%;
  8398. }
  8399. #u29015_text {
  8400. border-width:0px;
  8401. white-space:nowrap;
  8402. text-transform:none;
  8403. }
  8404. #u29016_img {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:0px;
  8408. top:0px;
  8409. width:20px;
  8410. height:20px;
  8411. }
  8412. #u29016 {
  8413. border-width:0px;
  8414. position:absolute;
  8415. left:1688px;
  8416. top:907px;
  8417. width:20px;
  8418. height:20px;
  8419. display:flex;
  8420. }
  8421. #u29016 .text {
  8422. position:absolute;
  8423. align-self:center;
  8424. padding:2px 2px 2px 2px;
  8425. box-sizing:border-box;
  8426. width:100%;
  8427. }
  8428. #u29016_text {
  8429. border-width:0px;
  8430. word-wrap:break-word;
  8431. text-transform:none;
  8432. visibility:hidden;
  8433. }