styles.css 128 KB

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