styles.css 136 KB

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