styles.css 158 KB

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