styles.css 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-79px;
  6. width:2092px;
  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. #u98656_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1000px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. box-sizing:border-box;
  29. border-width:1px;
  30. border-style:solid;
  31. border-color:rgba(215, 215, 215, 1);
  32. border-radius:0px;
  33. -moz-box-shadow:none;
  34. -webkit-box-shadow:none;
  35. box-shadow:none;
  36. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  37. font-weight:400;
  38. font-style:normal;
  39. font-size:14px;
  40. color:#AAAAAA;
  41. text-align:center;
  42. line-height:30px;
  43. }
  44. #u98656 {
  45. border-width:0px;
  46. position:absolute;
  47. left:79px;
  48. top:50px;
  49. width:1000px;
  50. height:1200px;
  51. display:flex;
  52. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  53. font-weight:400;
  54. font-style:normal;
  55. font-size:14px;
  56. color:#AAAAAA;
  57. text-align:center;
  58. line-height:30px;
  59. }
  60. #u98656 .text {
  61. position:absolute;
  62. align-self:center;
  63. padding:5px 10px 5px 10px;
  64. box-sizing:border-box;
  65. width:100%;
  66. }
  67. #u98656_text {
  68. border-width:0px;
  69. word-wrap:break-word;
  70. text-transform:none;
  71. visibility:hidden;
  72. }
  73. #u98657_div {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:0px;
  78. width:1000px;
  79. height:527px;
  80. background:inherit;
  81. background-color:rgba(255, 255, 255, 1);
  82. box-sizing:border-box;
  83. border-width:1px;
  84. border-style:solid;
  85. border-color:rgba(215, 215, 215, 1);
  86. border-radius:0px;
  87. -moz-box-shadow:none;
  88. -webkit-box-shadow:none;
  89. box-shadow:none;
  90. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  91. font-weight:400;
  92. font-style:normal;
  93. font-size:14px;
  94. color:#AAAAAA;
  95. text-align:center;
  96. line-height:30px;
  97. }
  98. #u98657 {
  99. border-width:0px;
  100. position:absolute;
  101. left:79px;
  102. top:663px;
  103. width:1000px;
  104. height:527px;
  105. display:flex;
  106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  107. font-weight:400;
  108. font-style:normal;
  109. font-size:14px;
  110. color:#AAAAAA;
  111. text-align:center;
  112. line-height:30px;
  113. }
  114. #u98657 .text {
  115. position:absolute;
  116. align-self:center;
  117. padding:5px 10px 5px 10px;
  118. box-sizing:border-box;
  119. width:100%;
  120. }
  121. #u98657_text {
  122. border-width:0px;
  123. word-wrap:break-word;
  124. text-transform:none;
  125. visibility:hidden;
  126. }
  127. #u98658_div {
  128. border-width:0px;
  129. position:absolute;
  130. left:0px;
  131. top:0px;
  132. width:1000px;
  133. height:603px;
  134. background:inherit;
  135. background-color:rgba(255, 255, 255, 1);
  136. box-sizing:border-box;
  137. border-width:1px;
  138. border-style:solid;
  139. border-color:rgba(215, 215, 215, 1);
  140. border-radius:0px;
  141. -moz-box-shadow:none;
  142. -webkit-box-shadow:none;
  143. box-shadow:none;
  144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  145. font-weight:400;
  146. font-style:normal;
  147. font-size:14px;
  148. color:#AAAAAA;
  149. text-align:center;
  150. line-height:30px;
  151. }
  152. #u98658 {
  153. border-width:0px;
  154. position:absolute;
  155. left:79px;
  156. top:50px;
  157. width:1000px;
  158. height:603px;
  159. display:flex;
  160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  161. font-weight:400;
  162. font-style:normal;
  163. font-size:14px;
  164. color:#AAAAAA;
  165. text-align:center;
  166. line-height:30px;
  167. }
  168. #u98658 .text {
  169. position:absolute;
  170. align-self:center;
  171. padding:5px 10px 5px 10px;
  172. box-sizing:border-box;
  173. width:100%;
  174. }
  175. #u98658_text {
  176. border-width:0px;
  177. word-wrap:break-word;
  178. text-transform:none;
  179. visibility:hidden;
  180. }
  181. #u98659_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:119px;
  187. height:35px;
  188. background:inherit;
  189. background-color:rgba(255, 255, 255, 0);
  190. border:none;
  191. border-top:0px;
  192. border-right:0px;
  193. border-bottom:0px;
  194. border-radius:0px;
  195. border-top-left-radius:0px;
  196. border-bottom-left-radius:0px;
  197. -moz-box-shadow:none;
  198. -webkit-box-shadow:none;
  199. box-shadow:none;
  200. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  201. font-weight:500;
  202. font-style:normal;
  203. font-size:18px;
  204. }
  205. #u98659 {
  206. border-width:0px;
  207. position:absolute;
  208. left:99px;
  209. top:68px;
  210. width:119px;
  211. height:35px;
  212. display:flex;
  213. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  214. font-weight:500;
  215. font-style:normal;
  216. font-size:18px;
  217. }
  218. #u98659 .text {
  219. position:absolute;
  220. align-self:center;
  221. padding:5px 10px 5px 0px;
  222. box-sizing:border-box;
  223. width:100%;
  224. }
  225. #u98659_text {
  226. border-width:0px;
  227. white-space:nowrap;
  228. text-transform:none;
  229. }
  230. #u98660 {
  231. border-width:0px;
  232. position:absolute;
  233. left:0px;
  234. top:0px;
  235. width:0px;
  236. height:0px;
  237. }
  238. #u98661_div {
  239. border-width:0px;
  240. position:absolute;
  241. left:0px;
  242. top:0px;
  243. width:40px;
  244. height:40px;
  245. background:inherit;
  246. background-color:rgba(255, 255, 255, 0);
  247. border:none;
  248. border-top:0px;
  249. border-right:0px;
  250. border-bottom:0px;
  251. border-radius:0px;
  252. border-top-left-radius:0px;
  253. border-bottom-left-radius:0px;
  254. -moz-box-shadow:none;
  255. -webkit-box-shadow:none;
  256. box-shadow:none;
  257. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  258. font-weight:500;
  259. font-style:normal;
  260. font-size:14px;
  261. text-align:center;
  262. }
  263. #u98661 {
  264. border-width:0px;
  265. position:absolute;
  266. left:1039px;
  267. top:50px;
  268. width:40px;
  269. height:40px;
  270. display:flex;
  271. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  272. font-weight:500;
  273. font-style:normal;
  274. font-size:14px;
  275. text-align:center;
  276. }
  277. #u98661 .text {
  278. position:absolute;
  279. align-self:center;
  280. padding:5px 10px 5px 0px;
  281. box-sizing:border-box;
  282. width:100%;
  283. }
  284. #u98661_text {
  285. border-width:0px;
  286. word-wrap:break-word;
  287. text-transform:none;
  288. }
  289. #u98662_img {
  290. border-width:0px;
  291. position:absolute;
  292. left:0px;
  293. top:0px;
  294. width:13px;
  295. height:13px;
  296. }
  297. #u98662 {
  298. border-width:0px;
  299. position:absolute;
  300. left:1027px;
  301. top:66px;
  302. width:13px;
  303. height:13px;
  304. display:flex;
  305. font-size:14px;
  306. }
  307. #u98662 .text {
  308. position:absolute;
  309. align-self:center;
  310. padding:2px 2px 2px 2px;
  311. box-sizing:border-box;
  312. width:100%;
  313. }
  314. #u98662_text {
  315. border-width:0px;
  316. word-wrap:break-word;
  317. text-transform:none;
  318. visibility:hidden;
  319. }
  320. #u98663 {
  321. border-width:0px;
  322. position:absolute;
  323. left:0px;
  324. top:0px;
  325. width:0px;
  326. height:0px;
  327. }
  328. #u98664_div {
  329. border-width:0px;
  330. position:absolute;
  331. left:0px;
  332. top:0px;
  333. width:1000px;
  334. height:60px;
  335. background:inherit;
  336. background-color:rgba(255, 255, 255, 1);
  337. box-sizing:border-box;
  338. border-width:1px;
  339. border-style:solid;
  340. border-color:rgba(215, 215, 215, 1);
  341. border-radius:0px;
  342. -moz-box-shadow:none;
  343. -webkit-box-shadow:none;
  344. box-shadow:none;
  345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  346. font-weight:400;
  347. font-style:normal;
  348. font-size:14px;
  349. color:#AAAAAA;
  350. text-align:center;
  351. line-height:30px;
  352. }
  353. #u98664 {
  354. border-width:0px;
  355. position:absolute;
  356. left:79px;
  357. top:1190px;
  358. width:1000px;
  359. height:60px;
  360. display:flex;
  361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  362. font-weight:400;
  363. font-style:normal;
  364. font-size:14px;
  365. color:#AAAAAA;
  366. text-align:center;
  367. line-height:30px;
  368. }
  369. #u98664 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:5px 10px 5px 10px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u98664_text {
  377. border-width:0px;
  378. word-wrap:break-word;
  379. text-transform:none;
  380. visibility:hidden;
  381. }
  382. #u98665_div {
  383. border-width:0px;
  384. position:absolute;
  385. left:0px;
  386. top:0px;
  387. width:107px;
  388. height:30px;
  389. background:inherit;
  390. background-color:rgba(24, 144, 255, 1);
  391. border:none;
  392. border-radius:4px;
  393. -moz-box-shadow:none;
  394. -webkit-box-shadow:none;
  395. box-shadow:none;
  396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  397. font-weight:400;
  398. font-style:normal;
  399. font-size:14px;
  400. color:#FFFFFF;
  401. }
  402. #u98665 {
  403. border-width:0px;
  404. position:absolute;
  405. left:932px;
  406. top:1205px;
  407. width:107px;
  408. height:30px;
  409. display:flex;
  410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  411. font-weight:400;
  412. font-style:normal;
  413. font-size:14px;
  414. color:#FFFFFF;
  415. }
  416. #u98665 .text {
  417. position:absolute;
  418. align-self:center;
  419. padding:2px 2px 2px 2px;
  420. box-sizing:border-box;
  421. width:100%;
  422. }
  423. #u98665_text {
  424. border-width:0px;
  425. word-wrap:break-word;
  426. text-transform:none;
  427. }
  428. #u98666_div {
  429. border-width:0px;
  430. position:absolute;
  431. left:0px;
  432. top:0px;
  433. width:80px;
  434. height:30px;
  435. background:inherit;
  436. background-color:rgba(255, 255, 255, 1);
  437. box-sizing:border-box;
  438. border-width:1px;
  439. border-style:solid;
  440. border-color:rgba(170, 170, 170, 1);
  441. border-radius:4px;
  442. -moz-box-shadow:none;
  443. -webkit-box-shadow:none;
  444. box-shadow:none;
  445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  446. font-weight:400;
  447. font-style:normal;
  448. font-size:14px;
  449. }
  450. #u98666 {
  451. border-width:0px;
  452. position:absolute;
  453. left:842px;
  454. top:1205px;
  455. width:80px;
  456. height:30px;
  457. display:flex;
  458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  459. font-weight:400;
  460. font-style:normal;
  461. font-size:14px;
  462. }
  463. #u98666 .text {
  464. position:absolute;
  465. align-self:center;
  466. padding:2px 2px 2px 2px;
  467. box-sizing:border-box;
  468. width:100%;
  469. }
  470. #u98666_text {
  471. border-width:0px;
  472. word-wrap:break-word;
  473. text-transform:none;
  474. }
  475. #u98667 {
  476. border-width:0px;
  477. position:absolute;
  478. left:145px;
  479. top:422px;
  480. width:908px;
  481. height:180px;
  482. }
  483. #u98668_img {
  484. border-width:0px;
  485. position:absolute;
  486. left:0px;
  487. top:0px;
  488. width:135px;
  489. height:30px;
  490. }
  491. #u98668 {
  492. border-width:0px;
  493. position:absolute;
  494. left:0px;
  495. top:0px;
  496. width:135px;
  497. height:30px;
  498. display:flex;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. color:#FFFFFF;
  503. }
  504. #u98668 .text {
  505. position:absolute;
  506. align-self:center;
  507. padding:2px 2px 2px 2px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u98668_text {
  512. border-width:0px;
  513. word-wrap:break-word;
  514. text-transform:none;
  515. }
  516. #u98669_img {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:161px;
  522. height:30px;
  523. }
  524. #u98669 {
  525. border-width:0px;
  526. position:absolute;
  527. left:135px;
  528. top:0px;
  529. width:161px;
  530. height:30px;
  531. display:flex;
  532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  533. font-weight:400;
  534. font-style:normal;
  535. color:#FFFFFF;
  536. }
  537. #u98669 .text {
  538. position:absolute;
  539. align-self:center;
  540. padding:2px 2px 2px 2px;
  541. box-sizing:border-box;
  542. width:100%;
  543. }
  544. #u98669_text {
  545. border-width:0px;
  546. word-wrap:break-word;
  547. text-transform:none;
  548. }
  549. #u98670_img {
  550. border-width:0px;
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:161px;
  555. height:30px;
  556. }
  557. #u98670 {
  558. border-width:0px;
  559. position:absolute;
  560. left:296px;
  561. top:0px;
  562. width:161px;
  563. height:30px;
  564. display:flex;
  565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  566. font-weight:400;
  567. font-style:normal;
  568. color:#FFFFFF;
  569. }
  570. #u98670 .text {
  571. position:absolute;
  572. align-self:center;
  573. padding:2px 2px 2px 2px;
  574. box-sizing:border-box;
  575. width:100%;
  576. }
  577. #u98670_text {
  578. border-width:0px;
  579. word-wrap:break-word;
  580. text-transform:none;
  581. }
  582. #u98671_img {
  583. border-width:0px;
  584. position:absolute;
  585. left:0px;
  586. top:0px;
  587. width:161px;
  588. height:30px;
  589. }
  590. #u98671 {
  591. border-width:0px;
  592. position:absolute;
  593. left:457px;
  594. top:0px;
  595. width:161px;
  596. height:30px;
  597. display:flex;
  598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  599. font-weight:400;
  600. font-style:normal;
  601. color:#FFFFFF;
  602. }
  603. #u98671 .text {
  604. position:absolute;
  605. align-self:center;
  606. padding:2px 2px 2px 2px;
  607. box-sizing:border-box;
  608. width:100%;
  609. }
  610. #u98671_text {
  611. border-width:0px;
  612. word-wrap:break-word;
  613. text-transform:none;
  614. }
  615. #u98672_img {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:137px;
  621. height:30px;
  622. }
  623. #u98672 {
  624. border-width:0px;
  625. position:absolute;
  626. left:618px;
  627. top:0px;
  628. width:137px;
  629. height:30px;
  630. display:flex;
  631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  632. font-weight:400;
  633. font-style:normal;
  634. color:#FFFFFF;
  635. }
  636. #u98672 .text {
  637. position:absolute;
  638. align-self:center;
  639. padding:2px 2px 2px 2px;
  640. box-sizing:border-box;
  641. width:100%;
  642. }
  643. #u98672_text {
  644. border-width:0px;
  645. word-wrap:break-word;
  646. text-transform:none;
  647. }
  648. #u98673_img {
  649. border-width:0px;
  650. position:absolute;
  651. left:0px;
  652. top:0px;
  653. width:153px;
  654. height:30px;
  655. }
  656. #u98673 {
  657. border-width:0px;
  658. position:absolute;
  659. left:755px;
  660. top:0px;
  661. width:153px;
  662. height:30px;
  663. display:flex;
  664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  665. font-weight:400;
  666. font-style:normal;
  667. color:#FFFFFF;
  668. }
  669. #u98673 .text {
  670. position:absolute;
  671. align-self:center;
  672. padding:2px 2px 2px 2px;
  673. box-sizing:border-box;
  674. width:100%;
  675. }
  676. #u98673_text {
  677. border-width:0px;
  678. word-wrap:break-word;
  679. text-transform:none;
  680. }
  681. #u98674_img {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:135px;
  687. height:30px;
  688. }
  689. #u98674 {
  690. border-width:0px;
  691. position:absolute;
  692. left:0px;
  693. top:30px;
  694. width:135px;
  695. height:30px;
  696. display:flex;
  697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  698. font-weight:400;
  699. font-style:normal;
  700. }
  701. #u98674 .text {
  702. position:absolute;
  703. align-self:center;
  704. padding:2px 2px 2px 2px;
  705. box-sizing:border-box;
  706. width:100%;
  707. }
  708. #u98674_text {
  709. border-width:0px;
  710. word-wrap:break-word;
  711. text-transform:none;
  712. visibility:hidden;
  713. }
  714. #u98675_img {
  715. border-width:0px;
  716. position:absolute;
  717. left:0px;
  718. top:0px;
  719. width:161px;
  720. height:30px;
  721. }
  722. #u98675 {
  723. border-width:0px;
  724. position:absolute;
  725. left:135px;
  726. top:30px;
  727. width:161px;
  728. height:30px;
  729. display:flex;
  730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  731. font-weight:400;
  732. font-style:normal;
  733. }
  734. #u98675 .text {
  735. position:absolute;
  736. align-self:center;
  737. padding:2px 2px 2px 2px;
  738. box-sizing:border-box;
  739. width:100%;
  740. }
  741. #u98675_text {
  742. border-width:0px;
  743. word-wrap:break-word;
  744. text-transform:none;
  745. visibility:hidden;
  746. }
  747. #u98676_img {
  748. border-width:0px;
  749. position:absolute;
  750. left:0px;
  751. top:0px;
  752. width:161px;
  753. height:30px;
  754. }
  755. #u98676 {
  756. border-width:0px;
  757. position:absolute;
  758. left:296px;
  759. top:30px;
  760. width:161px;
  761. height:30px;
  762. display:flex;
  763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  764. font-weight:400;
  765. font-style:normal;
  766. }
  767. #u98676 .text {
  768. position:absolute;
  769. align-self:center;
  770. padding:2px 2px 2px 2px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u98676_text {
  775. border-width:0px;
  776. word-wrap:break-word;
  777. text-transform:none;
  778. visibility:hidden;
  779. }
  780. #u98677_img {
  781. border-width:0px;
  782. position:absolute;
  783. left:0px;
  784. top:0px;
  785. width:161px;
  786. height:30px;
  787. }
  788. #u98677 {
  789. border-width:0px;
  790. position:absolute;
  791. left:457px;
  792. top:30px;
  793. width:161px;
  794. height:30px;
  795. display:flex;
  796. }
  797. #u98677 .text {
  798. position:absolute;
  799. align-self:center;
  800. padding:2px 2px 2px 2px;
  801. box-sizing:border-box;
  802. width:100%;
  803. }
  804. #u98677_text {
  805. border-width:0px;
  806. word-wrap:break-word;
  807. text-transform:none;
  808. visibility:hidden;
  809. }
  810. #u98678_img {
  811. border-width:0px;
  812. position:absolute;
  813. left:0px;
  814. top:0px;
  815. width:137px;
  816. height:30px;
  817. }
  818. #u98678 {
  819. border-width:0px;
  820. position:absolute;
  821. left:618px;
  822. top:30px;
  823. width:137px;
  824. height:30px;
  825. display:flex;
  826. }
  827. #u98678 .text {
  828. position:absolute;
  829. align-self:center;
  830. padding:2px 2px 2px 2px;
  831. box-sizing:border-box;
  832. width:100%;
  833. }
  834. #u98678_text {
  835. border-width:0px;
  836. word-wrap:break-word;
  837. text-transform:none;
  838. visibility:hidden;
  839. }
  840. #u98679_img {
  841. border-width:0px;
  842. position:absolute;
  843. left:0px;
  844. top:0px;
  845. width:153px;
  846. height:30px;
  847. }
  848. #u98679 {
  849. border-width:0px;
  850. position:absolute;
  851. left:755px;
  852. top:30px;
  853. width:153px;
  854. height:30px;
  855. display:flex;
  856. }
  857. #u98679 .text {
  858. position:absolute;
  859. align-self:center;
  860. padding:2px 2px 2px 2px;
  861. box-sizing:border-box;
  862. width:100%;
  863. }
  864. #u98679_text {
  865. border-width:0px;
  866. word-wrap:break-word;
  867. text-transform:none;
  868. visibility:hidden;
  869. }
  870. #u98680_img {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:135px;
  876. height:30px;
  877. }
  878. #u98680 {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:60px;
  883. width:135px;
  884. height:30px;
  885. display:flex;
  886. }
  887. #u98680 .text {
  888. position:absolute;
  889. align-self:center;
  890. padding:2px 2px 2px 2px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u98680_text {
  895. border-width:0px;
  896. word-wrap:break-word;
  897. text-transform:none;
  898. visibility:hidden;
  899. }
  900. #u98681_img {
  901. border-width:0px;
  902. position:absolute;
  903. left:0px;
  904. top:0px;
  905. width:161px;
  906. height:30px;
  907. }
  908. #u98681 {
  909. border-width:0px;
  910. position:absolute;
  911. left:135px;
  912. top:60px;
  913. width:161px;
  914. height:30px;
  915. display:flex;
  916. }
  917. #u98681 .text {
  918. position:absolute;
  919. align-self:center;
  920. padding:2px 2px 2px 2px;
  921. box-sizing:border-box;
  922. width:100%;
  923. }
  924. #u98681_text {
  925. border-width:0px;
  926. word-wrap:break-word;
  927. text-transform:none;
  928. visibility:hidden;
  929. }
  930. #u98682_img {
  931. border-width:0px;
  932. position:absolute;
  933. left:0px;
  934. top:0px;
  935. width:161px;
  936. height:30px;
  937. }
  938. #u98682 {
  939. border-width:0px;
  940. position:absolute;
  941. left:296px;
  942. top:60px;
  943. width:161px;
  944. height:30px;
  945. display:flex;
  946. }
  947. #u98682 .text {
  948. position:absolute;
  949. align-self:center;
  950. padding:2px 2px 2px 2px;
  951. box-sizing:border-box;
  952. width:100%;
  953. }
  954. #u98682_text {
  955. border-width:0px;
  956. word-wrap:break-word;
  957. text-transform:none;
  958. visibility:hidden;
  959. }
  960. #u98683_img {
  961. border-width:0px;
  962. position:absolute;
  963. left:0px;
  964. top:0px;
  965. width:161px;
  966. height:30px;
  967. }
  968. #u98683 {
  969. border-width:0px;
  970. position:absolute;
  971. left:457px;
  972. top:60px;
  973. width:161px;
  974. height:30px;
  975. display:flex;
  976. }
  977. #u98683 .text {
  978. position:absolute;
  979. align-self:center;
  980. padding:2px 2px 2px 2px;
  981. box-sizing:border-box;
  982. width:100%;
  983. }
  984. #u98683_text {
  985. border-width:0px;
  986. word-wrap:break-word;
  987. text-transform:none;
  988. visibility:hidden;
  989. }
  990. #u98684_img {
  991. border-width:0px;
  992. position:absolute;
  993. left:0px;
  994. top:0px;
  995. width:137px;
  996. height:30px;
  997. }
  998. #u98684 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:618px;
  1002. top:60px;
  1003. width:137px;
  1004. height:30px;
  1005. display:flex;
  1006. }
  1007. #u98684 .text {
  1008. position:absolute;
  1009. align-self:center;
  1010. padding:2px 2px 2px 2px;
  1011. box-sizing:border-box;
  1012. width:100%;
  1013. }
  1014. #u98684_text {
  1015. border-width:0px;
  1016. word-wrap:break-word;
  1017. text-transform:none;
  1018. visibility:hidden;
  1019. }
  1020. #u98685_img {
  1021. border-width:0px;
  1022. position:absolute;
  1023. left:0px;
  1024. top:0px;
  1025. width:153px;
  1026. height:30px;
  1027. }
  1028. #u98685 {
  1029. border-width:0px;
  1030. position:absolute;
  1031. left:755px;
  1032. top:60px;
  1033. width:153px;
  1034. height:30px;
  1035. display:flex;
  1036. }
  1037. #u98685 .text {
  1038. position:absolute;
  1039. align-self:center;
  1040. padding:2px 2px 2px 2px;
  1041. box-sizing:border-box;
  1042. width:100%;
  1043. }
  1044. #u98685_text {
  1045. border-width:0px;
  1046. word-wrap:break-word;
  1047. text-transform:none;
  1048. visibility:hidden;
  1049. }
  1050. #u98686_img {
  1051. border-width:0px;
  1052. position:absolute;
  1053. left:0px;
  1054. top:0px;
  1055. width:135px;
  1056. height:30px;
  1057. }
  1058. #u98686 {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:0px;
  1062. top:90px;
  1063. width:135px;
  1064. height:30px;
  1065. display:flex;
  1066. }
  1067. #u98686 .text {
  1068. position:absolute;
  1069. align-self:center;
  1070. padding:2px 2px 2px 2px;
  1071. box-sizing:border-box;
  1072. width:100%;
  1073. }
  1074. #u98686_text {
  1075. border-width:0px;
  1076. word-wrap:break-word;
  1077. text-transform:none;
  1078. visibility:hidden;
  1079. }
  1080. #u98687_img {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:0px;
  1084. top:0px;
  1085. width:161px;
  1086. height:30px;
  1087. }
  1088. #u98687 {
  1089. border-width:0px;
  1090. position:absolute;
  1091. left:135px;
  1092. top:90px;
  1093. width:161px;
  1094. height:30px;
  1095. display:flex;
  1096. }
  1097. #u98687 .text {
  1098. position:absolute;
  1099. align-self:center;
  1100. padding:2px 2px 2px 2px;
  1101. box-sizing:border-box;
  1102. width:100%;
  1103. }
  1104. #u98687_text {
  1105. border-width:0px;
  1106. word-wrap:break-word;
  1107. text-transform:none;
  1108. visibility:hidden;
  1109. }
  1110. #u98688_img {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:0px;
  1114. top:0px;
  1115. width:161px;
  1116. height:30px;
  1117. }
  1118. #u98688 {
  1119. border-width:0px;
  1120. position:absolute;
  1121. left:296px;
  1122. top:90px;
  1123. width:161px;
  1124. height:30px;
  1125. display:flex;
  1126. }
  1127. #u98688 .text {
  1128. position:absolute;
  1129. align-self:center;
  1130. padding:2px 2px 2px 2px;
  1131. box-sizing:border-box;
  1132. width:100%;
  1133. }
  1134. #u98688_text {
  1135. border-width:0px;
  1136. word-wrap:break-word;
  1137. text-transform:none;
  1138. visibility:hidden;
  1139. }
  1140. #u98689_img {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:0px;
  1144. top:0px;
  1145. width:161px;
  1146. height:30px;
  1147. }
  1148. #u98689 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:457px;
  1152. top:90px;
  1153. width:161px;
  1154. height:30px;
  1155. display:flex;
  1156. }
  1157. #u98689 .text {
  1158. position:absolute;
  1159. align-self:center;
  1160. padding:2px 2px 2px 2px;
  1161. box-sizing:border-box;
  1162. width:100%;
  1163. }
  1164. #u98689_text {
  1165. border-width:0px;
  1166. word-wrap:break-word;
  1167. text-transform:none;
  1168. visibility:hidden;
  1169. }
  1170. #u98690_img {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:0px;
  1174. top:0px;
  1175. width:137px;
  1176. height:30px;
  1177. }
  1178. #u98690 {
  1179. border-width:0px;
  1180. position:absolute;
  1181. left:618px;
  1182. top:90px;
  1183. width:137px;
  1184. height:30px;
  1185. display:flex;
  1186. }
  1187. #u98690 .text {
  1188. position:absolute;
  1189. align-self:center;
  1190. padding:2px 2px 2px 2px;
  1191. box-sizing:border-box;
  1192. width:100%;
  1193. }
  1194. #u98690_text {
  1195. border-width:0px;
  1196. word-wrap:break-word;
  1197. text-transform:none;
  1198. visibility:hidden;
  1199. }
  1200. #u98691_img {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:0px;
  1204. top:0px;
  1205. width:153px;
  1206. height:30px;
  1207. }
  1208. #u98691 {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:755px;
  1212. top:90px;
  1213. width:153px;
  1214. height:30px;
  1215. display:flex;
  1216. }
  1217. #u98691 .text {
  1218. position:absolute;
  1219. align-self:center;
  1220. padding:2px 2px 2px 2px;
  1221. box-sizing:border-box;
  1222. width:100%;
  1223. }
  1224. #u98691_text {
  1225. border-width:0px;
  1226. word-wrap:break-word;
  1227. text-transform:none;
  1228. visibility:hidden;
  1229. }
  1230. #u98692_img {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:0px;
  1234. top:0px;
  1235. width:135px;
  1236. height:30px;
  1237. }
  1238. #u98692 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:120px;
  1243. width:135px;
  1244. height:30px;
  1245. display:flex;
  1246. }
  1247. #u98692 .text {
  1248. position:absolute;
  1249. align-self:center;
  1250. padding:2px 2px 2px 2px;
  1251. box-sizing:border-box;
  1252. width:100%;
  1253. }
  1254. #u98692_text {
  1255. border-width:0px;
  1256. word-wrap:break-word;
  1257. text-transform:none;
  1258. visibility:hidden;
  1259. }
  1260. #u98693_img {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:0px;
  1264. top:0px;
  1265. width:161px;
  1266. height:30px;
  1267. }
  1268. #u98693 {
  1269. border-width:0px;
  1270. position:absolute;
  1271. left:135px;
  1272. top:120px;
  1273. width:161px;
  1274. height:30px;
  1275. display:flex;
  1276. }
  1277. #u98693 .text {
  1278. position:absolute;
  1279. align-self:center;
  1280. padding:2px 2px 2px 2px;
  1281. box-sizing:border-box;
  1282. width:100%;
  1283. }
  1284. #u98693_text {
  1285. border-width:0px;
  1286. word-wrap:break-word;
  1287. text-transform:none;
  1288. visibility:hidden;
  1289. }
  1290. #u98694_img {
  1291. border-width:0px;
  1292. position:absolute;
  1293. left:0px;
  1294. top:0px;
  1295. width:161px;
  1296. height:30px;
  1297. }
  1298. #u98694 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:296px;
  1302. top:120px;
  1303. width:161px;
  1304. height:30px;
  1305. display:flex;
  1306. }
  1307. #u98694 .text {
  1308. position:absolute;
  1309. align-self:center;
  1310. padding:2px 2px 2px 2px;
  1311. box-sizing:border-box;
  1312. width:100%;
  1313. }
  1314. #u98694_text {
  1315. border-width:0px;
  1316. word-wrap:break-word;
  1317. text-transform:none;
  1318. visibility:hidden;
  1319. }
  1320. #u98695_img {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:0px;
  1324. top:0px;
  1325. width:161px;
  1326. height:30px;
  1327. }
  1328. #u98695 {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:457px;
  1332. top:120px;
  1333. width:161px;
  1334. height:30px;
  1335. display:flex;
  1336. }
  1337. #u98695 .text {
  1338. position:absolute;
  1339. align-self:center;
  1340. padding:2px 2px 2px 2px;
  1341. box-sizing:border-box;
  1342. width:100%;
  1343. }
  1344. #u98695_text {
  1345. border-width:0px;
  1346. word-wrap:break-word;
  1347. text-transform:none;
  1348. visibility:hidden;
  1349. }
  1350. #u98696_img {
  1351. border-width:0px;
  1352. position:absolute;
  1353. left:0px;
  1354. top:0px;
  1355. width:137px;
  1356. height:30px;
  1357. }
  1358. #u98696 {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:618px;
  1362. top:120px;
  1363. width:137px;
  1364. height:30px;
  1365. display:flex;
  1366. }
  1367. #u98696 .text {
  1368. position:absolute;
  1369. align-self:center;
  1370. padding:2px 2px 2px 2px;
  1371. box-sizing:border-box;
  1372. width:100%;
  1373. }
  1374. #u98696_text {
  1375. border-width:0px;
  1376. word-wrap:break-word;
  1377. text-transform:none;
  1378. visibility:hidden;
  1379. }
  1380. #u98697_img {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:0px;
  1384. top:0px;
  1385. width:153px;
  1386. height:30px;
  1387. }
  1388. #u98697 {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:755px;
  1392. top:120px;
  1393. width:153px;
  1394. height:30px;
  1395. display:flex;
  1396. }
  1397. #u98697 .text {
  1398. position:absolute;
  1399. align-self:center;
  1400. padding:2px 2px 2px 2px;
  1401. box-sizing:border-box;
  1402. width:100%;
  1403. }
  1404. #u98697_text {
  1405. border-width:0px;
  1406. word-wrap:break-word;
  1407. text-transform:none;
  1408. visibility:hidden;
  1409. }
  1410. #u98698_img {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:135px;
  1416. height:30px;
  1417. }
  1418. #u98698 {
  1419. border-width:0px;
  1420. position:absolute;
  1421. left:0px;
  1422. top:150px;
  1423. width:135px;
  1424. height:30px;
  1425. display:flex;
  1426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. }
  1430. #u98698 .text {
  1431. position:absolute;
  1432. align-self:center;
  1433. padding:2px 2px 2px 2px;
  1434. box-sizing:border-box;
  1435. width:100%;
  1436. }
  1437. #u98698_text {
  1438. border-width:0px;
  1439. word-wrap:break-word;
  1440. text-transform:none;
  1441. }
  1442. #u98699_img {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:0px;
  1446. top:0px;
  1447. width:161px;
  1448. height:30px;
  1449. }
  1450. #u98699 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:135px;
  1454. top:150px;
  1455. width:161px;
  1456. height:30px;
  1457. display:flex;
  1458. }
  1459. #u98699 .text {
  1460. position:absolute;
  1461. align-self:center;
  1462. padding:2px 2px 2px 2px;
  1463. box-sizing:border-box;
  1464. width:100%;
  1465. }
  1466. #u98699_text {
  1467. border-width:0px;
  1468. word-wrap:break-word;
  1469. text-transform:none;
  1470. visibility:hidden;
  1471. }
  1472. #u98700_img {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:0px;
  1476. top:0px;
  1477. width:161px;
  1478. height:30px;
  1479. }
  1480. #u98700 {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:296px;
  1484. top:150px;
  1485. width:161px;
  1486. height:30px;
  1487. display:flex;
  1488. }
  1489. #u98700 .text {
  1490. position:absolute;
  1491. align-self:center;
  1492. padding:2px 2px 2px 2px;
  1493. box-sizing:border-box;
  1494. width:100%;
  1495. }
  1496. #u98700_text {
  1497. border-width:0px;
  1498. word-wrap:break-word;
  1499. text-transform:none;
  1500. visibility:hidden;
  1501. }
  1502. #u98701_img {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:0px;
  1506. top:0px;
  1507. width:161px;
  1508. height:30px;
  1509. }
  1510. #u98701 {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:457px;
  1514. top:150px;
  1515. width:161px;
  1516. height:30px;
  1517. display:flex;
  1518. }
  1519. #u98701 .text {
  1520. position:absolute;
  1521. align-self:center;
  1522. padding:2px 2px 2px 2px;
  1523. box-sizing:border-box;
  1524. width:100%;
  1525. }
  1526. #u98701_text {
  1527. border-width:0px;
  1528. word-wrap:break-word;
  1529. text-transform:none;
  1530. visibility:hidden;
  1531. }
  1532. #u98702_img {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:137px;
  1538. height:30px;
  1539. }
  1540. #u98702 {
  1541. border-width:0px;
  1542. position:absolute;
  1543. left:618px;
  1544. top:150px;
  1545. width:137px;
  1546. height:30px;
  1547. display:flex;
  1548. }
  1549. #u98702 .text {
  1550. position:absolute;
  1551. align-self:center;
  1552. padding:2px 2px 2px 2px;
  1553. box-sizing:border-box;
  1554. width:100%;
  1555. }
  1556. #u98702_text {
  1557. border-width:0px;
  1558. word-wrap:break-word;
  1559. text-transform:none;
  1560. visibility:hidden;
  1561. }
  1562. #u98703_img {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:153px;
  1568. height:30px;
  1569. }
  1570. #u98703 {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:755px;
  1574. top:150px;
  1575. width:153px;
  1576. height:30px;
  1577. display:flex;
  1578. }
  1579. #u98703 .text {
  1580. position:absolute;
  1581. align-self:center;
  1582. padding:2px 2px 2px 2px;
  1583. box-sizing:border-box;
  1584. width:100%;
  1585. }
  1586. #u98703_text {
  1587. border-width:0px;
  1588. word-wrap:break-word;
  1589. text-transform:none;
  1590. visibility:hidden;
  1591. }
  1592. #u98704_div {
  1593. border-width:0px;
  1594. position:absolute;
  1595. left:0px;
  1596. top:0px;
  1597. width:83px;
  1598. height:35px;
  1599. background:inherit;
  1600. background-color:rgba(255, 255, 255, 0);
  1601. border:none;
  1602. border-top:0px;
  1603. border-right:0px;
  1604. border-bottom:0px;
  1605. border-radius:0px;
  1606. border-top-left-radius:0px;
  1607. border-bottom-left-radius:0px;
  1608. -moz-box-shadow:none;
  1609. -webkit-box-shadow:none;
  1610. box-shadow:none;
  1611. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1612. font-weight:500;
  1613. font-style:normal;
  1614. font-size:18px;
  1615. }
  1616. #u98704 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:114px;
  1620. top:684px;
  1621. width:83px;
  1622. height:35px;
  1623. display:flex;
  1624. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1625. font-weight:500;
  1626. font-style:normal;
  1627. font-size:18px;
  1628. }
  1629. #u98704 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:5px 10px 5px 0px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u98704_text {
  1637. border-width:0px;
  1638. white-space:nowrap;
  1639. text-transform:none;
  1640. }
  1641. #u98705_div {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:67px;
  1647. height:30px;
  1648. background:inherit;
  1649. background-color:rgba(255, 255, 255, 0);
  1650. border:none;
  1651. border-top:0px;
  1652. border-right:0px;
  1653. border-bottom:0px;
  1654. border-radius:0px;
  1655. border-top-left-radius:0px;
  1656. border-bottom-left-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1661. font-weight:500;
  1662. font-style:normal;
  1663. font-size:14px;
  1664. }
  1665. #u98705 {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:125px;
  1669. top:127px;
  1670. width:67px;
  1671. height:30px;
  1672. display:flex;
  1673. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1674. font-weight:500;
  1675. font-style:normal;
  1676. font-size:14px;
  1677. }
  1678. #u98705 .text {
  1679. position:absolute;
  1680. align-self:center;
  1681. padding:5px 10px 5px 0px;
  1682. box-sizing:border-box;
  1683. width:100%;
  1684. }
  1685. #u98705_text {
  1686. border-width:0px;
  1687. white-space:nowrap;
  1688. text-transform:none;
  1689. }
  1690. #u98706_div {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:43px;
  1696. height:30px;
  1697. background:inherit;
  1698. background-color:rgba(255, 255, 255, 0);
  1699. border:none;
  1700. border-top:0px;
  1701. border-right:0px;
  1702. border-bottom:0px;
  1703. border-radius:0px;
  1704. border-top-left-radius:0px;
  1705. border-bottom-left-radius:0px;
  1706. -moz-box-shadow:none;
  1707. -webkit-box-shadow:none;
  1708. box-shadow:none;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:14px;
  1713. color:#7F7F7F;
  1714. }
  1715. #u98706 {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:145px;
  1719. top:170px;
  1720. width:43px;
  1721. height:30px;
  1722. display:flex;
  1723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1724. font-weight:400;
  1725. font-style:normal;
  1726. font-size:14px;
  1727. color:#7F7F7F;
  1728. }
  1729. #u98706 .text {
  1730. position:absolute;
  1731. align-self:center;
  1732. padding:5px 0px 5px 0px;
  1733. box-sizing:border-box;
  1734. width:100%;
  1735. }
  1736. #u98706_text {
  1737. border-width:0px;
  1738. white-space:nowrap;
  1739. text-transform:none;
  1740. }
  1741. #u98707_div {
  1742. border-width:0px;
  1743. position:absolute;
  1744. left:0px;
  1745. top:0px;
  1746. width:113px;
  1747. height:30px;
  1748. background:inherit;
  1749. background-color:rgba(255, 255, 255, 0);
  1750. border:none;
  1751. border-top:0px;
  1752. border-right:0px;
  1753. border-bottom:0px;
  1754. border-radius:0px;
  1755. border-top-left-radius:0px;
  1756. border-bottom-left-radius:0px;
  1757. -moz-box-shadow:none;
  1758. -webkit-box-shadow:none;
  1759. box-shadow:none;
  1760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1761. font-weight:400;
  1762. font-style:normal;
  1763. font-size:14px;
  1764. }
  1765. #u98707 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:221px;
  1769. top:170px;
  1770. width:113px;
  1771. height:30px;
  1772. display:flex;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:14px;
  1777. }
  1778. #u98707 .text {
  1779. position:absolute;
  1780. align-self:center;
  1781. padding:5px 0px 5px 0px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u98707_text {
  1786. border-width:0px;
  1787. white-space:nowrap;
  1788. text-transform:none;
  1789. }
  1790. #u98708_div {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:43px;
  1796. height:30px;
  1797. background:inherit;
  1798. background-color:rgba(255, 255, 255, 0);
  1799. border:none;
  1800. border-top:0px;
  1801. border-right:0px;
  1802. border-bottom:0px;
  1803. border-radius:0px;
  1804. border-top-left-radius:0px;
  1805. border-bottom-left-radius:0px;
  1806. -moz-box-shadow:none;
  1807. -webkit-box-shadow:none;
  1808. box-shadow:none;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:14px;
  1813. color:#7F7F7F;
  1814. }
  1815. #u98708 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:511px;
  1819. top:170px;
  1820. width:43px;
  1821. height:30px;
  1822. display:flex;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:14px;
  1827. color:#7F7F7F;
  1828. }
  1829. #u98708 .text {
  1830. position:absolute;
  1831. align-self:center;
  1832. padding:5px 0px 5px 0px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u98708_text {
  1837. border-width:0px;
  1838. white-space:nowrap;
  1839. text-transform:none;
  1840. }
  1841. #u98709_div {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:86px;
  1847. height:30px;
  1848. background:inherit;
  1849. background-color:rgba(255, 255, 255, 0);
  1850. border:none;
  1851. border-top:0px;
  1852. border-right:0px;
  1853. border-bottom:0px;
  1854. border-radius:0px;
  1855. border-top-left-radius:0px;
  1856. border-bottom-left-radius:0px;
  1857. -moz-box-shadow:none;
  1858. -webkit-box-shadow:none;
  1859. box-shadow:none;
  1860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1861. font-weight:400;
  1862. font-style:normal;
  1863. font-size:14px;
  1864. }
  1865. #u98709 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:587px;
  1869. top:170px;
  1870. width:86px;
  1871. height:30px;
  1872. display:flex;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:14px;
  1877. }
  1878. #u98709 .text {
  1879. position:absolute;
  1880. align-self:center;
  1881. padding:5px 0px 5px 0px;
  1882. box-sizing:border-box;
  1883. width:100%;
  1884. }
  1885. #u98709_text {
  1886. border-width:0px;
  1887. white-space:nowrap;
  1888. text-transform:none;
  1889. }
  1890. #u98710_div {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:71px;
  1896. height:30px;
  1897. background:inherit;
  1898. background-color:rgba(255, 255, 255, 0);
  1899. border:none;
  1900. border-top:0px;
  1901. border-right:0px;
  1902. border-bottom:0px;
  1903. border-radius:0px;
  1904. border-top-left-radius:0px;
  1905. border-bottom-left-radius:0px;
  1906. -moz-box-shadow:none;
  1907. -webkit-box-shadow:none;
  1908. box-shadow:none;
  1909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1910. font-weight:400;
  1911. font-style:normal;
  1912. font-size:14px;
  1913. color:#7F7F7F;
  1914. }
  1915. #u98710 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:145px;
  1919. top:210px;
  1920. width:71px;
  1921. height:30px;
  1922. display:flex;
  1923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1924. font-weight:400;
  1925. font-style:normal;
  1926. font-size:14px;
  1927. color:#7F7F7F;
  1928. }
  1929. #u98710 .text {
  1930. position:absolute;
  1931. align-self:center;
  1932. padding:5px 0px 5px 0px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u98710_text {
  1937. border-width:0px;
  1938. white-space:nowrap;
  1939. text-transform:none;
  1940. }
  1941. #u98711_div {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:89px;
  1947. height:30px;
  1948. background:inherit;
  1949. background-color:rgba(255, 255, 255, 0);
  1950. border:none;
  1951. border-top:0px;
  1952. border-right:0px;
  1953. border-bottom:0px;
  1954. border-radius:0px;
  1955. border-top-left-radius:0px;
  1956. border-bottom-left-radius:0px;
  1957. -moz-box-shadow:none;
  1958. -webkit-box-shadow:none;
  1959. box-shadow:none;
  1960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. font-size:14px;
  1964. }
  1965. #u98711 {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:221px;
  1969. top:210px;
  1970. width:89px;
  1971. height:30px;
  1972. display:flex;
  1973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1974. font-weight:400;
  1975. font-style:normal;
  1976. font-size:14px;
  1977. }
  1978. #u98711 .text {
  1979. position:absolute;
  1980. align-self:center;
  1981. padding:5px 0px 5px 0px;
  1982. box-sizing:border-box;
  1983. width:100%;
  1984. }
  1985. #u98711_text {
  1986. border-width:0px;
  1987. white-space:nowrap;
  1988. text-transform:none;
  1989. }
  1990. #u98712_div {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:71px;
  1996. height:30px;
  1997. background:inherit;
  1998. background-color:rgba(255, 255, 255, 0);
  1999. border:none;
  2000. border-top:0px;
  2001. border-right:0px;
  2002. border-bottom:0px;
  2003. border-radius:0px;
  2004. border-top-left-radius:0px;
  2005. border-bottom-left-radius:0px;
  2006. -moz-box-shadow:none;
  2007. -webkit-box-shadow:none;
  2008. box-shadow:none;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:14px;
  2013. color:#7F7F7F;
  2014. }
  2015. #u98712 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:511px;
  2019. top:210px;
  2020. width:71px;
  2021. height:30px;
  2022. display:flex;
  2023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2024. font-weight:400;
  2025. font-style:normal;
  2026. font-size:14px;
  2027. color:#7F7F7F;
  2028. }
  2029. #u98712 .text {
  2030. position:absolute;
  2031. align-self:center;
  2032. padding:5px 0px 5px 0px;
  2033. box-sizing:border-box;
  2034. width:100%;
  2035. }
  2036. #u98712_text {
  2037. border-width:0px;
  2038. white-space:nowrap;
  2039. text-transform:none;
  2040. }
  2041. #u98713_div {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:89px;
  2047. height:30px;
  2048. background:inherit;
  2049. background-color:rgba(255, 255, 255, 0);
  2050. border:none;
  2051. border-top:0px;
  2052. border-right:0px;
  2053. border-bottom:0px;
  2054. border-radius:0px;
  2055. border-top-left-radius:0px;
  2056. border-bottom-left-radius:0px;
  2057. -moz-box-shadow:none;
  2058. -webkit-box-shadow:none;
  2059. box-shadow:none;
  2060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2061. font-weight:400;
  2062. font-style:normal;
  2063. font-size:14px;
  2064. }
  2065. #u98713 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:587px;
  2069. top:210px;
  2070. width:89px;
  2071. height:30px;
  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. #u98713 .text {
  2079. position:absolute;
  2080. align-self:center;
  2081. padding:5px 0px 5px 0px;
  2082. box-sizing:border-box;
  2083. width:100%;
  2084. }
  2085. #u98713_text {
  2086. border-width:0px;
  2087. white-space:nowrap;
  2088. text-transform:none;
  2089. }
  2090. #u98714_div {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:71px;
  2096. height:30px;
  2097. background:inherit;
  2098. background-color:rgba(255, 255, 255, 0);
  2099. border:none;
  2100. border-top:0px;
  2101. border-right:0px;
  2102. border-bottom:0px;
  2103. border-radius:0px;
  2104. border-top-left-radius:0px;
  2105. border-bottom-left-radius:0px;
  2106. -moz-box-shadow:none;
  2107. -webkit-box-shadow:none;
  2108. box-shadow:none;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:14px;
  2113. color:#7F7F7F;
  2114. }
  2115. #u98714 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:145px;
  2119. top:250px;
  2120. width:71px;
  2121. height:30px;
  2122. display:flex;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:14px;
  2127. color:#7F7F7F;
  2128. }
  2129. #u98714 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:5px 0px 5px 0px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u98714_text {
  2137. border-width:0px;
  2138. white-space:nowrap;
  2139. text-transform:none;
  2140. }
  2141. #u98715_div {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:89px;
  2147. height:30px;
  2148. background:inherit;
  2149. background-color:rgba(255, 255, 255, 0);
  2150. border:none;
  2151. border-top:0px;
  2152. border-right:0px;
  2153. border-bottom:0px;
  2154. border-radius:0px;
  2155. border-top-left-radius:0px;
  2156. border-bottom-left-radius:0px;
  2157. -moz-box-shadow:none;
  2158. -webkit-box-shadow:none;
  2159. box-shadow:none;
  2160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2161. font-weight:400;
  2162. font-style:normal;
  2163. font-size:14px;
  2164. }
  2165. #u98715 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:221px;
  2169. top:250px;
  2170. width:89px;
  2171. height:30px;
  2172. display:flex;
  2173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2174. font-weight:400;
  2175. font-style:normal;
  2176. font-size:14px;
  2177. }
  2178. #u98715 .text {
  2179. position:absolute;
  2180. align-self:center;
  2181. padding:5px 0px 5px 0px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u98715_text {
  2186. border-width:0px;
  2187. white-space:nowrap;
  2188. text-transform:none;
  2189. }
  2190. #u98716_div {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:71px;
  2196. height:30px;
  2197. background:inherit;
  2198. background-color:rgba(255, 255, 255, 0);
  2199. border:none;
  2200. border-top:0px;
  2201. border-right:0px;
  2202. border-bottom:0px;
  2203. border-radius:0px;
  2204. border-top-left-radius:0px;
  2205. border-bottom-left-radius:0px;
  2206. -moz-box-shadow:none;
  2207. -webkit-box-shadow:none;
  2208. box-shadow:none;
  2209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2210. font-weight:400;
  2211. font-style:normal;
  2212. font-size:14px;
  2213. color:#7F7F7F;
  2214. }
  2215. #u98716 {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:511px;
  2219. top:250px;
  2220. width:71px;
  2221. height:30px;
  2222. display:flex;
  2223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2224. font-weight:400;
  2225. font-style:normal;
  2226. font-size:14px;
  2227. color:#7F7F7F;
  2228. }
  2229. #u98716 .text {
  2230. position:absolute;
  2231. align-self:center;
  2232. padding:5px 0px 5px 0px;
  2233. box-sizing:border-box;
  2234. width:100%;
  2235. }
  2236. #u98716_text {
  2237. border-width:0px;
  2238. white-space:nowrap;
  2239. text-transform:none;
  2240. }
  2241. #u98717_div {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:29px;
  2247. height:30px;
  2248. background:inherit;
  2249. background-color:rgba(255, 255, 255, 0);
  2250. border:none;
  2251. border-top:0px;
  2252. border-right:0px;
  2253. border-bottom:0px;
  2254. border-radius:0px;
  2255. border-top-left-radius:0px;
  2256. border-bottom-left-radius:0px;
  2257. -moz-box-shadow:none;
  2258. -webkit-box-shadow:none;
  2259. box-shadow:none;
  2260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2261. font-weight:400;
  2262. font-style:normal;
  2263. font-size:14px;
  2264. }
  2265. #u98717 {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:587px;
  2269. top:250px;
  2270. width:29px;
  2271. height:30px;
  2272. display:flex;
  2273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2274. font-weight:400;
  2275. font-style:normal;
  2276. font-size:14px;
  2277. }
  2278. #u98717 .text {
  2279. position:absolute;
  2280. align-self:center;
  2281. padding:5px 0px 5px 0px;
  2282. box-sizing:border-box;
  2283. width:100%;
  2284. }
  2285. #u98717_text {
  2286. border-width:0px;
  2287. white-space:nowrap;
  2288. text-transform:none;
  2289. }
  2290. #u98718_div {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:71px;
  2296. height:30px;
  2297. background:inherit;
  2298. background-color:rgba(255, 255, 255, 0);
  2299. border:none;
  2300. border-top:0px;
  2301. border-right:0px;
  2302. border-bottom:0px;
  2303. border-radius:0px;
  2304. border-top-left-radius:0px;
  2305. border-bottom-left-radius:0px;
  2306. -moz-box-shadow:none;
  2307. -webkit-box-shadow:none;
  2308. box-shadow:none;
  2309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2310. font-weight:400;
  2311. font-style:normal;
  2312. font-size:14px;
  2313. color:#7F7F7F;
  2314. }
  2315. #u98718 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:145px;
  2319. top:290px;
  2320. width:71px;
  2321. height:30px;
  2322. display:flex;
  2323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2324. font-weight:400;
  2325. font-style:normal;
  2326. font-size:14px;
  2327. color:#7F7F7F;
  2328. }
  2329. #u98718 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:5px 0px 5px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u98718_text {
  2337. border-width:0px;
  2338. white-space:nowrap;
  2339. text-transform:none;
  2340. }
  2341. #u98719_div {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:81px;
  2347. height:30px;
  2348. background:inherit;
  2349. background-color:rgba(255, 255, 255, 0);
  2350. border:none;
  2351. border-top:0px;
  2352. border-right:0px;
  2353. border-bottom:0px;
  2354. border-radius:0px;
  2355. border-top-left-radius:0px;
  2356. border-bottom-left-radius:0px;
  2357. -moz-box-shadow:none;
  2358. -webkit-box-shadow:none;
  2359. box-shadow:none;
  2360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2361. font-weight:400;
  2362. font-style:normal;
  2363. font-size:14px;
  2364. }
  2365. #u98719 {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:221px;
  2369. top:290px;
  2370. width:81px;
  2371. height:30px;
  2372. display:flex;
  2373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2374. font-weight:400;
  2375. font-style:normal;
  2376. font-size:14px;
  2377. }
  2378. #u98719 .text {
  2379. position:absolute;
  2380. align-self:center;
  2381. padding:5px 0px 5px 0px;
  2382. box-sizing:border-box;
  2383. width:100%;
  2384. }
  2385. #u98719_text {
  2386. border-width:0px;
  2387. white-space:nowrap;
  2388. text-transform:none;
  2389. }
  2390. #u98720_div {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:0px;
  2394. top:0px;
  2395. width:85px;
  2396. height:30px;
  2397. background:inherit;
  2398. background-color:rgba(255, 255, 255, 0);
  2399. border:none;
  2400. border-top:0px;
  2401. border-right:0px;
  2402. border-bottom:0px;
  2403. border-radius:0px;
  2404. border-top-left-radius:0px;
  2405. border-bottom-left-radius:0px;
  2406. -moz-box-shadow:none;
  2407. -webkit-box-shadow:none;
  2408. box-shadow:none;
  2409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:14px;
  2413. color:#7F7F7F;
  2414. }
  2415. #u98720 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:511px;
  2419. top:290px;
  2420. width:85px;
  2421. height:30px;
  2422. display:flex;
  2423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2424. font-weight:400;
  2425. font-style:normal;
  2426. font-size:14px;
  2427. color:#7F7F7F;
  2428. }
  2429. #u98720 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:5px 0px 5px 0px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u98720_text {
  2437. border-width:0px;
  2438. white-space:nowrap;
  2439. text-transform:none;
  2440. }
  2441. #u98721_div {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:82px;
  2447. height:30px;
  2448. background:inherit;
  2449. background-color:rgba(255, 255, 255, 0);
  2450. border:none;
  2451. border-top:0px;
  2452. border-right:0px;
  2453. border-bottom:0px;
  2454. border-radius:0px;
  2455. border-top-left-radius:0px;
  2456. border-bottom-left-radius:0px;
  2457. -moz-box-shadow:none;
  2458. -webkit-box-shadow:none;
  2459. box-shadow:none;
  2460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:14px;
  2464. }
  2465. #u98721 {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:587px;
  2469. top:290px;
  2470. width:82px;
  2471. height:30px;
  2472. display:flex;
  2473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2474. font-weight:400;
  2475. font-style:normal;
  2476. font-size:14px;
  2477. }
  2478. #u98721 .text {
  2479. position:absolute;
  2480. align-self:center;
  2481. padding:5px 0px 5px 0px;
  2482. box-sizing:border-box;
  2483. width:100%;
  2484. }
  2485. #u98721_text {
  2486. border-width:0px;
  2487. white-space:nowrap;
  2488. text-transform:none;
  2489. }
  2490. #u98722_div {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:0px;
  2494. top:0px;
  2495. width:71px;
  2496. height:30px;
  2497. background:inherit;
  2498. background-color:rgba(255, 255, 255, 0);
  2499. border:none;
  2500. border-top:0px;
  2501. border-right:0px;
  2502. border-bottom:0px;
  2503. border-radius:0px;
  2504. border-top-left-radius:0px;
  2505. border-bottom-left-radius:0px;
  2506. -moz-box-shadow:none;
  2507. -webkit-box-shadow:none;
  2508. box-shadow:none;
  2509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2510. font-weight:400;
  2511. font-style:normal;
  2512. font-size:14px;
  2513. color:#7F7F7F;
  2514. }
  2515. #u98722 {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:145px;
  2519. top:330px;
  2520. width:71px;
  2521. height:30px;
  2522. display:flex;
  2523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2524. font-weight:400;
  2525. font-style:normal;
  2526. font-size:14px;
  2527. color:#7F7F7F;
  2528. }
  2529. #u98722 .text {
  2530. position:absolute;
  2531. align-self:center;
  2532. padding:5px 0px 5px 0px;
  2533. box-sizing:border-box;
  2534. width:100%;
  2535. }
  2536. #u98722_text {
  2537. border-width:0px;
  2538. white-space:nowrap;
  2539. text-transform:none;
  2540. }
  2541. #u98723_div {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:589px;
  2547. height:30px;
  2548. background:inherit;
  2549. background-color:rgba(255, 255, 255, 0);
  2550. border:none;
  2551. border-top:0px;
  2552. border-right:0px;
  2553. border-bottom:0px;
  2554. border-radius:0px;
  2555. border-top-left-radius:0px;
  2556. border-bottom-left-radius:0px;
  2557. -moz-box-shadow:none;
  2558. -webkit-box-shadow:none;
  2559. box-shadow:none;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:14px;
  2564. }
  2565. #u98723 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:221px;
  2569. top:330px;
  2570. width:589px;
  2571. height:30px;
  2572. display:flex;
  2573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2574. font-weight:400;
  2575. font-style:normal;
  2576. font-size:14px;
  2577. }
  2578. #u98723 .text {
  2579. position:absolute;
  2580. align-self:center;
  2581. padding:5px 0px 5px 0px;
  2582. box-sizing:border-box;
  2583. width:100%;
  2584. }
  2585. #u98723_text {
  2586. border-width:0px;
  2587. white-space:nowrap;
  2588. text-transform:none;
  2589. }
  2590. #u98724_div {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:95px;
  2596. height:30px;
  2597. background:inherit;
  2598. background-color:rgba(255, 255, 255, 0);
  2599. border:none;
  2600. border-top:0px;
  2601. border-right:0px;
  2602. border-bottom:0px;
  2603. border-radius:0px;
  2604. border-top-left-radius:0px;
  2605. border-bottom-left-radius:0px;
  2606. -moz-box-shadow:none;
  2607. -webkit-box-shadow:none;
  2608. box-shadow:none;
  2609. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2610. font-weight:500;
  2611. font-style:normal;
  2612. font-size:14px;
  2613. }
  2614. #u98724 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:125px;
  2618. top:380px;
  2619. width:95px;
  2620. height:30px;
  2621. display:flex;
  2622. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2623. font-weight:500;
  2624. font-style:normal;
  2625. font-size:14px;
  2626. }
  2627. #u98724 .text {
  2628. position:absolute;
  2629. align-self:center;
  2630. padding:5px 10px 5px 0px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u98724_text {
  2635. border-width:0px;
  2636. white-space:nowrap;
  2637. text-transform:none;
  2638. }
  2639. #u98725_div {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:88px;
  2645. height:30px;
  2646. background:inherit;
  2647. background-color:rgba(255, 255, 255, 0);
  2648. border:none;
  2649. border-top:0px;
  2650. border-right:0px;
  2651. border-bottom:0px;
  2652. border-radius:0px;
  2653. border-top-left-radius:0px;
  2654. border-bottom-left-radius:0px;
  2655. -moz-box-shadow:none;
  2656. -webkit-box-shadow:none;
  2657. box-shadow:none;
  2658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2659. font-weight:400;
  2660. font-style:normal;
  2661. font-size:14px;
  2662. color:#7F7F7F;
  2663. text-align:right;
  2664. }
  2665. #u98725 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:138px;
  2669. top:736px;
  2670. width:88px;
  2671. height:30px;
  2672. display:flex;
  2673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2674. font-weight:400;
  2675. font-style:normal;
  2676. font-size:14px;
  2677. color:#7F7F7F;
  2678. text-align:right;
  2679. }
  2680. #u98725 .text {
  2681. position:absolute;
  2682. align-self:center;
  2683. padding:5px 10px 5px 0px;
  2684. box-sizing:border-box;
  2685. width:100%;
  2686. }
  2687. #u98725_text {
  2688. border-width:0px;
  2689. white-space:nowrap;
  2690. text-transform:none;
  2691. }
  2692. #u98726 label {
  2693. left:0px;
  2694. width:100%;
  2695. }
  2696. #u98726_img {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:0px;
  2700. top:3px;
  2701. width:12px;
  2702. height:12px;
  2703. }
  2704. #u98726 {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:226px;
  2708. top:743px;
  2709. width:100px;
  2710. height:18px;
  2711. display:flex;
  2712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2713. font-weight:400;
  2714. font-style:normal;
  2715. }
  2716. #u98726 .text {
  2717. position:absolute;
  2718. align-self:center;
  2719. padding:0px 2px 0px 2px;
  2720. box-sizing:border-box;
  2721. }
  2722. #u98726_img.selected {
  2723. }
  2724. #u98726.selected {
  2725. }
  2726. #u98726_img.disabled {
  2727. }
  2728. #u98726.disabled {
  2729. }
  2730. #u98726_img.selectedDisabled {
  2731. }
  2732. #u98726.selectedDisabled {
  2733. }
  2734. #u98726_text {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:14px;
  2738. top:0px;
  2739. width:84px;
  2740. word-wrap:break-word;
  2741. text-transform:none;
  2742. }
  2743. #u98726_input {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:0px;
  2749. height:0px;
  2750. opacity:0;
  2751. }
  2752. #u98727 label {
  2753. left:0px;
  2754. width:100%;
  2755. }
  2756. #u98727_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:3px;
  2761. width:12px;
  2762. height:12px;
  2763. }
  2764. #u98727 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:359px;
  2768. top:743px;
  2769. width:166px;
  2770. height:18px;
  2771. display:flex;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. }
  2776. #u98727 .text {
  2777. position:absolute;
  2778. align-self:center;
  2779. padding:0px 2px 0px 2px;
  2780. box-sizing:border-box;
  2781. }
  2782. #u98727_img.selected {
  2783. }
  2784. #u98727.selected {
  2785. }
  2786. #u98727_img.disabled {
  2787. }
  2788. #u98727.disabled {
  2789. }
  2790. #u98727_img.selectedDisabled {
  2791. }
  2792. #u98727.selectedDisabled {
  2793. }
  2794. #u98727_text {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:14px;
  2798. top:0px;
  2799. width:150px;
  2800. word-wrap:break-word;
  2801. text-transform:none;
  2802. }
  2803. #u98727_input {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:0px;
  2809. height:0px;
  2810. opacity:0;
  2811. }
  2812. #u98728_div {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:0px;
  2817. width:800px;
  2818. height:50px;
  2819. background:inherit;
  2820. background-color:rgba(255, 255, 0, 0.0980392156862745);
  2821. border:none;
  2822. border-top:0px;
  2823. border-right:0px;
  2824. border-bottom:0px;
  2825. border-radius:0px;
  2826. border-top-left-radius:0px;
  2827. border-bottom-left-radius:0px;
  2828. -moz-box-shadow:none;
  2829. -webkit-box-shadow:none;
  2830. box-shadow:none;
  2831. font-size:12px;
  2832. color:#F59A23;
  2833. line-height:20px;
  2834. }
  2835. #u98728 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:145px;
  2839. top:770px;
  2840. width:800px;
  2841. height:50px;
  2842. display:flex;
  2843. font-size:12px;
  2844. color:#F59A23;
  2845. line-height:20px;
  2846. }
  2847. #u98728 .text {
  2848. position:absolute;
  2849. align-self:center;
  2850. padding:5px 10px 5px 10px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u98728_text {
  2855. border-width:0px;
  2856. word-wrap:break-word;
  2857. text-transform:none;
  2858. }
  2859. #u98729_div {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:1000px;
  2865. height:1200px;
  2866. background:inherit;
  2867. background-color:rgba(242, 242, 242, 1);
  2868. box-sizing:border-box;
  2869. border-width:1px;
  2870. border-style:solid;
  2871. border-color:rgba(215, 215, 215, 1);
  2872. border-radius:0px;
  2873. -moz-box-shadow:none;
  2874. -webkit-box-shadow:none;
  2875. box-shadow:none;
  2876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2877. font-weight:400;
  2878. font-style:normal;
  2879. font-size:14px;
  2880. color:#AAAAAA;
  2881. text-align:center;
  2882. line-height:30px;
  2883. }
  2884. #u98729 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:1171px;
  2888. top:50px;
  2889. width:1000px;
  2890. height:1200px;
  2891. display:flex;
  2892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:14px;
  2896. color:#AAAAAA;
  2897. text-align:center;
  2898. line-height:30px;
  2899. }
  2900. #u98729 .text {
  2901. position:absolute;
  2902. align-self:center;
  2903. padding:5px 10px 5px 10px;
  2904. box-sizing:border-box;
  2905. width:100%;
  2906. }
  2907. #u98729_text {
  2908. border-width:0px;
  2909. word-wrap:break-word;
  2910. text-transform:none;
  2911. visibility:hidden;
  2912. }
  2913. #u98730_div {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:0px;
  2917. top:0px;
  2918. width:1000px;
  2919. height:527px;
  2920. background:inherit;
  2921. background-color:rgba(255, 255, 255, 1);
  2922. box-sizing:border-box;
  2923. border-width:1px;
  2924. border-style:solid;
  2925. border-color:rgba(215, 215, 215, 1);
  2926. border-radius:0px;
  2927. -moz-box-shadow:none;
  2928. -webkit-box-shadow:none;
  2929. box-shadow:none;
  2930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2931. font-weight:400;
  2932. font-style:normal;
  2933. font-size:14px;
  2934. color:#AAAAAA;
  2935. text-align:center;
  2936. line-height:30px;
  2937. }
  2938. #u98730 {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:1171px;
  2942. top:663px;
  2943. width:1000px;
  2944. height:527px;
  2945. display:flex;
  2946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. font-size:14px;
  2950. color:#AAAAAA;
  2951. text-align:center;
  2952. line-height:30px;
  2953. }
  2954. #u98730 .text {
  2955. position:absolute;
  2956. align-self:center;
  2957. padding:5px 10px 5px 10px;
  2958. box-sizing:border-box;
  2959. width:100%;
  2960. }
  2961. #u98730_text {
  2962. border-width:0px;
  2963. word-wrap:break-word;
  2964. text-transform:none;
  2965. visibility:hidden;
  2966. }
  2967. #u98731_div {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:0px;
  2971. top:0px;
  2972. width:1000px;
  2973. height:603px;
  2974. background:inherit;
  2975. background-color:rgba(255, 255, 255, 1);
  2976. box-sizing:border-box;
  2977. border-width:1px;
  2978. border-style:solid;
  2979. border-color:rgba(215, 215, 215, 1);
  2980. border-radius:0px;
  2981. -moz-box-shadow:none;
  2982. -webkit-box-shadow:none;
  2983. box-shadow:none;
  2984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:14px;
  2988. color:#AAAAAA;
  2989. text-align:center;
  2990. line-height:30px;
  2991. }
  2992. #u98731 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:1171px;
  2996. top:50px;
  2997. width:1000px;
  2998. height:603px;
  2999. display:flex;
  3000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3001. font-weight:400;
  3002. font-style:normal;
  3003. font-size:14px;
  3004. color:#AAAAAA;
  3005. text-align:center;
  3006. line-height:30px;
  3007. }
  3008. #u98731 .text {
  3009. position:absolute;
  3010. align-self:center;
  3011. padding:5px 10px 5px 10px;
  3012. box-sizing:border-box;
  3013. width:100%;
  3014. }
  3015. #u98731_text {
  3016. border-width:0px;
  3017. word-wrap:break-word;
  3018. text-transform:none;
  3019. visibility:hidden;
  3020. }
  3021. #u98732_div {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:119px;
  3027. height:35px;
  3028. background:inherit;
  3029. background-color:rgba(255, 255, 255, 0);
  3030. border:none;
  3031. border-top:0px;
  3032. border-right:0px;
  3033. border-bottom:0px;
  3034. border-radius:0px;
  3035. border-top-left-radius:0px;
  3036. border-bottom-left-radius:0px;
  3037. -moz-box-shadow:none;
  3038. -webkit-box-shadow:none;
  3039. box-shadow:none;
  3040. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3041. font-weight:500;
  3042. font-style:normal;
  3043. font-size:18px;
  3044. }
  3045. #u98732 {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:1191px;
  3049. top:68px;
  3050. width:119px;
  3051. height:35px;
  3052. display:flex;
  3053. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3054. font-weight:500;
  3055. font-style:normal;
  3056. font-size:18px;
  3057. }
  3058. #u98732 .text {
  3059. position:absolute;
  3060. align-self:center;
  3061. padding:5px 10px 5px 0px;
  3062. box-sizing:border-box;
  3063. width:100%;
  3064. }
  3065. #u98732_text {
  3066. border-width:0px;
  3067. white-space:nowrap;
  3068. text-transform:none;
  3069. }
  3070. #u98733 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:0px;
  3076. height:0px;
  3077. }
  3078. #u98734_div {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:0px;
  3082. top:0px;
  3083. width:40px;
  3084. height:40px;
  3085. background:inherit;
  3086. background-color:rgba(255, 255, 255, 0);
  3087. border:none;
  3088. border-top:0px;
  3089. border-right:0px;
  3090. border-bottom:0px;
  3091. border-radius:0px;
  3092. border-top-left-radius:0px;
  3093. border-bottom-left-radius:0px;
  3094. -moz-box-shadow:none;
  3095. -webkit-box-shadow:none;
  3096. box-shadow:none;
  3097. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3098. font-weight:500;
  3099. font-style:normal;
  3100. font-size:14px;
  3101. text-align:center;
  3102. }
  3103. #u98734 {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:2131px;
  3107. top:50px;
  3108. width:40px;
  3109. height:40px;
  3110. display:flex;
  3111. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3112. font-weight:500;
  3113. font-style:normal;
  3114. font-size:14px;
  3115. text-align:center;
  3116. }
  3117. #u98734 .text {
  3118. position:absolute;
  3119. align-self:center;
  3120. padding:5px 10px 5px 0px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u98734_text {
  3125. border-width:0px;
  3126. word-wrap:break-word;
  3127. text-transform:none;
  3128. }
  3129. #u98735_img {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:13px;
  3135. height:13px;
  3136. }
  3137. #u98735 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:2119px;
  3141. top:66px;
  3142. width:13px;
  3143. height:13px;
  3144. display:flex;
  3145. font-size:14px;
  3146. }
  3147. #u98735 .text {
  3148. position:absolute;
  3149. align-self:center;
  3150. padding:2px 2px 2px 2px;
  3151. box-sizing:border-box;
  3152. width:100%;
  3153. }
  3154. #u98735_text {
  3155. border-width:0px;
  3156. word-wrap:break-word;
  3157. text-transform:none;
  3158. visibility:hidden;
  3159. }
  3160. #u98736 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:0px;
  3166. height:0px;
  3167. }
  3168. #u98737_div {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:1000px;
  3174. height:60px;
  3175. background:inherit;
  3176. background-color:rgba(255, 255, 255, 1);
  3177. box-sizing:border-box;
  3178. border-width:1px;
  3179. border-style:solid;
  3180. border-color:rgba(215, 215, 215, 1);
  3181. border-radius:0px;
  3182. -moz-box-shadow:none;
  3183. -webkit-box-shadow:none;
  3184. box-shadow:none;
  3185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3186. font-weight:400;
  3187. font-style:normal;
  3188. font-size:14px;
  3189. color:#AAAAAA;
  3190. text-align:center;
  3191. line-height:30px;
  3192. }
  3193. #u98737 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:1171px;
  3197. top:1190px;
  3198. width:1000px;
  3199. height:60px;
  3200. display:flex;
  3201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. font-size:14px;
  3205. color:#AAAAAA;
  3206. text-align:center;
  3207. line-height:30px;
  3208. }
  3209. #u98737 .text {
  3210. position:absolute;
  3211. align-self:center;
  3212. padding:5px 10px 5px 10px;
  3213. box-sizing:border-box;
  3214. width:100%;
  3215. }
  3216. #u98737_text {
  3217. border-width:0px;
  3218. word-wrap:break-word;
  3219. text-transform:none;
  3220. visibility:hidden;
  3221. }
  3222. #u98738_div {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:0px;
  3227. width:107px;
  3228. height:30px;
  3229. background:inherit;
  3230. background-color:rgba(24, 144, 255, 1);
  3231. border:none;
  3232. border-radius:4px;
  3233. -moz-box-shadow:none;
  3234. -webkit-box-shadow:none;
  3235. box-shadow:none;
  3236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:14px;
  3240. color:#FFFFFF;
  3241. }
  3242. #u98738 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:2024px;
  3246. top:1205px;
  3247. width:107px;
  3248. height:30px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:14px;
  3254. color:#FFFFFF;
  3255. }
  3256. #u98738 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:2px 2px 2px 2px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u98738_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. }
  3268. #u98739_div {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:80px;
  3274. height:30px;
  3275. background:inherit;
  3276. background-color:rgba(255, 255, 255, 1);
  3277. box-sizing:border-box;
  3278. border-width:1px;
  3279. border-style:solid;
  3280. border-color:rgba(170, 170, 170, 1);
  3281. border-radius:4px;
  3282. -moz-box-shadow:none;
  3283. -webkit-box-shadow:none;
  3284. box-shadow:none;
  3285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3286. font-weight:400;
  3287. font-style:normal;
  3288. font-size:14px;
  3289. }
  3290. #u98739 {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:1934px;
  3294. top:1205px;
  3295. width:80px;
  3296. height:30px;
  3297. display:flex;
  3298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3299. font-weight:400;
  3300. font-style:normal;
  3301. font-size:14px;
  3302. }
  3303. #u98739 .text {
  3304. position:absolute;
  3305. align-self:center;
  3306. padding:2px 2px 2px 2px;
  3307. box-sizing:border-box;
  3308. width:100%;
  3309. }
  3310. #u98739_text {
  3311. border-width:0px;
  3312. word-wrap:break-word;
  3313. text-transform:none;
  3314. }
  3315. #u98740 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:1237px;
  3319. top:422px;
  3320. width:908px;
  3321. height:180px;
  3322. }
  3323. #u98741_img {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:135px;
  3329. height:30px;
  3330. }
  3331. #u98741 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:135px;
  3337. height:30px;
  3338. display:flex;
  3339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3340. font-weight:400;
  3341. font-style:normal;
  3342. color:#FFFFFF;
  3343. }
  3344. #u98741 .text {
  3345. position:absolute;
  3346. align-self:center;
  3347. padding:2px 2px 2px 2px;
  3348. box-sizing:border-box;
  3349. width:100%;
  3350. }
  3351. #u98741_text {
  3352. border-width:0px;
  3353. word-wrap:break-word;
  3354. text-transform:none;
  3355. }
  3356. #u98742_img {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:0px;
  3360. top:0px;
  3361. width:161px;
  3362. height:30px;
  3363. }
  3364. #u98742 {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:135px;
  3368. top:0px;
  3369. width:161px;
  3370. height:30px;
  3371. display:flex;
  3372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3373. font-weight:400;
  3374. font-style:normal;
  3375. color:#FFFFFF;
  3376. }
  3377. #u98742 .text {
  3378. position:absolute;
  3379. align-self:center;
  3380. padding:2px 2px 2px 2px;
  3381. box-sizing:border-box;
  3382. width:100%;
  3383. }
  3384. #u98742_text {
  3385. border-width:0px;
  3386. word-wrap:break-word;
  3387. text-transform:none;
  3388. }
  3389. #u98743_img {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:0px;
  3393. top:0px;
  3394. width:161px;
  3395. height:30px;
  3396. }
  3397. #u98743 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:296px;
  3401. top:0px;
  3402. width:161px;
  3403. height:30px;
  3404. display:flex;
  3405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. color:#FFFFFF;
  3409. }
  3410. #u98743 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:2px 2px 2px 2px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u98743_text {
  3418. border-width:0px;
  3419. word-wrap:break-word;
  3420. text-transform:none;
  3421. }
  3422. #u98744_img {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:161px;
  3428. height:30px;
  3429. }
  3430. #u98744 {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:457px;
  3434. top:0px;
  3435. width:161px;
  3436. height:30px;
  3437. display:flex;
  3438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3439. font-weight:400;
  3440. font-style:normal;
  3441. color:#FFFFFF;
  3442. }
  3443. #u98744 .text {
  3444. position:absolute;
  3445. align-self:center;
  3446. padding:2px 2px 2px 2px;
  3447. box-sizing:border-box;
  3448. width:100%;
  3449. }
  3450. #u98744_text {
  3451. border-width:0px;
  3452. word-wrap:break-word;
  3453. text-transform:none;
  3454. }
  3455. #u98745_img {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:137px;
  3461. height:30px;
  3462. }
  3463. #u98745 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:618px;
  3467. top:0px;
  3468. width:137px;
  3469. height:30px;
  3470. display:flex;
  3471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. color:#FFFFFF;
  3475. }
  3476. #u98745 .text {
  3477. position:absolute;
  3478. align-self:center;
  3479. padding:2px 2px 2px 2px;
  3480. box-sizing:border-box;
  3481. width:100%;
  3482. }
  3483. #u98745_text {
  3484. border-width:0px;
  3485. word-wrap:break-word;
  3486. text-transform:none;
  3487. }
  3488. #u98746_img {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:153px;
  3494. height:30px;
  3495. }
  3496. #u98746 {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:755px;
  3500. top:0px;
  3501. width:153px;
  3502. height:30px;
  3503. display:flex;
  3504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. color:#FFFFFF;
  3508. }
  3509. #u98746 .text {
  3510. position:absolute;
  3511. align-self:center;
  3512. padding:2px 2px 2px 2px;
  3513. box-sizing:border-box;
  3514. width:100%;
  3515. }
  3516. #u98746_text {
  3517. border-width:0px;
  3518. word-wrap:break-word;
  3519. text-transform:none;
  3520. }
  3521. #u98747_img {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:0px;
  3525. top:0px;
  3526. width:135px;
  3527. height:30px;
  3528. }
  3529. #u98747 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:30px;
  3534. width:135px;
  3535. height:30px;
  3536. display:flex;
  3537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. }
  3541. #u98747 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 2px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u98747_text {
  3549. border-width:0px;
  3550. word-wrap:break-word;
  3551. text-transform:none;
  3552. visibility:hidden;
  3553. }
  3554. #u98748_img {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:161px;
  3560. height:30px;
  3561. }
  3562. #u98748 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:135px;
  3566. top:30px;
  3567. width:161px;
  3568. height:30px;
  3569. display:flex;
  3570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3571. font-weight:400;
  3572. font-style:normal;
  3573. }
  3574. #u98748 .text {
  3575. position:absolute;
  3576. align-self:center;
  3577. padding:2px 2px 2px 2px;
  3578. box-sizing:border-box;
  3579. width:100%;
  3580. }
  3581. #u98748_text {
  3582. border-width:0px;
  3583. word-wrap:break-word;
  3584. text-transform:none;
  3585. visibility:hidden;
  3586. }
  3587. #u98749_img {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:161px;
  3593. height:30px;
  3594. }
  3595. #u98749 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:296px;
  3599. top:30px;
  3600. width:161px;
  3601. height:30px;
  3602. display:flex;
  3603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3604. font-weight:400;
  3605. font-style:normal;
  3606. }
  3607. #u98749 .text {
  3608. position:absolute;
  3609. align-self:center;
  3610. padding:2px 2px 2px 2px;
  3611. box-sizing:border-box;
  3612. width:100%;
  3613. }
  3614. #u98749_text {
  3615. border-width:0px;
  3616. word-wrap:break-word;
  3617. text-transform:none;
  3618. visibility:hidden;
  3619. }
  3620. #u98750_img {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:161px;
  3626. height:30px;
  3627. }
  3628. #u98750 {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:457px;
  3632. top:30px;
  3633. width:161px;
  3634. height:30px;
  3635. display:flex;
  3636. }
  3637. #u98750 .text {
  3638. position:absolute;
  3639. align-self:center;
  3640. padding:2px 2px 2px 2px;
  3641. box-sizing:border-box;
  3642. width:100%;
  3643. }
  3644. #u98750_text {
  3645. border-width:0px;
  3646. word-wrap:break-word;
  3647. text-transform:none;
  3648. visibility:hidden;
  3649. }
  3650. #u98751_img {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:137px;
  3656. height:30px;
  3657. }
  3658. #u98751 {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:618px;
  3662. top:30px;
  3663. width:137px;
  3664. height:30px;
  3665. display:flex;
  3666. }
  3667. #u98751 .text {
  3668. position:absolute;
  3669. align-self:center;
  3670. padding:2px 2px 2px 2px;
  3671. box-sizing:border-box;
  3672. width:100%;
  3673. }
  3674. #u98751_text {
  3675. border-width:0px;
  3676. word-wrap:break-word;
  3677. text-transform:none;
  3678. visibility:hidden;
  3679. }
  3680. #u98752_img {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:153px;
  3686. height:30px;
  3687. }
  3688. #u98752 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:755px;
  3692. top:30px;
  3693. width:153px;
  3694. height:30px;
  3695. display:flex;
  3696. }
  3697. #u98752 .text {
  3698. position:absolute;
  3699. align-self:center;
  3700. padding:2px 2px 2px 2px;
  3701. box-sizing:border-box;
  3702. width:100%;
  3703. }
  3704. #u98752_text {
  3705. border-width:0px;
  3706. word-wrap:break-word;
  3707. text-transform:none;
  3708. visibility:hidden;
  3709. }
  3710. #u98753_img {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:0px;
  3714. top:0px;
  3715. width:135px;
  3716. height:30px;
  3717. }
  3718. #u98753 {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:60px;
  3723. width:135px;
  3724. height:30px;
  3725. display:flex;
  3726. }
  3727. #u98753 .text {
  3728. position:absolute;
  3729. align-self:center;
  3730. padding:2px 2px 2px 2px;
  3731. box-sizing:border-box;
  3732. width:100%;
  3733. }
  3734. #u98753_text {
  3735. border-width:0px;
  3736. word-wrap:break-word;
  3737. text-transform:none;
  3738. visibility:hidden;
  3739. }
  3740. #u98754_img {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:161px;
  3746. height:30px;
  3747. }
  3748. #u98754 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:135px;
  3752. top:60px;
  3753. width:161px;
  3754. height:30px;
  3755. display:flex;
  3756. }
  3757. #u98754 .text {
  3758. position:absolute;
  3759. align-self:center;
  3760. padding:2px 2px 2px 2px;
  3761. box-sizing:border-box;
  3762. width:100%;
  3763. }
  3764. #u98754_text {
  3765. border-width:0px;
  3766. word-wrap:break-word;
  3767. text-transform:none;
  3768. visibility:hidden;
  3769. }
  3770. #u98755_img {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:0px;
  3774. top:0px;
  3775. width:161px;
  3776. height:30px;
  3777. }
  3778. #u98755 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:296px;
  3782. top:60px;
  3783. width:161px;
  3784. height:30px;
  3785. display:flex;
  3786. }
  3787. #u98755 .text {
  3788. position:absolute;
  3789. align-self:center;
  3790. padding:2px 2px 2px 2px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u98755_text {
  3795. border-width:0px;
  3796. word-wrap:break-word;
  3797. text-transform:none;
  3798. visibility:hidden;
  3799. }
  3800. #u98756_img {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:161px;
  3806. height:30px;
  3807. }
  3808. #u98756 {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:457px;
  3812. top:60px;
  3813. width:161px;
  3814. height:30px;
  3815. display:flex;
  3816. }
  3817. #u98756 .text {
  3818. position:absolute;
  3819. align-self:center;
  3820. padding:2px 2px 2px 2px;
  3821. box-sizing:border-box;
  3822. width:100%;
  3823. }
  3824. #u98756_text {
  3825. border-width:0px;
  3826. word-wrap:break-word;
  3827. text-transform:none;
  3828. visibility:hidden;
  3829. }
  3830. #u98757_img {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:137px;
  3836. height:30px;
  3837. }
  3838. #u98757 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:618px;
  3842. top:60px;
  3843. width:137px;
  3844. height:30px;
  3845. display:flex;
  3846. }
  3847. #u98757 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:2px 2px 2px 2px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u98757_text {
  3855. border-width:0px;
  3856. word-wrap:break-word;
  3857. text-transform:none;
  3858. visibility:hidden;
  3859. }
  3860. #u98758_img {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:153px;
  3866. height:30px;
  3867. }
  3868. #u98758 {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:755px;
  3872. top:60px;
  3873. width:153px;
  3874. height:30px;
  3875. display:flex;
  3876. }
  3877. #u98758 .text {
  3878. position:absolute;
  3879. align-self:center;
  3880. padding:2px 2px 2px 2px;
  3881. box-sizing:border-box;
  3882. width:100%;
  3883. }
  3884. #u98758_text {
  3885. border-width:0px;
  3886. word-wrap:break-word;
  3887. text-transform:none;
  3888. visibility:hidden;
  3889. }
  3890. #u98759_img {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:135px;
  3896. height:30px;
  3897. }
  3898. #u98759 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:90px;
  3903. width:135px;
  3904. height:30px;
  3905. display:flex;
  3906. }
  3907. #u98759 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:2px 2px 2px 2px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u98759_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. visibility:hidden;
  3919. }
  3920. #u98760_img {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:0px;
  3925. width:161px;
  3926. height:30px;
  3927. }
  3928. #u98760 {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:135px;
  3932. top:90px;
  3933. width:161px;
  3934. height:30px;
  3935. display:flex;
  3936. }
  3937. #u98760 .text {
  3938. position:absolute;
  3939. align-self:center;
  3940. padding:2px 2px 2px 2px;
  3941. box-sizing:border-box;
  3942. width:100%;
  3943. }
  3944. #u98760_text {
  3945. border-width:0px;
  3946. word-wrap:break-word;
  3947. text-transform:none;
  3948. visibility:hidden;
  3949. }
  3950. #u98761_img {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:0px;
  3954. top:0px;
  3955. width:161px;
  3956. height:30px;
  3957. }
  3958. #u98761 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:296px;
  3962. top:90px;
  3963. width:161px;
  3964. height:30px;
  3965. display:flex;
  3966. }
  3967. #u98761 .text {
  3968. position:absolute;
  3969. align-self:center;
  3970. padding:2px 2px 2px 2px;
  3971. box-sizing:border-box;
  3972. width:100%;
  3973. }
  3974. #u98761_text {
  3975. border-width:0px;
  3976. word-wrap:break-word;
  3977. text-transform:none;
  3978. visibility:hidden;
  3979. }
  3980. #u98762_img {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:161px;
  3986. height:30px;
  3987. }
  3988. #u98762 {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:457px;
  3992. top:90px;
  3993. width:161px;
  3994. height:30px;
  3995. display:flex;
  3996. }
  3997. #u98762 .text {
  3998. position:absolute;
  3999. align-self:center;
  4000. padding:2px 2px 2px 2px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u98762_text {
  4005. border-width:0px;
  4006. word-wrap:break-word;
  4007. text-transform:none;
  4008. visibility:hidden;
  4009. }
  4010. #u98763_img {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:137px;
  4016. height:30px;
  4017. }
  4018. #u98763 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:618px;
  4022. top:90px;
  4023. width:137px;
  4024. height:30px;
  4025. display:flex;
  4026. }
  4027. #u98763 .text {
  4028. position:absolute;
  4029. align-self:center;
  4030. padding:2px 2px 2px 2px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u98763_text {
  4035. border-width:0px;
  4036. word-wrap:break-word;
  4037. text-transform:none;
  4038. visibility:hidden;
  4039. }
  4040. #u98764_img {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:153px;
  4046. height:30px;
  4047. }
  4048. #u98764 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:755px;
  4052. top:90px;
  4053. width:153px;
  4054. height:30px;
  4055. display:flex;
  4056. }
  4057. #u98764 .text {
  4058. position:absolute;
  4059. align-self:center;
  4060. padding:2px 2px 2px 2px;
  4061. box-sizing:border-box;
  4062. width:100%;
  4063. }
  4064. #u98764_text {
  4065. border-width:0px;
  4066. word-wrap:break-word;
  4067. text-transform:none;
  4068. visibility:hidden;
  4069. }
  4070. #u98765_img {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:135px;
  4076. height:30px;
  4077. }
  4078. #u98765 {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:0px;
  4082. top:120px;
  4083. width:135px;
  4084. height:30px;
  4085. display:flex;
  4086. }
  4087. #u98765 .text {
  4088. position:absolute;
  4089. align-self:center;
  4090. padding:2px 2px 2px 2px;
  4091. box-sizing:border-box;
  4092. width:100%;
  4093. }
  4094. #u98765_text {
  4095. border-width:0px;
  4096. word-wrap:break-word;
  4097. text-transform:none;
  4098. visibility:hidden;
  4099. }
  4100. #u98766_img {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:0px;
  4104. top:0px;
  4105. width:161px;
  4106. height:30px;
  4107. }
  4108. #u98766 {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:135px;
  4112. top:120px;
  4113. width:161px;
  4114. height:30px;
  4115. display:flex;
  4116. }
  4117. #u98766 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:2px 2px 2px 2px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u98766_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. visibility:hidden;
  4129. }
  4130. #u98767_img {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:161px;
  4136. height:30px;
  4137. }
  4138. #u98767 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:296px;
  4142. top:120px;
  4143. width:161px;
  4144. height:30px;
  4145. display:flex;
  4146. }
  4147. #u98767 .text {
  4148. position:absolute;
  4149. align-self:center;
  4150. padding:2px 2px 2px 2px;
  4151. box-sizing:border-box;
  4152. width:100%;
  4153. }
  4154. #u98767_text {
  4155. border-width:0px;
  4156. word-wrap:break-word;
  4157. text-transform:none;
  4158. visibility:hidden;
  4159. }
  4160. #u98768_img {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:0px;
  4164. top:0px;
  4165. width:161px;
  4166. height:30px;
  4167. }
  4168. #u98768 {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:457px;
  4172. top:120px;
  4173. width:161px;
  4174. height:30px;
  4175. display:flex;
  4176. }
  4177. #u98768 .text {
  4178. position:absolute;
  4179. align-self:center;
  4180. padding:2px 2px 2px 2px;
  4181. box-sizing:border-box;
  4182. width:100%;
  4183. }
  4184. #u98768_text {
  4185. border-width:0px;
  4186. word-wrap:break-word;
  4187. text-transform:none;
  4188. visibility:hidden;
  4189. }
  4190. #u98769_img {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:0px;
  4194. top:0px;
  4195. width:137px;
  4196. height:30px;
  4197. }
  4198. #u98769 {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:618px;
  4202. top:120px;
  4203. width:137px;
  4204. height:30px;
  4205. display:flex;
  4206. }
  4207. #u98769 .text {
  4208. position:absolute;
  4209. align-self:center;
  4210. padding:2px 2px 2px 2px;
  4211. box-sizing:border-box;
  4212. width:100%;
  4213. }
  4214. #u98769_text {
  4215. border-width:0px;
  4216. word-wrap:break-word;
  4217. text-transform:none;
  4218. visibility:hidden;
  4219. }
  4220. #u98770_img {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:0px;
  4224. top:0px;
  4225. width:153px;
  4226. height:30px;
  4227. }
  4228. #u98770 {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:755px;
  4232. top:120px;
  4233. width:153px;
  4234. height:30px;
  4235. display:flex;
  4236. }
  4237. #u98770 .text {
  4238. position:absolute;
  4239. align-self:center;
  4240. padding:2px 2px 2px 2px;
  4241. box-sizing:border-box;
  4242. width:100%;
  4243. }
  4244. #u98770_text {
  4245. border-width:0px;
  4246. word-wrap:break-word;
  4247. text-transform:none;
  4248. visibility:hidden;
  4249. }
  4250. #u98771_img {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:135px;
  4256. height:30px;
  4257. }
  4258. #u98771 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:150px;
  4263. width:135px;
  4264. height:30px;
  4265. display:flex;
  4266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. }
  4270. #u98771 .text {
  4271. position:absolute;
  4272. align-self:center;
  4273. padding:2px 2px 2px 2px;
  4274. box-sizing:border-box;
  4275. width:100%;
  4276. }
  4277. #u98771_text {
  4278. border-width:0px;
  4279. word-wrap:break-word;
  4280. text-transform:none;
  4281. }
  4282. #u98772_img {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:0px;
  4286. top:0px;
  4287. width:161px;
  4288. height:30px;
  4289. }
  4290. #u98772 {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:135px;
  4294. top:150px;
  4295. width:161px;
  4296. height:30px;
  4297. display:flex;
  4298. }
  4299. #u98772 .text {
  4300. position:absolute;
  4301. align-self:center;
  4302. padding:2px 2px 2px 2px;
  4303. box-sizing:border-box;
  4304. width:100%;
  4305. }
  4306. #u98772_text {
  4307. border-width:0px;
  4308. word-wrap:break-word;
  4309. text-transform:none;
  4310. visibility:hidden;
  4311. }
  4312. #u98773_img {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:0px;
  4316. top:0px;
  4317. width:161px;
  4318. height:30px;
  4319. }
  4320. #u98773 {
  4321. border-width:0px;
  4322. position:absolute;
  4323. left:296px;
  4324. top:150px;
  4325. width:161px;
  4326. height:30px;
  4327. display:flex;
  4328. }
  4329. #u98773 .text {
  4330. position:absolute;
  4331. align-self:center;
  4332. padding:2px 2px 2px 2px;
  4333. box-sizing:border-box;
  4334. width:100%;
  4335. }
  4336. #u98773_text {
  4337. border-width:0px;
  4338. word-wrap:break-word;
  4339. text-transform:none;
  4340. visibility:hidden;
  4341. }
  4342. #u98774_img {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:0px;
  4346. top:0px;
  4347. width:161px;
  4348. height:30px;
  4349. }
  4350. #u98774 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:457px;
  4354. top:150px;
  4355. width:161px;
  4356. height:30px;
  4357. display:flex;
  4358. }
  4359. #u98774 .text {
  4360. position:absolute;
  4361. align-self:center;
  4362. padding:2px 2px 2px 2px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u98774_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. visibility:hidden;
  4371. }
  4372. #u98775_img {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:137px;
  4378. height:30px;
  4379. }
  4380. #u98775 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:618px;
  4384. top:150px;
  4385. width:137px;
  4386. height:30px;
  4387. display:flex;
  4388. }
  4389. #u98775 .text {
  4390. position:absolute;
  4391. align-self:center;
  4392. padding:2px 2px 2px 2px;
  4393. box-sizing:border-box;
  4394. width:100%;
  4395. }
  4396. #u98775_text {
  4397. border-width:0px;
  4398. word-wrap:break-word;
  4399. text-transform:none;
  4400. visibility:hidden;
  4401. }
  4402. #u98776_img {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:0px;
  4406. top:0px;
  4407. width:153px;
  4408. height:30px;
  4409. }
  4410. #u98776 {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:755px;
  4414. top:150px;
  4415. width:153px;
  4416. height:30px;
  4417. display:flex;
  4418. }
  4419. #u98776 .text {
  4420. position:absolute;
  4421. align-self:center;
  4422. padding:2px 2px 2px 2px;
  4423. box-sizing:border-box;
  4424. width:100%;
  4425. }
  4426. #u98776_text {
  4427. border-width:0px;
  4428. word-wrap:break-word;
  4429. text-transform:none;
  4430. visibility:hidden;
  4431. }
  4432. #u98777_div {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:0px;
  4436. top:0px;
  4437. width:83px;
  4438. height:35px;
  4439. background:inherit;
  4440. background-color:rgba(255, 255, 255, 0);
  4441. border:none;
  4442. border-top:0px;
  4443. border-right:0px;
  4444. border-bottom:0px;
  4445. border-radius:0px;
  4446. border-top-left-radius:0px;
  4447. border-bottom-left-radius:0px;
  4448. -moz-box-shadow:none;
  4449. -webkit-box-shadow:none;
  4450. box-shadow:none;
  4451. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4452. font-weight:500;
  4453. font-style:normal;
  4454. font-size:18px;
  4455. }
  4456. #u98777 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:1206px;
  4460. top:684px;
  4461. width:83px;
  4462. height:35px;
  4463. display:flex;
  4464. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4465. font-weight:500;
  4466. font-style:normal;
  4467. font-size:18px;
  4468. }
  4469. #u98777 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:5px 10px 5px 0px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u98777_text {
  4477. border-width:0px;
  4478. white-space:nowrap;
  4479. text-transform:none;
  4480. }
  4481. #u98778_div {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:67px;
  4487. height:30px;
  4488. background:inherit;
  4489. background-color:rgba(255, 255, 255, 0);
  4490. border:none;
  4491. border-top:0px;
  4492. border-right:0px;
  4493. border-bottom:0px;
  4494. border-radius:0px;
  4495. border-top-left-radius:0px;
  4496. border-bottom-left-radius:0px;
  4497. -moz-box-shadow:none;
  4498. -webkit-box-shadow:none;
  4499. box-shadow:none;
  4500. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4501. font-weight:500;
  4502. font-style:normal;
  4503. font-size:14px;
  4504. }
  4505. #u98778 {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:1217px;
  4509. top:127px;
  4510. width:67px;
  4511. height:30px;
  4512. display:flex;
  4513. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4514. font-weight:500;
  4515. font-style:normal;
  4516. font-size:14px;
  4517. }
  4518. #u98778 .text {
  4519. position:absolute;
  4520. align-self:center;
  4521. padding:5px 10px 5px 0px;
  4522. box-sizing:border-box;
  4523. width:100%;
  4524. }
  4525. #u98778_text {
  4526. border-width:0px;
  4527. white-space:nowrap;
  4528. text-transform:none;
  4529. }
  4530. #u98779_div {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:0px;
  4534. top:0px;
  4535. width:43px;
  4536. height:30px;
  4537. background:inherit;
  4538. background-color:rgba(255, 255, 255, 0);
  4539. border:none;
  4540. border-top:0px;
  4541. border-right:0px;
  4542. border-bottom:0px;
  4543. border-radius:0px;
  4544. border-top-left-radius:0px;
  4545. border-bottom-left-radius:0px;
  4546. -moz-box-shadow:none;
  4547. -webkit-box-shadow:none;
  4548. box-shadow:none;
  4549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4550. font-weight:400;
  4551. font-style:normal;
  4552. font-size:14px;
  4553. color:#7F7F7F;
  4554. }
  4555. #u98779 {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:1237px;
  4559. top:170px;
  4560. width:43px;
  4561. height:30px;
  4562. display:flex;
  4563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4564. font-weight:400;
  4565. font-style:normal;
  4566. font-size:14px;
  4567. color:#7F7F7F;
  4568. }
  4569. #u98779 .text {
  4570. position:absolute;
  4571. align-self:center;
  4572. padding:5px 0px 5px 0px;
  4573. box-sizing:border-box;
  4574. width:100%;
  4575. }
  4576. #u98779_text {
  4577. border-width:0px;
  4578. white-space:nowrap;
  4579. text-transform:none;
  4580. }
  4581. #u98780_div {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:0px;
  4585. top:0px;
  4586. width:113px;
  4587. height:30px;
  4588. background:inherit;
  4589. background-color:rgba(255, 255, 255, 0);
  4590. border:none;
  4591. border-top:0px;
  4592. border-right:0px;
  4593. border-bottom:0px;
  4594. border-radius:0px;
  4595. border-top-left-radius:0px;
  4596. border-bottom-left-radius:0px;
  4597. -moz-box-shadow:none;
  4598. -webkit-box-shadow:none;
  4599. box-shadow:none;
  4600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4601. font-weight:400;
  4602. font-style:normal;
  4603. font-size:14px;
  4604. }
  4605. #u98780 {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:1313px;
  4609. top:170px;
  4610. width:113px;
  4611. height:30px;
  4612. display:flex;
  4613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4614. font-weight:400;
  4615. font-style:normal;
  4616. font-size:14px;
  4617. }
  4618. #u98780 .text {
  4619. position:absolute;
  4620. align-self:center;
  4621. padding:5px 0px 5px 0px;
  4622. box-sizing:border-box;
  4623. width:100%;
  4624. }
  4625. #u98780_text {
  4626. border-width:0px;
  4627. white-space:nowrap;
  4628. text-transform:none;
  4629. }
  4630. #u98781_div {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:43px;
  4636. height:30px;
  4637. background:inherit;
  4638. background-color:rgba(255, 255, 255, 0);
  4639. border:none;
  4640. border-top:0px;
  4641. border-right:0px;
  4642. border-bottom:0px;
  4643. border-radius:0px;
  4644. border-top-left-radius:0px;
  4645. border-bottom-left-radius:0px;
  4646. -moz-box-shadow:none;
  4647. -webkit-box-shadow:none;
  4648. box-shadow:none;
  4649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4650. font-weight:400;
  4651. font-style:normal;
  4652. font-size:14px;
  4653. color:#7F7F7F;
  4654. }
  4655. #u98781 {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:1603px;
  4659. top:170px;
  4660. width:43px;
  4661. height:30px;
  4662. display:flex;
  4663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. font-size:14px;
  4667. color:#7F7F7F;
  4668. }
  4669. #u98781 .text {
  4670. position:absolute;
  4671. align-self:center;
  4672. padding:5px 0px 5px 0px;
  4673. box-sizing:border-box;
  4674. width:100%;
  4675. }
  4676. #u98781_text {
  4677. border-width:0px;
  4678. white-space:nowrap;
  4679. text-transform:none;
  4680. }
  4681. #u98782_div {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:86px;
  4687. height:30px;
  4688. background:inherit;
  4689. background-color:rgba(255, 255, 255, 0);
  4690. border:none;
  4691. border-top:0px;
  4692. border-right:0px;
  4693. border-bottom:0px;
  4694. border-radius:0px;
  4695. border-top-left-radius:0px;
  4696. border-bottom-left-radius:0px;
  4697. -moz-box-shadow:none;
  4698. -webkit-box-shadow:none;
  4699. box-shadow:none;
  4700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4701. font-weight:400;
  4702. font-style:normal;
  4703. font-size:14px;
  4704. }
  4705. #u98782 {
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:1679px;
  4709. top:170px;
  4710. width:86px;
  4711. height:30px;
  4712. display:flex;
  4713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4714. font-weight:400;
  4715. font-style:normal;
  4716. font-size:14px;
  4717. }
  4718. #u98782 .text {
  4719. position:absolute;
  4720. align-self:center;
  4721. padding:5px 0px 5px 0px;
  4722. box-sizing:border-box;
  4723. width:100%;
  4724. }
  4725. #u98782_text {
  4726. border-width:0px;
  4727. white-space:nowrap;
  4728. text-transform:none;
  4729. }
  4730. #u98783_div {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:71px;
  4736. height:30px;
  4737. background:inherit;
  4738. background-color:rgba(255, 255, 255, 0);
  4739. border:none;
  4740. border-top:0px;
  4741. border-right:0px;
  4742. border-bottom:0px;
  4743. border-radius:0px;
  4744. border-top-left-radius:0px;
  4745. border-bottom-left-radius:0px;
  4746. -moz-box-shadow:none;
  4747. -webkit-box-shadow:none;
  4748. box-shadow:none;
  4749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4750. font-weight:400;
  4751. font-style:normal;
  4752. font-size:14px;
  4753. color:#7F7F7F;
  4754. }
  4755. #u98783 {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:1237px;
  4759. top:210px;
  4760. width:71px;
  4761. height:30px;
  4762. display:flex;
  4763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4764. font-weight:400;
  4765. font-style:normal;
  4766. font-size:14px;
  4767. color:#7F7F7F;
  4768. }
  4769. #u98783 .text {
  4770. position:absolute;
  4771. align-self:center;
  4772. padding:5px 0px 5px 0px;
  4773. box-sizing:border-box;
  4774. width:100%;
  4775. }
  4776. #u98783_text {
  4777. border-width:0px;
  4778. white-space:nowrap;
  4779. text-transform:none;
  4780. }
  4781. #u98784_div {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:0px;
  4785. top:0px;
  4786. width:89px;
  4787. height:30px;
  4788. background:inherit;
  4789. background-color:rgba(255, 255, 255, 0);
  4790. border:none;
  4791. border-top:0px;
  4792. border-right:0px;
  4793. border-bottom:0px;
  4794. border-radius:0px;
  4795. border-top-left-radius:0px;
  4796. border-bottom-left-radius:0px;
  4797. -moz-box-shadow:none;
  4798. -webkit-box-shadow:none;
  4799. box-shadow:none;
  4800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4801. font-weight:400;
  4802. font-style:normal;
  4803. font-size:14px;
  4804. }
  4805. #u98784 {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:1313px;
  4809. top:210px;
  4810. width:89px;
  4811. height:30px;
  4812. display:flex;
  4813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4814. font-weight:400;
  4815. font-style:normal;
  4816. font-size:14px;
  4817. }
  4818. #u98784 .text {
  4819. position:absolute;
  4820. align-self:center;
  4821. padding:5px 0px 5px 0px;
  4822. box-sizing:border-box;
  4823. width:100%;
  4824. }
  4825. #u98784_text {
  4826. border-width:0px;
  4827. white-space:nowrap;
  4828. text-transform:none;
  4829. }
  4830. #u98785_div {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:0px;
  4834. top:0px;
  4835. width:71px;
  4836. height:30px;
  4837. background:inherit;
  4838. background-color:rgba(255, 255, 255, 0);
  4839. border:none;
  4840. border-top:0px;
  4841. border-right:0px;
  4842. border-bottom:0px;
  4843. border-radius:0px;
  4844. border-top-left-radius:0px;
  4845. border-bottom-left-radius:0px;
  4846. -moz-box-shadow:none;
  4847. -webkit-box-shadow:none;
  4848. box-shadow:none;
  4849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4850. font-weight:400;
  4851. font-style:normal;
  4852. font-size:14px;
  4853. color:#7F7F7F;
  4854. }
  4855. #u98785 {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:1603px;
  4859. top:210px;
  4860. width:71px;
  4861. height:30px;
  4862. display:flex;
  4863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4864. font-weight:400;
  4865. font-style:normal;
  4866. font-size:14px;
  4867. color:#7F7F7F;
  4868. }
  4869. #u98785 .text {
  4870. position:absolute;
  4871. align-self:center;
  4872. padding:5px 0px 5px 0px;
  4873. box-sizing:border-box;
  4874. width:100%;
  4875. }
  4876. #u98785_text {
  4877. border-width:0px;
  4878. white-space:nowrap;
  4879. text-transform:none;
  4880. }
  4881. #u98786_div {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:0px;
  4885. top:0px;
  4886. width:89px;
  4887. height:30px;
  4888. background:inherit;
  4889. background-color:rgba(255, 255, 255, 0);
  4890. border:none;
  4891. border-top:0px;
  4892. border-right:0px;
  4893. border-bottom:0px;
  4894. border-radius:0px;
  4895. border-top-left-radius:0px;
  4896. border-bottom-left-radius:0px;
  4897. -moz-box-shadow:none;
  4898. -webkit-box-shadow:none;
  4899. box-shadow:none;
  4900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:14px;
  4904. }
  4905. #u98786 {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:1679px;
  4909. top:210px;
  4910. width:89px;
  4911. height:30px;
  4912. display:flex;
  4913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4914. font-weight:400;
  4915. font-style:normal;
  4916. font-size:14px;
  4917. }
  4918. #u98786 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:5px 0px 5px 0px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u98786_text {
  4926. border-width:0px;
  4927. white-space:nowrap;
  4928. text-transform:none;
  4929. }
  4930. #u98787_div {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:0px;
  4934. top:0px;
  4935. width:71px;
  4936. height:30px;
  4937. background:inherit;
  4938. background-color:rgba(255, 255, 255, 0);
  4939. border:none;
  4940. border-top:0px;
  4941. border-right:0px;
  4942. border-bottom:0px;
  4943. border-radius:0px;
  4944. border-top-left-radius:0px;
  4945. border-bottom-left-radius:0px;
  4946. -moz-box-shadow:none;
  4947. -webkit-box-shadow:none;
  4948. box-shadow:none;
  4949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4950. font-weight:400;
  4951. font-style:normal;
  4952. font-size:14px;
  4953. color:#7F7F7F;
  4954. }
  4955. #u98787 {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:1237px;
  4959. top:250px;
  4960. width:71px;
  4961. height:30px;
  4962. display:flex;
  4963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4964. font-weight:400;
  4965. font-style:normal;
  4966. font-size:14px;
  4967. color:#7F7F7F;
  4968. }
  4969. #u98787 .text {
  4970. position:absolute;
  4971. align-self:center;
  4972. padding:5px 0px 5px 0px;
  4973. box-sizing:border-box;
  4974. width:100%;
  4975. }
  4976. #u98787_text {
  4977. border-width:0px;
  4978. white-space:nowrap;
  4979. text-transform:none;
  4980. }
  4981. #u98788_div {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:0px;
  4985. top:0px;
  4986. width:89px;
  4987. height:30px;
  4988. background:inherit;
  4989. background-color:rgba(255, 255, 255, 0);
  4990. border:none;
  4991. border-top:0px;
  4992. border-right:0px;
  4993. border-bottom:0px;
  4994. border-radius:0px;
  4995. border-top-left-radius:0px;
  4996. border-bottom-left-radius:0px;
  4997. -moz-box-shadow:none;
  4998. -webkit-box-shadow:none;
  4999. box-shadow:none;
  5000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5001. font-weight:400;
  5002. font-style:normal;
  5003. font-size:14px;
  5004. }
  5005. #u98788 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:1313px;
  5009. top:250px;
  5010. width:89px;
  5011. height:30px;
  5012. display:flex;
  5013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:14px;
  5017. }
  5018. #u98788 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:5px 0px 5px 0px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u98788_text {
  5026. border-width:0px;
  5027. white-space:nowrap;
  5028. text-transform:none;
  5029. }
  5030. #u98789_div {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:71px;
  5036. height:30px;
  5037. background:inherit;
  5038. background-color:rgba(255, 255, 255, 0);
  5039. border:none;
  5040. border-top:0px;
  5041. border-right:0px;
  5042. border-bottom:0px;
  5043. border-radius:0px;
  5044. border-top-left-radius:0px;
  5045. border-bottom-left-radius:0px;
  5046. -moz-box-shadow:none;
  5047. -webkit-box-shadow:none;
  5048. box-shadow:none;
  5049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5050. font-weight:400;
  5051. font-style:normal;
  5052. font-size:14px;
  5053. color:#7F7F7F;
  5054. }
  5055. #u98789 {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:1603px;
  5059. top:250px;
  5060. width:71px;
  5061. height:30px;
  5062. display:flex;
  5063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5064. font-weight:400;
  5065. font-style:normal;
  5066. font-size:14px;
  5067. color:#7F7F7F;
  5068. }
  5069. #u98789 .text {
  5070. position:absolute;
  5071. align-self:center;
  5072. padding:5px 0px 5px 0px;
  5073. box-sizing:border-box;
  5074. width:100%;
  5075. }
  5076. #u98789_text {
  5077. border-width:0px;
  5078. white-space:nowrap;
  5079. text-transform:none;
  5080. }
  5081. #u98790_div {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:29px;
  5087. height:30px;
  5088. background:inherit;
  5089. background-color:rgba(255, 255, 255, 0);
  5090. border:none;
  5091. border-top:0px;
  5092. border-right:0px;
  5093. border-bottom:0px;
  5094. border-radius:0px;
  5095. border-top-left-radius:0px;
  5096. border-bottom-left-radius:0px;
  5097. -moz-box-shadow:none;
  5098. -webkit-box-shadow:none;
  5099. box-shadow:none;
  5100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5101. font-weight:400;
  5102. font-style:normal;
  5103. font-size:14px;
  5104. }
  5105. #u98790 {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:1679px;
  5109. top:250px;
  5110. width:29px;
  5111. height:30px;
  5112. display:flex;
  5113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5114. font-weight:400;
  5115. font-style:normal;
  5116. font-size:14px;
  5117. }
  5118. #u98790 .text {
  5119. position:absolute;
  5120. align-self:center;
  5121. padding:5px 0px 5px 0px;
  5122. box-sizing:border-box;
  5123. width:100%;
  5124. }
  5125. #u98790_text {
  5126. border-width:0px;
  5127. white-space:nowrap;
  5128. text-transform:none;
  5129. }
  5130. #u98791_div {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:71px;
  5136. height:30px;
  5137. background:inherit;
  5138. background-color:rgba(255, 255, 255, 0);
  5139. border:none;
  5140. border-top:0px;
  5141. border-right:0px;
  5142. border-bottom:0px;
  5143. border-radius:0px;
  5144. border-top-left-radius:0px;
  5145. border-bottom-left-radius:0px;
  5146. -moz-box-shadow:none;
  5147. -webkit-box-shadow:none;
  5148. box-shadow:none;
  5149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5150. font-weight:400;
  5151. font-style:normal;
  5152. font-size:14px;
  5153. color:#7F7F7F;
  5154. }
  5155. #u98791 {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:1237px;
  5159. top:290px;
  5160. width:71px;
  5161. height:30px;
  5162. display:flex;
  5163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:14px;
  5167. color:#7F7F7F;
  5168. }
  5169. #u98791 .text {
  5170. position:absolute;
  5171. align-self:center;
  5172. padding:5px 0px 5px 0px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u98791_text {
  5177. border-width:0px;
  5178. white-space:nowrap;
  5179. text-transform:none;
  5180. }
  5181. #u98792_div {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:81px;
  5187. height:30px;
  5188. background:inherit;
  5189. background-color:rgba(255, 255, 255, 0);
  5190. border:none;
  5191. border-top:0px;
  5192. border-right:0px;
  5193. border-bottom:0px;
  5194. border-radius:0px;
  5195. border-top-left-radius:0px;
  5196. border-bottom-left-radius:0px;
  5197. -moz-box-shadow:none;
  5198. -webkit-box-shadow:none;
  5199. box-shadow:none;
  5200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5201. font-weight:400;
  5202. font-style:normal;
  5203. font-size:14px;
  5204. }
  5205. #u98792 {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:1313px;
  5209. top:290px;
  5210. width:81px;
  5211. height:30px;
  5212. display:flex;
  5213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5214. font-weight:400;
  5215. font-style:normal;
  5216. font-size:14px;
  5217. }
  5218. #u98792 .text {
  5219. position:absolute;
  5220. align-self:center;
  5221. padding:5px 0px 5px 0px;
  5222. box-sizing:border-box;
  5223. width:100%;
  5224. }
  5225. #u98792_text {
  5226. border-width:0px;
  5227. white-space:nowrap;
  5228. text-transform:none;
  5229. }
  5230. #u98793_div {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:0px;
  5234. top:0px;
  5235. width:85px;
  5236. height:30px;
  5237. background:inherit;
  5238. background-color:rgba(255, 255, 255, 0);
  5239. border:none;
  5240. border-top:0px;
  5241. border-right:0px;
  5242. border-bottom:0px;
  5243. border-radius:0px;
  5244. border-top-left-radius:0px;
  5245. border-bottom-left-radius:0px;
  5246. -moz-box-shadow:none;
  5247. -webkit-box-shadow:none;
  5248. box-shadow:none;
  5249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5250. font-weight:400;
  5251. font-style:normal;
  5252. font-size:14px;
  5253. color:#7F7F7F;
  5254. }
  5255. #u98793 {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:1603px;
  5259. top:290px;
  5260. width:85px;
  5261. height:30px;
  5262. display:flex;
  5263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5264. font-weight:400;
  5265. font-style:normal;
  5266. font-size:14px;
  5267. color:#7F7F7F;
  5268. }
  5269. #u98793 .text {
  5270. position:absolute;
  5271. align-self:center;
  5272. padding:5px 0px 5px 0px;
  5273. box-sizing:border-box;
  5274. width:100%;
  5275. }
  5276. #u98793_text {
  5277. border-width:0px;
  5278. white-space:nowrap;
  5279. text-transform:none;
  5280. }
  5281. #u98794_div {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:82px;
  5287. height:30px;
  5288. background:inherit;
  5289. background-color:rgba(255, 255, 255, 0);
  5290. border:none;
  5291. border-top:0px;
  5292. border-right:0px;
  5293. border-bottom:0px;
  5294. border-radius:0px;
  5295. border-top-left-radius:0px;
  5296. border-bottom-left-radius:0px;
  5297. -moz-box-shadow:none;
  5298. -webkit-box-shadow:none;
  5299. box-shadow:none;
  5300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:14px;
  5304. }
  5305. #u98794 {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:1679px;
  5309. top:290px;
  5310. width:82px;
  5311. height:30px;
  5312. display:flex;
  5313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. font-size:14px;
  5317. }
  5318. #u98794 .text {
  5319. position:absolute;
  5320. align-self:center;
  5321. padding:5px 0px 5px 0px;
  5322. box-sizing:border-box;
  5323. width:100%;
  5324. }
  5325. #u98794_text {
  5326. border-width:0px;
  5327. white-space:nowrap;
  5328. text-transform:none;
  5329. }
  5330. #u98795_div {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:0px;
  5334. top:0px;
  5335. width:71px;
  5336. height:30px;
  5337. background:inherit;
  5338. background-color:rgba(255, 255, 255, 0);
  5339. border:none;
  5340. border-top:0px;
  5341. border-right:0px;
  5342. border-bottom:0px;
  5343. border-radius:0px;
  5344. border-top-left-radius:0px;
  5345. border-bottom-left-radius:0px;
  5346. -moz-box-shadow:none;
  5347. -webkit-box-shadow:none;
  5348. box-shadow:none;
  5349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:14px;
  5353. color:#7F7F7F;
  5354. }
  5355. #u98795 {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:1237px;
  5359. top:330px;
  5360. width:71px;
  5361. height:30px;
  5362. display:flex;
  5363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:14px;
  5367. color:#7F7F7F;
  5368. }
  5369. #u98795 .text {
  5370. position:absolute;
  5371. align-self:center;
  5372. padding:5px 0px 5px 0px;
  5373. box-sizing:border-box;
  5374. width:100%;
  5375. }
  5376. #u98795_text {
  5377. border-width:0px;
  5378. white-space:nowrap;
  5379. text-transform:none;
  5380. }
  5381. #u98796_div {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:589px;
  5387. height:30px;
  5388. background:inherit;
  5389. background-color:rgba(255, 255, 255, 0);
  5390. border:none;
  5391. border-top:0px;
  5392. border-right:0px;
  5393. border-bottom:0px;
  5394. border-radius:0px;
  5395. border-top-left-radius:0px;
  5396. border-bottom-left-radius:0px;
  5397. -moz-box-shadow:none;
  5398. -webkit-box-shadow:none;
  5399. box-shadow:none;
  5400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5401. font-weight:400;
  5402. font-style:normal;
  5403. font-size:14px;
  5404. }
  5405. #u98796 {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:1313px;
  5409. top:330px;
  5410. width:589px;
  5411. height:30px;
  5412. display:flex;
  5413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:14px;
  5417. }
  5418. #u98796 .text {
  5419. position:absolute;
  5420. align-self:center;
  5421. padding:5px 0px 5px 0px;
  5422. box-sizing:border-box;
  5423. width:100%;
  5424. }
  5425. #u98796_text {
  5426. border-width:0px;
  5427. white-space:nowrap;
  5428. text-transform:none;
  5429. }
  5430. #u98797_div {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:0px;
  5434. top:0px;
  5435. width:95px;
  5436. height:30px;
  5437. background:inherit;
  5438. background-color:rgba(255, 255, 255, 0);
  5439. border:none;
  5440. border-top:0px;
  5441. border-right:0px;
  5442. border-bottom:0px;
  5443. border-radius:0px;
  5444. border-top-left-radius:0px;
  5445. border-bottom-left-radius:0px;
  5446. -moz-box-shadow:none;
  5447. -webkit-box-shadow:none;
  5448. box-shadow:none;
  5449. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5450. font-weight:500;
  5451. font-style:normal;
  5452. font-size:14px;
  5453. }
  5454. #u98797 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:1217px;
  5458. top:380px;
  5459. width:95px;
  5460. height:30px;
  5461. display:flex;
  5462. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5463. font-weight:500;
  5464. font-style:normal;
  5465. font-size:14px;
  5466. }
  5467. #u98797 .text {
  5468. position:absolute;
  5469. align-self:center;
  5470. padding:5px 10px 5px 0px;
  5471. box-sizing:border-box;
  5472. width:100%;
  5473. }
  5474. #u98797_text {
  5475. border-width:0px;
  5476. white-space:nowrap;
  5477. text-transform:none;
  5478. }
  5479. #u98798_div {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:0px;
  5483. top:0px;
  5484. width:88px;
  5485. height:30px;
  5486. background:inherit;
  5487. background-color:rgba(255, 255, 255, 0);
  5488. border:none;
  5489. border-top:0px;
  5490. border-right:0px;
  5491. border-bottom:0px;
  5492. border-radius:0px;
  5493. border-top-left-radius:0px;
  5494. border-bottom-left-radius:0px;
  5495. -moz-box-shadow:none;
  5496. -webkit-box-shadow:none;
  5497. box-shadow:none;
  5498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5499. font-weight:400;
  5500. font-style:normal;
  5501. font-size:14px;
  5502. color:#7F7F7F;
  5503. text-align:right;
  5504. }
  5505. #u98798 {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:1230px;
  5509. top:736px;
  5510. width:88px;
  5511. height:30px;
  5512. display:flex;
  5513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5514. font-weight:400;
  5515. font-style:normal;
  5516. font-size:14px;
  5517. color:#7F7F7F;
  5518. text-align:right;
  5519. }
  5520. #u98798 .text {
  5521. position:absolute;
  5522. align-self:center;
  5523. padding:5px 10px 5px 0px;
  5524. box-sizing:border-box;
  5525. width:100%;
  5526. }
  5527. #u98798_text {
  5528. border-width:0px;
  5529. white-space:nowrap;
  5530. text-transform:none;
  5531. }
  5532. #u98799 label {
  5533. left:0px;
  5534. width:100%;
  5535. }
  5536. #u98799_img {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:3px;
  5541. width:12px;
  5542. height:12px;
  5543. }
  5544. #u98799 {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:1318px;
  5548. top:743px;
  5549. width:100px;
  5550. height:18px;
  5551. display:flex;
  5552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. }
  5556. #u98799 .text {
  5557. position:absolute;
  5558. align-self:center;
  5559. padding:0px 2px 0px 2px;
  5560. box-sizing:border-box;
  5561. }
  5562. #u98799_img.selected {
  5563. }
  5564. #u98799.selected {
  5565. }
  5566. #u98799_img.disabled {
  5567. }
  5568. #u98799.disabled {
  5569. }
  5570. #u98799_img.selectedDisabled {
  5571. }
  5572. #u98799.selectedDisabled {
  5573. }
  5574. #u98799_text {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:14px;
  5578. top:0px;
  5579. width:84px;
  5580. word-wrap:break-word;
  5581. text-transform:none;
  5582. }
  5583. #u98799_input {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:0px;
  5587. top:0px;
  5588. width:0px;
  5589. height:0px;
  5590. opacity:0;
  5591. }
  5592. #u98800 label {
  5593. left:0px;
  5594. width:100%;
  5595. }
  5596. #u98800_img {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:0px;
  5600. top:3px;
  5601. width:12px;
  5602. height:12px;
  5603. }
  5604. #u98800 {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:1451px;
  5608. top:743px;
  5609. width:166px;
  5610. height:18px;
  5611. display:flex;
  5612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5613. font-weight:400;
  5614. font-style:normal;
  5615. }
  5616. #u98800 .text {
  5617. position:absolute;
  5618. align-self:center;
  5619. padding:0px 2px 0px 2px;
  5620. box-sizing:border-box;
  5621. }
  5622. #u98800_img.selected {
  5623. }
  5624. #u98800.selected {
  5625. }
  5626. #u98800_img.disabled {
  5627. }
  5628. #u98800.disabled {
  5629. }
  5630. #u98800_img.selectedDisabled {
  5631. }
  5632. #u98800.selectedDisabled {
  5633. }
  5634. #u98800_text {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:14px;
  5638. top:0px;
  5639. width:150px;
  5640. word-wrap:break-word;
  5641. text-transform:none;
  5642. }
  5643. #u98800_input {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:0px;
  5647. top:0px;
  5648. width:0px;
  5649. height:0px;
  5650. opacity:0;
  5651. }
  5652. #u98801_div {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:0px;
  5656. top:0px;
  5657. width:88px;
  5658. height:30px;
  5659. background:inherit;
  5660. background-color:rgba(255, 255, 255, 0);
  5661. border:none;
  5662. border-top:0px;
  5663. border-right:0px;
  5664. border-bottom:0px;
  5665. border-radius:0px;
  5666. border-top-left-radius:0px;
  5667. border-bottom-left-radius:0px;
  5668. -moz-box-shadow:none;
  5669. -webkit-box-shadow:none;
  5670. box-shadow:none;
  5671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. font-size:14px;
  5675. color:#7F7F7F;
  5676. text-align:right;
  5677. }
  5678. #u98801 {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:1634px;
  5682. top:783px;
  5683. width:88px;
  5684. height:30px;
  5685. display:flex;
  5686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5687. font-weight:400;
  5688. font-style:normal;
  5689. font-size:14px;
  5690. color:#7F7F7F;
  5691. text-align:right;
  5692. }
  5693. #u98801 .text {
  5694. position:absolute;
  5695. align-self:center;
  5696. padding:5px 10px 5px 0px;
  5697. box-sizing:border-box;
  5698. width:100%;
  5699. }
  5700. #u98801_text {
  5701. border-width:0px;
  5702. white-space:nowrap;
  5703. text-transform:none;
  5704. }
  5705. #u98802 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:0px;
  5711. height:0px;
  5712. }
  5713. #u98803_div {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:0px;
  5717. top:0px;
  5718. width:278px;
  5719. height:40px;
  5720. background:inherit;
  5721. background-color:rgba(255, 255, 255, 1);
  5722. box-sizing:border-box;
  5723. border-width:1px;
  5724. border-style:solid;
  5725. border-color:rgba(201, 201, 201, 1);
  5726. border-radius:4px;
  5727. -moz-box-shadow:none;
  5728. -webkit-box-shadow:none;
  5729. box-shadow:none;
  5730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5731. font-weight:400;
  5732. font-style:normal;
  5733. font-size:12px;
  5734. text-align:right;
  5735. }
  5736. #u98803 {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:1722px;
  5740. top:778px;
  5741. width:278px;
  5742. height:40px;
  5743. display:flex;
  5744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5745. font-weight:400;
  5746. font-style:normal;
  5747. font-size:12px;
  5748. text-align:right;
  5749. }
  5750. #u98803 .text {
  5751. position:absolute;
  5752. align-self:center;
  5753. padding:2px 8px 2px 8px;
  5754. box-sizing:border-box;
  5755. width:100%;
  5756. }
  5757. #u98803_text {
  5758. border-width:0px;
  5759. word-wrap:break-word;
  5760. text-transform:none;
  5761. }
  5762. #u98804_input {
  5763. position:absolute;
  5764. left:0px;
  5765. top:0px;
  5766. width:250px;
  5767. height:38px;
  5768. padding:2px 2px 2px 2px;
  5769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5770. font-weight:400;
  5771. font-style:normal;
  5772. font-size:14px;
  5773. letter-spacing:normal;
  5774. color:#000000;
  5775. vertical-align:none;
  5776. text-align:left;
  5777. text-transform:none;
  5778. background-color:transparent;
  5779. border-color:transparent;
  5780. }
  5781. #u98804_input.disabled {
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:250px;
  5786. height:38px;
  5787. padding:2px 2px 2px 2px;
  5788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5789. font-weight:400;
  5790. font-style:normal;
  5791. font-size:14px;
  5792. letter-spacing:normal;
  5793. color:#000000;
  5794. vertical-align:none;
  5795. text-align:left;
  5796. text-transform:none;
  5797. background-color:transparent;
  5798. border-color:transparent;
  5799. }
  5800. #u98804_div {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:0px;
  5804. top:0px;
  5805. width:250px;
  5806. height:38px;
  5807. background:inherit;
  5808. background-color:rgba(255, 255, 255, 1);
  5809. border:none;
  5810. border-radius:0px;
  5811. -moz-box-shadow:none;
  5812. -webkit-box-shadow:none;
  5813. box-shadow:none;
  5814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5815. font-weight:400;
  5816. font-style:normal;
  5817. font-size:14px;
  5818. }
  5819. #u98804 {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:1730px;
  5823. top:779px;
  5824. width:250px;
  5825. height:38px;
  5826. display:flex;
  5827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5828. font-weight:400;
  5829. font-style:normal;
  5830. font-size:14px;
  5831. }
  5832. #u98804 .text {
  5833. position:absolute;
  5834. align-self:center;
  5835. padding:2px 2px 2px 2px;
  5836. box-sizing:border-box;
  5837. width:100%;
  5838. }
  5839. #u98804_div.disabled {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:250px;
  5845. height:38px;
  5846. background:inherit;
  5847. background-color:rgba(240, 240, 240, 1);
  5848. border:none;
  5849. border-radius:0px;
  5850. -moz-box-shadow:none;
  5851. -webkit-box-shadow:none;
  5852. box-shadow:none;
  5853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:14px;
  5857. }
  5858. #u98804.disabled {
  5859. }
  5860. #u98805_div {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:88px;
  5866. height:30px;
  5867. background:inherit;
  5868. background-color:rgba(255, 255, 255, 0);
  5869. border:none;
  5870. border-top:0px;
  5871. border-right:0px;
  5872. border-bottom:0px;
  5873. border-radius:0px;
  5874. border-top-left-radius:0px;
  5875. border-bottom-left-radius:0px;
  5876. -moz-box-shadow:none;
  5877. -webkit-box-shadow:none;
  5878. box-shadow:none;
  5879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. font-size:14px;
  5883. color:#7F7F7F;
  5884. text-align:right;
  5885. }
  5886. #u98805 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:1230px;
  5890. top:783px;
  5891. width:88px;
  5892. height:30px;
  5893. display:flex;
  5894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. font-size:14px;
  5898. color:#7F7F7F;
  5899. text-align:right;
  5900. }
  5901. #u98805 .text {
  5902. position:absolute;
  5903. align-self:center;
  5904. padding:5px 10px 5px 0px;
  5905. box-sizing:border-box;
  5906. width:100%;
  5907. }
  5908. #u98805_text {
  5909. border-width:0px;
  5910. white-space:nowrap;
  5911. text-transform:none;
  5912. }
  5913. #u98806_div {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:81px;
  5919. height:30px;
  5920. background:inherit;
  5921. background-color:rgba(255, 255, 255, 0);
  5922. border:none;
  5923. border-top:0px;
  5924. border-right:0px;
  5925. border-bottom:0px;
  5926. border-radius:0px;
  5927. border-top-left-radius:0px;
  5928. border-bottom-left-radius:0px;
  5929. -moz-box-shadow:none;
  5930. -webkit-box-shadow:none;
  5931. box-shadow:none;
  5932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5933. font-weight:400;
  5934. font-style:normal;
  5935. font-size:14px;
  5936. color:#7F7F7F;
  5937. text-align:right;
  5938. }
  5939. #u98806 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:1237px;
  5943. top:932px;
  5944. width:81px;
  5945. height:30px;
  5946. display:flex;
  5947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5948. font-weight:400;
  5949. font-style:normal;
  5950. font-size:14px;
  5951. color:#7F7F7F;
  5952. text-align:right;
  5953. }
  5954. #u98806 .text {
  5955. position:absolute;
  5956. align-self:center;
  5957. padding:5px 10px 5px 0px;
  5958. box-sizing:border-box;
  5959. width:100%;
  5960. }
  5961. #u98806_text {
  5962. border-width:0px;
  5963. white-space:nowrap;
  5964. text-transform:none;
  5965. }
  5966. #u98807 {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:0px;
  5970. top:0px;
  5971. width:0px;
  5972. height:0px;
  5973. }
  5974. #u98808_div {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:0px;
  5978. top:0px;
  5979. width:682px;
  5980. height:80px;
  5981. background:inherit;
  5982. background-color:rgba(255, 255, 255, 1);
  5983. box-sizing:border-box;
  5984. border-width:1px;
  5985. border-style:solid;
  5986. border-color:rgba(201, 201, 201, 1);
  5987. border-radius:4px;
  5988. -moz-box-shadow:none;
  5989. -webkit-box-shadow:none;
  5990. box-shadow:none;
  5991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5992. font-weight:400;
  5993. font-style:normal;
  5994. font-size:12px;
  5995. color:#CCCCCC;
  5996. text-align:right;
  5997. }
  5998. #u98808 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:1318px;
  6002. top:927px;
  6003. width:682px;
  6004. height:80px;
  6005. display:flex;
  6006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. font-size:12px;
  6010. color:#CCCCCC;
  6011. text-align:right;
  6012. }
  6013. #u98808 .text {
  6014. position:absolute;
  6015. align-self:center;
  6016. padding:2px 8px 2px 8px;
  6017. box-sizing:border-box;
  6018. width:100%;
  6019. }
  6020. #u98808_text {
  6021. border-width:0px;
  6022. word-wrap:break-word;
  6023. text-transform:none;
  6024. visibility:hidden;
  6025. }
  6026. #u98809_input {
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:613px;
  6031. height:38px;
  6032. padding:2px 2px 2px 2px;
  6033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6034. font-weight:400;
  6035. font-style:normal;
  6036. font-size:14px;
  6037. letter-spacing:normal;
  6038. color:#000000;
  6039. vertical-align:none;
  6040. text-align:left;
  6041. text-transform:none;
  6042. background-color:transparent;
  6043. border-color:transparent;
  6044. }
  6045. #u98809_input.disabled {
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:613px;
  6050. height:38px;
  6051. padding:2px 2px 2px 2px;
  6052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6053. font-weight:400;
  6054. font-style:normal;
  6055. font-size:14px;
  6056. letter-spacing:normal;
  6057. color:#000000;
  6058. vertical-align:none;
  6059. text-align:left;
  6060. text-transform:none;
  6061. background-color:transparent;
  6062. border-color:transparent;
  6063. }
  6064. #u98809_div {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:0px;
  6068. top:0px;
  6069. width:613px;
  6070. height:38px;
  6071. background:inherit;
  6072. background-color:rgba(255, 255, 255, 1);
  6073. border:none;
  6074. border-radius:0px;
  6075. -moz-box-shadow:none;
  6076. -webkit-box-shadow:none;
  6077. box-shadow:none;
  6078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6079. font-weight:400;
  6080. font-style:normal;
  6081. font-size:14px;
  6082. }
  6083. #u98809 {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:1338px;
  6087. top:928px;
  6088. width:613px;
  6089. height:38px;
  6090. display:flex;
  6091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6092. font-weight:400;
  6093. font-style:normal;
  6094. font-size:14px;
  6095. }
  6096. #u98809 .text {
  6097. position:absolute;
  6098. align-self:center;
  6099. padding:2px 2px 2px 2px;
  6100. box-sizing:border-box;
  6101. width:100%;
  6102. }
  6103. #u98809_div.disabled {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:0px;
  6107. top:0px;
  6108. width:613px;
  6109. height:38px;
  6110. background:inherit;
  6111. background-color:rgba(240, 240, 240, 1);
  6112. border:none;
  6113. border-radius:0px;
  6114. -moz-box-shadow:none;
  6115. -webkit-box-shadow:none;
  6116. box-shadow:none;
  6117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6118. font-weight:400;
  6119. font-style:normal;
  6120. font-size:14px;
  6121. }
  6122. #u98809.disabled {
  6123. }
  6124. #u98810 {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:0px;
  6130. height:0px;
  6131. }
  6132. #u98811_div {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:0px;
  6136. top:0px;
  6137. width:278px;
  6138. height:38px;
  6139. background:inherit;
  6140. background-color:rgba(255, 255, 255, 1);
  6141. box-sizing:border-box;
  6142. border-width:1px;
  6143. border-style:solid;
  6144. border-color:rgba(188, 188, 188, 1);
  6145. border-radius:6px;
  6146. -moz-box-shadow:none;
  6147. -webkit-box-shadow:none;
  6148. box-shadow:none;
  6149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6150. font-weight:400;
  6151. font-style:normal;
  6152. font-size:12px;
  6153. color:#FFFFFF;
  6154. }
  6155. #u98811 {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:1722px;
  6159. top:828px;
  6160. width:278px;
  6161. height:38px;
  6162. display:flex;
  6163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6164. font-weight:400;
  6165. font-style:normal;
  6166. font-size:12px;
  6167. color:#FFFFFF;
  6168. }
  6169. #u98811 .text {
  6170. position:absolute;
  6171. align-self:center;
  6172. padding:8px 15px 8px 15px;
  6173. box-sizing:border-box;
  6174. width:100%;
  6175. }
  6176. #u98811_text {
  6177. border-width:0px;
  6178. word-wrap:break-word;
  6179. text-transform:none;
  6180. visibility:hidden;
  6181. }
  6182. #u98812_div {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:116px;
  6188. height:20px;
  6189. background:inherit;
  6190. background-color:rgba(255, 255, 255, 0);
  6191. border:none;
  6192. border-radius:0px;
  6193. -moz-box-shadow:none;
  6194. -webkit-box-shadow:none;
  6195. box-shadow:none;
  6196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6197. font-weight:400;
  6198. font-style:normal;
  6199. color:#BCBCBC;
  6200. }
  6201. #u98812 {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:1734px;
  6205. top:837px;
  6206. width:116px;
  6207. height:20px;
  6208. display:flex;
  6209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6210. font-weight:400;
  6211. font-style:normal;
  6212. color:#BCBCBC;
  6213. }
  6214. #u98812 .text {
  6215. position:absolute;
  6216. align-self:flex-start;
  6217. padding:0px 0px 0px 0px;
  6218. box-sizing:border-box;
  6219. width:100%;
  6220. }
  6221. #u98812_text {
  6222. border-width:0px;
  6223. white-space:nowrap;
  6224. text-transform:none;
  6225. }
  6226. #u98813_img {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:18px;
  6232. height:18px;
  6233. }
  6234. #u98813 {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:1972px;
  6238. top:838px;
  6239. width:18px;
  6240. height:18px;
  6241. display:flex;
  6242. opacity:0.5;
  6243. }
  6244. #u98813 .text {
  6245. position:absolute;
  6246. align-self:center;
  6247. padding:2px 2px 2px 2px;
  6248. box-sizing:border-box;
  6249. width:100%;
  6250. }
  6251. #u98813_text {
  6252. border-width:0px;
  6253. word-wrap:break-word;
  6254. text-transform:none;
  6255. visibility:hidden;
  6256. }
  6257. #u98814_div {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:88px;
  6263. height:30px;
  6264. background:inherit;
  6265. background-color:rgba(255, 255, 255, 0);
  6266. border:none;
  6267. border-top:0px;
  6268. border-right:0px;
  6269. border-bottom:0px;
  6270. border-radius:0px;
  6271. border-top-left-radius:0px;
  6272. border-bottom-left-radius:0px;
  6273. -moz-box-shadow:none;
  6274. -webkit-box-shadow:none;
  6275. box-shadow:none;
  6276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6277. font-weight:400;
  6278. font-style:normal;
  6279. font-size:14px;
  6280. color:#7F7F7F;
  6281. text-align:right;
  6282. }
  6283. #u98814 {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:1634px;
  6287. top:832px;
  6288. width:88px;
  6289. height:30px;
  6290. display:flex;
  6291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6292. font-weight:400;
  6293. font-style:normal;
  6294. font-size:14px;
  6295. color:#7F7F7F;
  6296. text-align:right;
  6297. }
  6298. #u98814 .text {
  6299. position:absolute;
  6300. align-self:center;
  6301. padding:5px 10px 5px 0px;
  6302. box-sizing:border-box;
  6303. width:100%;
  6304. }
  6305. #u98814_text {
  6306. border-width:0px;
  6307. white-space:nowrap;
  6308. text-transform:none;
  6309. }
  6310. #u98815_div {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:0px;
  6314. top:0px;
  6315. width:74px;
  6316. height:30px;
  6317. background:inherit;
  6318. background-color:rgba(255, 255, 255, 0);
  6319. border:none;
  6320. border-top:0px;
  6321. border-right:0px;
  6322. border-bottom:0px;
  6323. border-radius:0px;
  6324. border-top-left-radius:0px;
  6325. border-bottom-left-radius:0px;
  6326. -moz-box-shadow:none;
  6327. -webkit-box-shadow:none;
  6328. box-shadow:none;
  6329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6330. font-weight:400;
  6331. font-style:normal;
  6332. font-size:14px;
  6333. color:#7F7F7F;
  6334. text-align:right;
  6335. }
  6336. #u98815 {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:1243px;
  6340. top:832px;
  6341. width:74px;
  6342. height:30px;
  6343. display:flex;
  6344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6345. font-weight:400;
  6346. font-style:normal;
  6347. font-size:14px;
  6348. color:#7F7F7F;
  6349. text-align:right;
  6350. }
  6351. #u98815 .text {
  6352. position:absolute;
  6353. align-self:center;
  6354. padding:5px 10px 5px 0px;
  6355. box-sizing:border-box;
  6356. width:100%;
  6357. }
  6358. #u98815_text {
  6359. border-width:0px;
  6360. white-space:nowrap;
  6361. text-transform:none;
  6362. }
  6363. #u98816 {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:0px;
  6369. height:0px;
  6370. }
  6371. #u98817_div {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:0px;
  6375. top:0px;
  6376. width:276px;
  6377. height:40px;
  6378. background:inherit;
  6379. background-color:rgba(255, 255, 255, 1);
  6380. box-sizing:border-box;
  6381. border-width:1px;
  6382. border-style:solid;
  6383. border-color:rgba(201, 201, 201, 1);
  6384. border-radius:4px;
  6385. -moz-box-shadow:none;
  6386. -webkit-box-shadow:none;
  6387. box-shadow:none;
  6388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:12px;
  6392. color:#CCCCCC;
  6393. text-align:right;
  6394. }
  6395. #u98817 {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:1317px;
  6399. top:827px;
  6400. width:276px;
  6401. height:40px;
  6402. display:flex;
  6403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6404. font-weight:400;
  6405. font-style:normal;
  6406. font-size:12px;
  6407. color:#CCCCCC;
  6408. text-align:right;
  6409. }
  6410. #u98817 .text {
  6411. position:absolute;
  6412. align-self:center;
  6413. padding:2px 8px 2px 8px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u98817_text {
  6418. border-width:0px;
  6419. word-wrap:break-word;
  6420. text-transform:none;
  6421. visibility:hidden;
  6422. }
  6423. #u98818_input {
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:248px;
  6428. height:38px;
  6429. padding:2px 2px 2px 2px;
  6430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6431. font-weight:400;
  6432. font-style:normal;
  6433. font-size:14px;
  6434. letter-spacing:normal;
  6435. color:#000000;
  6436. vertical-align:none;
  6437. text-align:left;
  6438. text-transform:none;
  6439. background-color:transparent;
  6440. border-color:transparent;
  6441. }
  6442. #u98818_input.disabled {
  6443. position:absolute;
  6444. left:0px;
  6445. top:0px;
  6446. width:248px;
  6447. height:38px;
  6448. padding:2px 2px 2px 2px;
  6449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6450. font-weight:400;
  6451. font-style:normal;
  6452. font-size:14px;
  6453. letter-spacing:normal;
  6454. color:#000000;
  6455. vertical-align:none;
  6456. text-align:left;
  6457. text-transform:none;
  6458. background-color:transparent;
  6459. border-color:transparent;
  6460. }
  6461. #u98818_div {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:0px;
  6465. top:0px;
  6466. width:248px;
  6467. height:38px;
  6468. background:inherit;
  6469. background-color:rgba(255, 255, 255, 1);
  6470. border:none;
  6471. border-radius:0px;
  6472. -moz-box-shadow:none;
  6473. -webkit-box-shadow:none;
  6474. box-shadow:none;
  6475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:14px;
  6479. }
  6480. #u98818 {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:1325px;
  6484. top:828px;
  6485. width:248px;
  6486. height:38px;
  6487. display:flex;
  6488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. font-size:14px;
  6492. }
  6493. #u98818 .text {
  6494. position:absolute;
  6495. align-self:center;
  6496. padding:2px 2px 2px 2px;
  6497. box-sizing:border-box;
  6498. width:100%;
  6499. }
  6500. #u98818_div.disabled {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:248px;
  6506. height:38px;
  6507. background:inherit;
  6508. background-color:rgba(240, 240, 240, 1);
  6509. border:none;
  6510. border-radius:0px;
  6511. -moz-box-shadow:none;
  6512. -webkit-box-shadow:none;
  6513. box-shadow:none;
  6514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6515. font-weight:400;
  6516. font-style:normal;
  6517. font-size:14px;
  6518. }
  6519. #u98818.disabled {
  6520. }
  6521. #u98819_div {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:0px;
  6525. top:0px;
  6526. width:74px;
  6527. height:30px;
  6528. background:inherit;
  6529. background-color:rgba(255, 255, 255, 0);
  6530. border:none;
  6531. border-top:0px;
  6532. border-right:0px;
  6533. border-bottom:0px;
  6534. border-radius:0px;
  6535. border-top-left-radius:0px;
  6536. border-bottom-left-radius:0px;
  6537. -moz-box-shadow:none;
  6538. -webkit-box-shadow:none;
  6539. box-shadow:none;
  6540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6541. font-weight:400;
  6542. font-style:normal;
  6543. font-size:14px;
  6544. color:#7F7F7F;
  6545. text-align:right;
  6546. }
  6547. #u98819 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:1242px;
  6551. top:882px;
  6552. width:74px;
  6553. height:30px;
  6554. display:flex;
  6555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:14px;
  6559. color:#7F7F7F;
  6560. text-align:right;
  6561. }
  6562. #u98819 .text {
  6563. position:absolute;
  6564. align-self:center;
  6565. padding:5px 10px 5px 0px;
  6566. box-sizing:border-box;
  6567. width:100%;
  6568. }
  6569. #u98819_text {
  6570. border-width:0px;
  6571. white-space:nowrap;
  6572. text-transform:none;
  6573. }
  6574. #u98820 {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:0px;
  6580. height:0px;
  6581. }
  6582. #u98821_div {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:0px;
  6586. top:0px;
  6587. width:278px;
  6588. height:40px;
  6589. background:inherit;
  6590. background-color:rgba(255, 255, 255, 1);
  6591. box-sizing:border-box;
  6592. border-width:1px;
  6593. border-style:solid;
  6594. border-color:rgba(201, 201, 201, 1);
  6595. border-radius:4px;
  6596. -moz-box-shadow:none;
  6597. -webkit-box-shadow:none;
  6598. box-shadow:none;
  6599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:12px;
  6603. color:#CCCCCC;
  6604. text-align:right;
  6605. }
  6606. #u98821 {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:1316px;
  6610. top:877px;
  6611. width:278px;
  6612. height:40px;
  6613. display:flex;
  6614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6615. font-weight:400;
  6616. font-style:normal;
  6617. font-size:12px;
  6618. color:#CCCCCC;
  6619. text-align:right;
  6620. }
  6621. #u98821 .text {
  6622. position:absolute;
  6623. align-self:center;
  6624. padding:2px 8px 2px 8px;
  6625. box-sizing:border-box;
  6626. width:100%;
  6627. }
  6628. #u98821_text {
  6629. border-width:0px;
  6630. word-wrap:break-word;
  6631. text-transform:none;
  6632. visibility:hidden;
  6633. }
  6634. #u98822_input {
  6635. position:absolute;
  6636. left:0px;
  6637. top:0px;
  6638. width:250px;
  6639. height:38px;
  6640. padding:2px 2px 2px 2px;
  6641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6642. font-weight:400;
  6643. font-style:normal;
  6644. font-size:14px;
  6645. letter-spacing:normal;
  6646. color:#000000;
  6647. vertical-align:none;
  6648. text-align:left;
  6649. text-transform:none;
  6650. background-color:transparent;
  6651. border-color:transparent;
  6652. }
  6653. #u98822_input.disabled {
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:250px;
  6658. height:38px;
  6659. padding:2px 2px 2px 2px;
  6660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6661. font-weight:400;
  6662. font-style:normal;
  6663. font-size:14px;
  6664. letter-spacing:normal;
  6665. color:#000000;
  6666. vertical-align:none;
  6667. text-align:left;
  6668. text-transform:none;
  6669. background-color:transparent;
  6670. border-color:transparent;
  6671. }
  6672. #u98822_div {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:250px;
  6678. height:38px;
  6679. background:inherit;
  6680. background-color:rgba(255, 255, 255, 1);
  6681. border:none;
  6682. border-radius:0px;
  6683. -moz-box-shadow:none;
  6684. -webkit-box-shadow:none;
  6685. box-shadow:none;
  6686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6687. font-weight:400;
  6688. font-style:normal;
  6689. font-size:14px;
  6690. }
  6691. #u98822 {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:1324px;
  6695. top:878px;
  6696. width:250px;
  6697. height:38px;
  6698. display:flex;
  6699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6700. font-weight:400;
  6701. font-style:normal;
  6702. font-size:14px;
  6703. }
  6704. #u98822 .text {
  6705. position:absolute;
  6706. align-self:center;
  6707. padding:2px 2px 2px 2px;
  6708. box-sizing:border-box;
  6709. width:100%;
  6710. }
  6711. #u98822_div.disabled {
  6712. border-width:0px;
  6713. position:absolute;
  6714. left:0px;
  6715. top:0px;
  6716. width:250px;
  6717. height:38px;
  6718. background:inherit;
  6719. background-color:rgba(240, 240, 240, 1);
  6720. border:none;
  6721. border-radius:0px;
  6722. -moz-box-shadow:none;
  6723. -webkit-box-shadow:none;
  6724. box-shadow:none;
  6725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6726. font-weight:400;
  6727. font-style:normal;
  6728. font-size:14px;
  6729. }
  6730. #u98822.disabled {
  6731. }
  6732. #u98823 {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:0px;
  6738. height:0px;
  6739. }
  6740. #u98824_div {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:0px;
  6744. top:0px;
  6745. width:276px;
  6746. height:40px;
  6747. background:inherit;
  6748. background-color:rgba(255, 255, 255, 1);
  6749. box-sizing:border-box;
  6750. border-width:1px;
  6751. border-style:solid;
  6752. border-color:rgba(215, 215, 215, 1);
  6753. border-radius:4px;
  6754. -moz-box-shadow:none;
  6755. -webkit-box-shadow:none;
  6756. box-shadow:none;
  6757. font-size:14px;
  6758. }
  6759. #u98824 {
  6760. border-width:0px;
  6761. position:absolute;
  6762. left:1318px;
  6763. top:778px;
  6764. width:276px;
  6765. height:40px;
  6766. display:flex;
  6767. font-size:14px;
  6768. }
  6769. #u98824 .text {
  6770. position:absolute;
  6771. align-self:center;
  6772. padding:2px 2px 2px 2px;
  6773. box-sizing:border-box;
  6774. width:100%;
  6775. }
  6776. #u98824_text {
  6777. border-width:0px;
  6778. word-wrap:break-word;
  6779. text-transform:none;
  6780. visibility:hidden;
  6781. }
  6782. #u98825_input {
  6783. position:absolute;
  6784. left:0px;
  6785. top:0px;
  6786. width:264px;
  6787. height:31px;
  6788. padding:2px 2px 2px 2px;
  6789. font-family:'ArialMT', 'Arial', sans-serif;
  6790. font-weight:400;
  6791. font-style:normal;
  6792. font-size:14px;
  6793. letter-spacing:normal;
  6794. color:#AAAAAA;
  6795. vertical-align:none;
  6796. text-align:left;
  6797. text-transform:none;
  6798. background-color:transparent;
  6799. border-color:transparent;
  6800. }
  6801. #u98825_input.disabled {
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:264px;
  6806. height:31px;
  6807. padding:2px 2px 2px 2px;
  6808. font-family:'ArialMT', 'Arial', sans-serif;
  6809. font-weight:400;
  6810. font-style:normal;
  6811. font-size:14px;
  6812. letter-spacing:normal;
  6813. color:#AAAAAA;
  6814. vertical-align:none;
  6815. text-align:left;
  6816. text-transform:none;
  6817. background-color:transparent;
  6818. border-color:transparent;
  6819. }
  6820. #u98825_div {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:0px;
  6824. top:0px;
  6825. width:264px;
  6826. height:31px;
  6827. background:inherit;
  6828. background-color:rgba(255, 255, 255, 1);
  6829. border:none;
  6830. border-radius:0px;
  6831. -moz-box-shadow:none;
  6832. -webkit-box-shadow:none;
  6833. box-shadow:none;
  6834. font-size:14px;
  6835. color:#AAAAAA;
  6836. }
  6837. #u98825 {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:1326px;
  6841. top:781px;
  6842. width:264px;
  6843. height:31px;
  6844. display:flex;
  6845. font-size:14px;
  6846. color:#AAAAAA;
  6847. }
  6848. #u98825 .text {
  6849. position:absolute;
  6850. align-self:flex-start;
  6851. padding:2px 2px 2px 2px;
  6852. box-sizing:border-box;
  6853. width:100%;
  6854. }
  6855. #u98825_div.disabled {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:0px;
  6859. top:0px;
  6860. width:264px;
  6861. height:31px;
  6862. background:inherit;
  6863. background-color:rgba(240, 240, 240, 1);
  6864. border:none;
  6865. border-radius:0px;
  6866. -moz-box-shadow:none;
  6867. -webkit-box-shadow:none;
  6868. box-shadow:none;
  6869. font-size:14px;
  6870. color:#AAAAAA;
  6871. }
  6872. #u98825.disabled {
  6873. }
  6874. .u98825_input_option {
  6875. font-size:14px;
  6876. }