styles.css 147 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1711px;
  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. #u96952 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u96954_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. #u96954 {
  43. border-width:0px;
  44. position:absolute;
  45. left:120px;
  46. top:50px;
  47. width:1480px;
  48. height:1200px;
  49. display:flex;
  50. }
  51. #u96954 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u96954_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u96955_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. #u96955 {
  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. #u96955 .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. #u96955_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u96956_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. #u96956 {
  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. #u96956 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u96956_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u96957 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u96958_img {
  152. border-width:0px;
  153. position:absolute;
  154. left:0px;
  155. top:0px;
  156. width:31px;
  157. height:31px;
  158. }
  159. #u96958 {
  160. border-width:0px;
  161. position:absolute;
  162. left:19px;
  163. top:10px;
  164. width:31px;
  165. height:31px;
  166. display:flex;
  167. }
  168. #u96958 .text {
  169. position:absolute;
  170. align-self:center;
  171. padding:2px 2px 2px 2px;
  172. box-sizing:border-box;
  173. width:100%;
  174. }
  175. #u96958_text {
  176. border-width:0px;
  177. word-wrap:break-word;
  178. text-transform:none;
  179. }
  180. #u96959_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. #u96959 {
  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. #u96959 .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. #u96959_text {
  222. border-width:0px;
  223. white-space:nowrap;
  224. text-transform:none;
  225. }
  226. #u96960_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. #u96960 {
  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. #u96960 .text {
  253. position:absolute;
  254. align-self:center;
  255. padding:2px 2px 2px 2px;
  256. box-sizing:border-box;
  257. width:100%;
  258. }
  259. #u96960_text {
  260. border-width:0px;
  261. word-wrap:break-word;
  262. text-transform:none;
  263. visibility:hidden;
  264. }
  265. #u96961 {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:0px;
  271. height:0px;
  272. }
  273. #u96962_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. #u96962_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. #u96962_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. #u96962 {
  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. #u96962 .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. #u96962_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. #u96962.disabled {
  364. }
  365. .u96962_input_option {
  366. font-size:14px;
  367. }
  368. #u96963_img {
  369. border-width:0px;
  370. position:absolute;
  371. left:0px;
  372. top:0px;
  373. width:22px;
  374. height:22px;
  375. }
  376. #u96963 {
  377. border-width:0px;
  378. position:absolute;
  379. left:1062px;
  380. top:15px;
  381. width:22px;
  382. height:22px;
  383. display:flex;
  384. }
  385. #u96963 .text {
  386. position:absolute;
  387. align-self:center;
  388. padding:2px 2px 2px 2px;
  389. box-sizing:border-box;
  390. width:100%;
  391. }
  392. #u96963_text {
  393. border-width:0px;
  394. word-wrap:break-word;
  395. text-transform:none;
  396. visibility:hidden;
  397. }
  398. #u96964_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. #u96964 {
  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. #u96964 .text {
  433. position:absolute;
  434. align-self:center;
  435. padding:0px 0px 0px 0px;
  436. box-sizing:border-box;
  437. width:100%;
  438. }
  439. #u96964_text {
  440. border-width:0px;
  441. word-wrap:break-word;
  442. text-transform:none;
  443. }
  444. #u96965_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. #u96965 {
  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. #u96965 .text {
  479. position:absolute;
  480. align-self:center;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u96965_text {
  486. border-width:0px;
  487. word-wrap:break-word;
  488. text-transform:none;
  489. }
  490. #u96966 {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:0px;
  496. height:0px;
  497. }
  498. #u96967_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. #u96967 {
  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. #u96967 .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. #u96967_text {
  540. border-width:0px;
  541. white-space:nowrap;
  542. text-transform:none;
  543. }
  544. #u96968_img {
  545. border-width:0px;
  546. position:absolute;
  547. left:0px;
  548. top:0px;
  549. width:14px;
  550. height:14px;
  551. }
  552. #u96968 {
  553. border-width:0px;
  554. position:absolute;
  555. left:20px;
  556. top:75px;
  557. width:14px;
  558. height:14px;
  559. display:flex;
  560. }
  561. #u96968 .text {
  562. position:absolute;
  563. align-self:center;
  564. padding:2px 2px 2px 2px;
  565. box-sizing:border-box;
  566. width:100%;
  567. }
  568. #u96968_text {
  569. border-width:0px;
  570. word-wrap:break-word;
  571. text-transform:none;
  572. visibility:hidden;
  573. }
  574. #u96969 {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:0px;
  580. height:0px;
  581. }
  582. #u96970_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. #u96970 {
  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. #u96970 .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. #u96970_text {
  624. border-width:0px;
  625. white-space:nowrap;
  626. text-transform:none;
  627. }
  628. #u96971_img {
  629. border-width:0px;
  630. position:absolute;
  631. left:0px;
  632. top:0px;
  633. width:14px;
  634. height:14px;
  635. }
  636. #u96971 {
  637. border-width:0px;
  638. position:absolute;
  639. left:20px;
  640. top:151px;
  641. width:14px;
  642. height:14px;
  643. display:flex;
  644. }
  645. #u96971 .text {
  646. position:absolute;
  647. align-self:center;
  648. padding:2px 2px 2px 2px;
  649. box-sizing:border-box;
  650. width:100%;
  651. }
  652. #u96971_text {
  653. border-width:0px;
  654. word-wrap:break-word;
  655. text-transform:none;
  656. visibility:hidden;
  657. }
  658. #u96972 {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:0px;
  664. height:0px;
  665. }
  666. #u96973_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. #u96973 {
  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. #u96973 .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. #u96973_text {
  708. border-width:0px;
  709. white-space:nowrap;
  710. text-transform:none;
  711. }
  712. #u96974_img {
  713. border-width:0px;
  714. position:absolute;
  715. left:0px;
  716. top:0px;
  717. width:14px;
  718. height:14px;
  719. }
  720. #u96974 {
  721. border-width:0px;
  722. position:absolute;
  723. left:20px;
  724. top:403px;
  725. width:14px;
  726. height:14px;
  727. display:flex;
  728. }
  729. #u96974 .text {
  730. position:absolute;
  731. align-self:center;
  732. padding:2px 2px 2px 2px;
  733. box-sizing:border-box;
  734. width:100%;
  735. }
  736. #u96974_text {
  737. border-width:0px;
  738. word-wrap:break-word;
  739. text-transform:none;
  740. visibility:hidden;
  741. }
  742. #u96975 {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:0px;
  748. height:0px;
  749. }
  750. #u96976_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. #u96976 {
  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. #u96976 .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. #u96976_text {
  792. border-width:0px;
  793. white-space:nowrap;
  794. text-transform:none;
  795. }
  796. #u96977_img {
  797. border-width:0px;
  798. position:absolute;
  799. left:0px;
  800. top:0px;
  801. width:14px;
  802. height:14px;
  803. }
  804. #u96977 {
  805. border-width:0px;
  806. position:absolute;
  807. left:20px;
  808. top:113px;
  809. width:14px;
  810. height:14px;
  811. display:flex;
  812. }
  813. #u96977 .text {
  814. position:absolute;
  815. align-self:center;
  816. padding:2px 2px 2px 2px;
  817. box-sizing:border-box;
  818. width:100%;
  819. }
  820. #u96977_text {
  821. border-width:0px;
  822. word-wrap:break-word;
  823. text-transform:none;
  824. visibility:hidden;
  825. }
  826. #u96978 {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:0px;
  832. height:0px;
  833. }
  834. #u96979_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. #u96979 {
  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. #u96979 .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. #u96979_text {
  876. border-width:0px;
  877. white-space:nowrap;
  878. text-transform:none;
  879. }
  880. #u96980_img {
  881. border-width:0px;
  882. position:absolute;
  883. left:0px;
  884. top:0px;
  885. width:14px;
  886. height:14px;
  887. }
  888. #u96980 {
  889. border-width:0px;
  890. position:absolute;
  891. left:20px;
  892. top:445px;
  893. width:14px;
  894. height:14px;
  895. display:flex;
  896. }
  897. #u96980 .text {
  898. position:absolute;
  899. align-self:center;
  900. padding:2px 2px 2px 2px;
  901. box-sizing:border-box;
  902. width:100%;
  903. }
  904. #u96980_text {
  905. border-width:0px;
  906. word-wrap:break-word;
  907. text-transform:none;
  908. visibility:hidden;
  909. }
  910. #u96981 {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:0px;
  916. height:0px;
  917. }
  918. #u96982_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. #u96982 {
  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. #u96982 .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. #u96982_text {
  960. border-width:0px;
  961. white-space:nowrap;
  962. text-transform:none;
  963. }
  964. #u96983_img {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:14px;
  970. height:14px;
  971. }
  972. #u96983 {
  973. border-width:0px;
  974. position:absolute;
  975. left:20px;
  976. top:319px;
  977. width:14px;
  978. height:14px;
  979. display:flex;
  980. }
  981. #u96983 .text {
  982. position:absolute;
  983. align-self:center;
  984. padding:2px 2px 2px 2px;
  985. box-sizing:border-box;
  986. width:100%;
  987. }
  988. #u96983_text {
  989. border-width:0px;
  990. word-wrap:break-word;
  991. text-transform:none;
  992. visibility:hidden;
  993. }
  994. #u96984 {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:0px;
  1000. height:0px;
  1001. }
  1002. #u96985_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. #u96985 {
  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. #u96985 .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. #u96985_text {
  1044. border-width:0px;
  1045. white-space:nowrap;
  1046. text-transform:none;
  1047. }
  1048. #u96986_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:14px;
  1054. height:14px;
  1055. }
  1056. #u96986 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:20px;
  1060. top:193px;
  1061. width:14px;
  1062. height:14px;
  1063. display:flex;
  1064. }
  1065. #u96986 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:2px 2px 2px 2px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u96986_text {
  1073. border-width:0px;
  1074. word-wrap:break-word;
  1075. text-transform:none;
  1076. visibility:hidden;
  1077. }
  1078. #u96987 {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:0px;
  1084. height:0px;
  1085. }
  1086. #u96988_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. #u96988 {
  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. #u96988 .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. #u96988_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u96989_img {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:0px;
  1137. width:14px;
  1138. height:14px;
  1139. }
  1140. #u96989 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:20px;
  1144. top:361px;
  1145. width:14px;
  1146. height:14px;
  1147. display:flex;
  1148. }
  1149. #u96989 .text {
  1150. position:absolute;
  1151. align-self:center;
  1152. padding:2px 2px 2px 2px;
  1153. box-sizing:border-box;
  1154. width:100%;
  1155. }
  1156. #u96989_text {
  1157. border-width:0px;
  1158. word-wrap:break-word;
  1159. text-transform:none;
  1160. visibility:hidden;
  1161. }
  1162. #u96990 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:0px;
  1168. height:0px;
  1169. }
  1170. #u96991_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. #u96991 {
  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. #u96991 .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. #u96991_text {
  1212. border-width:0px;
  1213. white-space:nowrap;
  1214. text-transform:none;
  1215. }
  1216. #u96992_img {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:0px;
  1220. top:0px;
  1221. width:14px;
  1222. height:14px;
  1223. }
  1224. #u96992 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:20px;
  1228. top:487px;
  1229. width:14px;
  1230. height:14px;
  1231. display:flex;
  1232. }
  1233. #u96992 .text {
  1234. position:absolute;
  1235. align-self:center;
  1236. padding:2px 2px 2px 2px;
  1237. box-sizing:border-box;
  1238. width:100%;
  1239. }
  1240. #u96992_text {
  1241. border-width:0px;
  1242. word-wrap:break-word;
  1243. text-transform:none;
  1244. visibility:hidden;
  1245. }
  1246. #u96993 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:0px;
  1252. height:0px;
  1253. }
  1254. #u96994_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. #u96994 {
  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. #u96994 .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. #u96994_text {
  1296. border-width:0px;
  1297. white-space:nowrap;
  1298. text-transform:none;
  1299. }
  1300. #u96995_img {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:0px;
  1304. top:0px;
  1305. width:14px;
  1306. height:14px;
  1307. }
  1308. #u96995 {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:20px;
  1312. top:529px;
  1313. width:14px;
  1314. height:14px;
  1315. display:flex;
  1316. }
  1317. #u96995 .text {
  1318. position:absolute;
  1319. align-self:center;
  1320. padding:2px 2px 2px 2px;
  1321. box-sizing:border-box;
  1322. width:100%;
  1323. }
  1324. #u96995_text {
  1325. border-width:0px;
  1326. word-wrap:break-word;
  1327. text-transform:none;
  1328. visibility:hidden;
  1329. }
  1330. #u96996_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. #u96996 {
  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. #u96996 .text {
  1363. position:absolute;
  1364. align-self:center;
  1365. padding:0px 0px 0px 0px;
  1366. box-sizing:border-box;
  1367. width:100%;
  1368. }
  1369. #u96996_text {
  1370. border-width:0px;
  1371. white-space:nowrap;
  1372. text-transform:none;
  1373. }
  1374. #u96997_img {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:0px;
  1378. top:0px;
  1379. width:22px;
  1380. height:22px;
  1381. }
  1382. #u96997 {
  1383. border-width:0px;
  1384. position:absolute;
  1385. left:20px;
  1386. top:1144px;
  1387. width:22px;
  1388. height:22px;
  1389. display:flex;
  1390. }
  1391. #u96997 .text {
  1392. position:absolute;
  1393. align-self:center;
  1394. padding:2px 2px 2px 2px;
  1395. box-sizing:border-box;
  1396. width:100%;
  1397. }
  1398. #u96997_text {
  1399. border-width:0px;
  1400. word-wrap:break-word;
  1401. text-transform:none;
  1402. visibility:hidden;
  1403. }
  1404. #u96998_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. #u96998 {
  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. #u96998 .text {
  1437. position:absolute;
  1438. align-self:center;
  1439. padding:0px 0px 0px 0px;
  1440. box-sizing:border-box;
  1441. width:100%;
  1442. }
  1443. #u96998_text {
  1444. border-width:0px;
  1445. white-space:nowrap;
  1446. text-transform:none;
  1447. }
  1448. #u96999_img {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:0px;
  1453. width:22px;
  1454. height:22px;
  1455. }
  1456. #u96999 {
  1457. border-width:0px;
  1458. position:absolute;
  1459. left:20px;
  1460. top:1186px;
  1461. width:22px;
  1462. height:22px;
  1463. display:flex;
  1464. }
  1465. #u96999 .text {
  1466. position:absolute;
  1467. align-self:center;
  1468. padding:2px 2px 2px 2px;
  1469. box-sizing:border-box;
  1470. width:100%;
  1471. }
  1472. #u96999_text {
  1473. border-width:0px;
  1474. word-wrap:break-word;
  1475. text-transform:none;
  1476. visibility:hidden;
  1477. }
  1478. #u97000 {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:0px;
  1484. height:0px;
  1485. }
  1486. #u97001_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. #u97001 {
  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. #u97001 .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. #u97001_text {
  1528. border-width:0px;
  1529. white-space:nowrap;
  1530. text-transform:none;
  1531. }
  1532. #u97002_img {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:14px;
  1538. height:14px;
  1539. }
  1540. #u97002 {
  1541. border-width:0px;
  1542. position:absolute;
  1543. left:20px;
  1544. top:235px;
  1545. width:14px;
  1546. height:14px;
  1547. display:flex;
  1548. }
  1549. #u97002 .text {
  1550. position:absolute;
  1551. align-self:center;
  1552. padding:2px 2px 2px 2px;
  1553. box-sizing:border-box;
  1554. width:100%;
  1555. }
  1556. #u97002_text {
  1557. border-width:0px;
  1558. word-wrap:break-word;
  1559. text-transform:none;
  1560. visibility:hidden;
  1561. }
  1562. #u97003 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:0px;
  1568. height:0px;
  1569. }
  1570. #u97004_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. #u97004 {
  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. #u97004 .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. #u97004_text {
  1612. border-width:0px;
  1613. white-space:nowrap;
  1614. text-transform:none;
  1615. }
  1616. #u97005_img {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:14px;
  1622. height:14px;
  1623. }
  1624. #u97005 {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:20px;
  1628. top:277px;
  1629. width:14px;
  1630. height:14px;
  1631. display:flex;
  1632. }
  1633. #u97005 .text {
  1634. position:absolute;
  1635. align-self:center;
  1636. padding:2px 2px 2px 2px;
  1637. box-sizing:border-box;
  1638. width:100%;
  1639. }
  1640. #u97005_text {
  1641. border-width:0px;
  1642. word-wrap:break-word;
  1643. text-transform:none;
  1644. visibility:hidden;
  1645. }
  1646. #u97006_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. #u97006 {
  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. #u97006 .text {
  1683. position:absolute;
  1684. align-self:center;
  1685. padding:2px 2px 2px 50px;
  1686. box-sizing:border-box;
  1687. width:100%;
  1688. }
  1689. #u97006_text {
  1690. border-width:0px;
  1691. word-wrap:break-word;
  1692. text-transform:none;
  1693. visibility:hidden;
  1694. }
  1695. #u97007 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:0px;
  1701. height:0px;
  1702. }
  1703. #u97008_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. #u97008 {
  1719. border-width:0px;
  1720. position:absolute;
  1721. left:120px;
  1722. top:50px;
  1723. width:200px;
  1724. height:1180px;
  1725. display:flex;
  1726. }
  1727. #u97008 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:2px 2px 2px 2px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u97008_text {
  1735. border-width:0px;
  1736. word-wrap:break-word;
  1737. text-transform:none;
  1738. visibility:hidden;
  1739. }
  1740. #u97009_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. #u97009 {
  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. #u97009 .text {
  1773. position:absolute;
  1774. align-self:center;
  1775. padding:0px 0px 0px 20px;
  1776. box-sizing:border-box;
  1777. width:100%;
  1778. }
  1779. #u97009_text {
  1780. border-width:0px;
  1781. word-wrap:break-word;
  1782. text-transform:none;
  1783. }
  1784. #u97010_img {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:0px;
  1788. top:0px;
  1789. width:201px;
  1790. height:2px;
  1791. }
  1792. #u97010 {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:120px;
  1796. top:335px;
  1797. width:200px;
  1798. height:1px;
  1799. display:flex;
  1800. }
  1801. #u97010 .text {
  1802. position:absolute;
  1803. align-self:center;
  1804. padding:2px 2px 2px 2px;
  1805. box-sizing:border-box;
  1806. width:100%;
  1807. }
  1808. #u97010_text {
  1809. border-width:0px;
  1810. word-wrap:break-word;
  1811. text-transform:none;
  1812. visibility:hidden;
  1813. }
  1814. #u97011_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. #u97011 {
  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. #u97011 .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. #u97011_text {
  1854. border-width:0px;
  1855. white-space:nowrap;
  1856. text-transform:none;
  1857. }
  1858. #u97012_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. #u97012 {
  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. #u97012 .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. #u97012_text {
  1900. border-width:0px;
  1901. white-space:nowrap;
  1902. text-transform:none;
  1903. }
  1904. #u97013_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. #u97013 {
  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. #u97013 .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. #u97013_text {
  1946. border-width:0px;
  1947. white-space:nowrap;
  1948. text-transform:none;
  1949. }
  1950. #u97014_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. #u97014 {
  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. #u97014 .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. #u97014_text {
  1990. border-width:0px;
  1991. word-wrap:break-word;
  1992. text-transform:none;
  1993. }
  1994. #u97015_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. #u97015 {
  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. #u97015 .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. #u97015_text {
  2034. border-width:0px;
  2035. word-wrap:break-word;
  2036. text-transform:none;
  2037. }
  2038. #u97016_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. #u97016 {
  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. #u97016 .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. #u97016_text {
  2078. border-width:0px;
  2079. white-space:nowrap;
  2080. text-transform:none;
  2081. }
  2082. #u97017_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. #u97017 {
  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. #u97017 .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. #u97017_text {
  2122. border-width:0px;
  2123. white-space:nowrap;
  2124. text-transform:none;
  2125. }
  2126. #u97018_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. #u97018 {
  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. #u97018 .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. #u97018_text {
  2166. border-width:0px;
  2167. word-wrap:break-word;
  2168. text-transform:none;
  2169. }
  2170. #u97019_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. #u97019 {
  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. #u97019 .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. #u97019_text {
  2210. border-width:0px;
  2211. word-wrap:break-word;
  2212. text-transform:none;
  2213. }
  2214. #u97020_img {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:0px;
  2218. top:0px;
  2219. width:201px;
  2220. height:2px;
  2221. }
  2222. #u97020 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:120px;
  2226. top:517px;
  2227. width:200px;
  2228. height:1px;
  2229. display:flex;
  2230. }
  2231. #u97020 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:2px 2px 2px 2px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u97020_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. visibility:hidden;
  2243. }
  2244. #u97021_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. #u97021 {
  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. #u97021 .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. #u97021_text {
  2284. border-width:0px;
  2285. word-wrap:break-word;
  2286. text-transform:none;
  2287. }
  2288. #u97022_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. #u97022 {
  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. #u97022 .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. #u97022_text {
  2330. border-width:0px;
  2331. white-space:nowrap;
  2332. text-transform:none;
  2333. }
  2334. #u97023_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. #u97023 {
  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. #u97023 .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. #u97023_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. }
  2378. #u97024_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. #u97024 {
  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. #u97024 .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. #u97024_text {
  2418. border-width:0px;
  2419. word-wrap:break-word;
  2420. text-transform:none;
  2421. }
  2422. #u97025_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. #u97025 {
  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. #u97025 .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. #u97025_text {
  2462. border-width:0px;
  2463. white-space:nowrap;
  2464. text-transform:none;
  2465. }
  2466. #u97026_div {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:1381px;
  2472. height:1154px;
  2473. background:inherit;
  2474. background-color:rgba(255, 255, 255, 1);
  2475. border:none;
  2476. border-radius:0px;
  2477. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2478. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2479. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2480. }
  2481. #u97026 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:330px;
  2485. top:50px;
  2486. width:1381px;
  2487. height:1154px;
  2488. display:flex;
  2489. }
  2490. #u97026 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 2px 2px 2px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u97026_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. visibility:hidden;
  2502. }
  2503. #u97027 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:668px;
  2507. top:252px;
  2508. width:1026px;
  2509. height:465px;
  2510. }
  2511. #u97028_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:157px;
  2517. height:41px;
  2518. }
  2519. #u97028 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:157px;
  2525. height:41px;
  2526. display:flex;
  2527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:12px;
  2531. color:#FFFFFF;
  2532. }
  2533. #u97028 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:2px 2px 2px 0px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u97028_text {
  2541. border-width:0px;
  2542. word-wrap:break-word;
  2543. text-transform:none;
  2544. }
  2545. #u97029_img {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:179px;
  2551. height:41px;
  2552. }
  2553. #u97029 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:157px;
  2557. top:0px;
  2558. width:179px;
  2559. height:41px;
  2560. display:flex;
  2561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:12px;
  2565. color:#FFFFFF;
  2566. }
  2567. #u97029 .text {
  2568. position:absolute;
  2569. align-self:center;
  2570. padding:2px 2px 2px 0px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u97029_text {
  2575. border-width:0px;
  2576. word-wrap:break-word;
  2577. text-transform:none;
  2578. }
  2579. #u97030_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:179px;
  2585. height:41px;
  2586. }
  2587. #u97030 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:336px;
  2591. top:0px;
  2592. width:179px;
  2593. height:41px;
  2594. display:flex;
  2595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:12px;
  2599. color:#FFFFFF;
  2600. }
  2601. #u97030 .text {
  2602. position:absolute;
  2603. align-self:center;
  2604. padding:2px 2px 2px 0px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u97030_text {
  2609. border-width:0px;
  2610. word-wrap:break-word;
  2611. text-transform:none;
  2612. }
  2613. #u97031_img {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:157px;
  2619. height:41px;
  2620. }
  2621. #u97031 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:515px;
  2625. top:0px;
  2626. width:157px;
  2627. height:41px;
  2628. display:flex;
  2629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2630. font-weight:400;
  2631. font-style:normal;
  2632. font-size:12px;
  2633. color:#FFFFFF;
  2634. }
  2635. #u97031 .text {
  2636. position:absolute;
  2637. align-self:center;
  2638. padding:2px 2px 2px 0px;
  2639. box-sizing:border-box;
  2640. width:100%;
  2641. }
  2642. #u97031_text {
  2643. border-width:0px;
  2644. word-wrap:break-word;
  2645. text-transform:none;
  2646. }
  2647. #u97032_img {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:179px;
  2653. height:41px;
  2654. }
  2655. #u97032 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:672px;
  2659. top:0px;
  2660. width:179px;
  2661. height:41px;
  2662. display:flex;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:12px;
  2667. color:#FFFFFF;
  2668. }
  2669. #u97032 .text {
  2670. position:absolute;
  2671. align-self:center;
  2672. padding:2px 2px 2px 0px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u97032_text {
  2677. border-width:0px;
  2678. word-wrap:break-word;
  2679. text-transform:none;
  2680. }
  2681. #u97033_img {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:0px;
  2685. top:0px;
  2686. width:175px;
  2687. height:41px;
  2688. }
  2689. #u97033 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:851px;
  2693. top:0px;
  2694. width:175px;
  2695. height:41px;
  2696. display:flex;
  2697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2698. font-weight:400;
  2699. font-style:normal;
  2700. font-size:12px;
  2701. color:#FFFFFF;
  2702. }
  2703. #u97033 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 0px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u97033_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. }
  2715. #u97034_img {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:157px;
  2721. height:39px;
  2722. }
  2723. #u97034 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:41px;
  2728. width:157px;
  2729. height:39px;
  2730. display:flex;
  2731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2732. font-weight:400;
  2733. font-style:normal;
  2734. font-size:12px;
  2735. }
  2736. #u97034 .text {
  2737. position:absolute;
  2738. align-self:center;
  2739. padding:2px 2px 2px 0px;
  2740. box-sizing:border-box;
  2741. width:100%;
  2742. }
  2743. #u97034_text {
  2744. border-width:0px;
  2745. word-wrap:break-word;
  2746. text-transform:none;
  2747. }
  2748. #u97035_img {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:179px;
  2754. height:39px;
  2755. }
  2756. #u97035 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:157px;
  2760. top:41px;
  2761. width:179px;
  2762. height:39px;
  2763. display:flex;
  2764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2765. font-weight:400;
  2766. font-style:normal;
  2767. font-size:12px;
  2768. }
  2769. #u97035 .text {
  2770. position:absolute;
  2771. align-self:center;
  2772. padding:2px 2px 2px 0px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u97035_text {
  2777. border-width:0px;
  2778. word-wrap:break-word;
  2779. text-transform:none;
  2780. }
  2781. #u97036_img {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:0px;
  2785. top:0px;
  2786. width:179px;
  2787. height:39px;
  2788. }
  2789. #u97036 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:336px;
  2793. top:41px;
  2794. width:179px;
  2795. height:39px;
  2796. display:flex;
  2797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2798. font-weight:400;
  2799. font-style:normal;
  2800. font-size:12px;
  2801. }
  2802. #u97036 .text {
  2803. position:absolute;
  2804. align-self:center;
  2805. padding:2px 2px 2px 0px;
  2806. box-sizing:border-box;
  2807. width:100%;
  2808. }
  2809. #u97036_text {
  2810. border-width:0px;
  2811. word-wrap:break-word;
  2812. text-transform:none;
  2813. }
  2814. #u97037_img {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:0px;
  2818. top:0px;
  2819. width:157px;
  2820. height:39px;
  2821. }
  2822. #u97037 {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:515px;
  2826. top:41px;
  2827. width:157px;
  2828. height:39px;
  2829. display:flex;
  2830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2831. font-weight:400;
  2832. font-style:normal;
  2833. font-size:12px;
  2834. }
  2835. #u97037 .text {
  2836. position:absolute;
  2837. align-self:center;
  2838. padding:2px 2px 2px 0px;
  2839. box-sizing:border-box;
  2840. width:100%;
  2841. }
  2842. #u97037_text {
  2843. border-width:0px;
  2844. word-wrap:break-word;
  2845. text-transform:none;
  2846. }
  2847. #u97038_img {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:179px;
  2853. height:39px;
  2854. }
  2855. #u97038 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:672px;
  2859. top:41px;
  2860. width:179px;
  2861. height:39px;
  2862. display:flex;
  2863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2864. font-weight:400;
  2865. font-style:normal;
  2866. font-size:12px;
  2867. }
  2868. #u97038 .text {
  2869. position:absolute;
  2870. align-self:center;
  2871. padding:2px 2px 2px 0px;
  2872. box-sizing:border-box;
  2873. width:100%;
  2874. }
  2875. #u97038_text {
  2876. border-width:0px;
  2877. word-wrap:break-word;
  2878. text-transform:none;
  2879. }
  2880. #u97039_img {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:175px;
  2886. height:39px;
  2887. }
  2888. #u97039 {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:851px;
  2892. top:41px;
  2893. width:175px;
  2894. height:39px;
  2895. display:flex;
  2896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2897. font-weight:400;
  2898. font-style:normal;
  2899. font-size:12px;
  2900. color:#1890FF;
  2901. }
  2902. #u97039 .text {
  2903. position:absolute;
  2904. align-self:center;
  2905. padding:2px 2px 2px 0px;
  2906. box-sizing:border-box;
  2907. width:100%;
  2908. }
  2909. #u97039_text {
  2910. border-width:0px;
  2911. word-wrap:break-word;
  2912. text-transform:none;
  2913. }
  2914. #u97040_img {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:157px;
  2920. height:35px;
  2921. }
  2922. #u97040 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:80px;
  2927. width:157px;
  2928. height:35px;
  2929. display:flex;
  2930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2931. font-weight:400;
  2932. font-style:normal;
  2933. font-size:12px;
  2934. }
  2935. #u97040 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:2px 2px 2px 0px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u97040_text {
  2943. border-width:0px;
  2944. word-wrap:break-word;
  2945. text-transform:none;
  2946. }
  2947. #u97041_img {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:0px;
  2951. top:0px;
  2952. width:179px;
  2953. height:35px;
  2954. }
  2955. #u97041 {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:157px;
  2959. top:80px;
  2960. width:179px;
  2961. height:35px;
  2962. display:flex;
  2963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2964. font-weight:400;
  2965. font-style:normal;
  2966. font-size:12px;
  2967. }
  2968. #u97041 .text {
  2969. position:absolute;
  2970. align-self:center;
  2971. padding:2px 2px 2px 0px;
  2972. box-sizing:border-box;
  2973. width:100%;
  2974. }
  2975. #u97041_text {
  2976. border-width:0px;
  2977. word-wrap:break-word;
  2978. text-transform:none;
  2979. }
  2980. #u97042_img {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:179px;
  2986. height:35px;
  2987. }
  2988. #u97042 {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:336px;
  2992. top:80px;
  2993. width:179px;
  2994. height:35px;
  2995. display:flex;
  2996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2997. font-weight:400;
  2998. font-style:normal;
  2999. font-size:12px;
  3000. }
  3001. #u97042 .text {
  3002. position:absolute;
  3003. align-self:center;
  3004. padding:2px 2px 2px 0px;
  3005. box-sizing:border-box;
  3006. width:100%;
  3007. }
  3008. #u97042_text {
  3009. border-width:0px;
  3010. word-wrap:break-word;
  3011. text-transform:none;
  3012. }
  3013. #u97043_img {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:0px;
  3017. top:0px;
  3018. width:157px;
  3019. height:35px;
  3020. }
  3021. #u97043 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:515px;
  3025. top:80px;
  3026. width:157px;
  3027. height:35px;
  3028. display:flex;
  3029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3030. font-weight:400;
  3031. font-style:normal;
  3032. font-size:12px;
  3033. }
  3034. #u97043 .text {
  3035. position:absolute;
  3036. align-self:center;
  3037. padding:2px 2px 2px 0px;
  3038. box-sizing:border-box;
  3039. width:100%;
  3040. }
  3041. #u97043_text {
  3042. border-width:0px;
  3043. word-wrap:break-word;
  3044. text-transform:none;
  3045. }
  3046. #u97044_img {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:179px;
  3052. height:35px;
  3053. }
  3054. #u97044 {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:672px;
  3058. top:80px;
  3059. width:179px;
  3060. height:35px;
  3061. display:flex;
  3062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3063. font-weight:400;
  3064. font-style:normal;
  3065. font-size:12px;
  3066. }
  3067. #u97044 .text {
  3068. position:absolute;
  3069. align-self:center;
  3070. padding:2px 2px 2px 0px;
  3071. box-sizing:border-box;
  3072. width:100%;
  3073. }
  3074. #u97044_text {
  3075. border-width:0px;
  3076. word-wrap:break-word;
  3077. text-transform:none;
  3078. }
  3079. #u97045_img {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:0px;
  3083. top:0px;
  3084. width:175px;
  3085. height:35px;
  3086. }
  3087. #u97045 {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:851px;
  3091. top:80px;
  3092. width:175px;
  3093. height:35px;
  3094. display:flex;
  3095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3096. font-weight:400;
  3097. font-style:normal;
  3098. font-size:12px;
  3099. color:#1890FF;
  3100. }
  3101. #u97045 .text {
  3102. position:absolute;
  3103. align-self:center;
  3104. padding:2px 2px 2px 0px;
  3105. box-sizing:border-box;
  3106. width:100%;
  3107. }
  3108. #u97045_text {
  3109. border-width:0px;
  3110. word-wrap:break-word;
  3111. text-transform:none;
  3112. }
  3113. #u97046_img {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:0px;
  3117. top:0px;
  3118. width:157px;
  3119. height:35px;
  3120. }
  3121. #u97046 {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:115px;
  3126. width:157px;
  3127. height:35px;
  3128. display:flex;
  3129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3130. font-weight:400;
  3131. font-style:normal;
  3132. font-size:12px;
  3133. }
  3134. #u97046 .text {
  3135. position:absolute;
  3136. align-self:center;
  3137. padding:2px 2px 2px 0px;
  3138. box-sizing:border-box;
  3139. width:100%;
  3140. }
  3141. #u97046_text {
  3142. border-width:0px;
  3143. word-wrap:break-word;
  3144. text-transform:none;
  3145. }
  3146. #u97047_img {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:0px;
  3151. width:179px;
  3152. height:35px;
  3153. }
  3154. #u97047 {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:157px;
  3158. top:115px;
  3159. width:179px;
  3160. height:35px;
  3161. display:flex;
  3162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3163. font-weight:400;
  3164. font-style:normal;
  3165. font-size:12px;
  3166. }
  3167. #u97047 .text {
  3168. position:absolute;
  3169. align-self:center;
  3170. padding:2px 2px 2px 0px;
  3171. box-sizing:border-box;
  3172. width:100%;
  3173. }
  3174. #u97047_text {
  3175. border-width:0px;
  3176. word-wrap:break-word;
  3177. text-transform:none;
  3178. }
  3179. #u97048_img {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:179px;
  3185. height:35px;
  3186. }
  3187. #u97048 {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:336px;
  3191. top:115px;
  3192. width:179px;
  3193. height:35px;
  3194. display:flex;
  3195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3196. font-weight:400;
  3197. font-style:normal;
  3198. font-size:12px;
  3199. }
  3200. #u97048 .text {
  3201. position:absolute;
  3202. align-self:center;
  3203. padding:2px 2px 2px 0px;
  3204. box-sizing:border-box;
  3205. width:100%;
  3206. }
  3207. #u97048_text {
  3208. border-width:0px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. }
  3212. #u97049_img {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:157px;
  3218. height:35px;
  3219. }
  3220. #u97049 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:515px;
  3224. top:115px;
  3225. width:157px;
  3226. height:35px;
  3227. display:flex;
  3228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3229. font-weight:400;
  3230. font-style:normal;
  3231. font-size:12px;
  3232. }
  3233. #u97049 .text {
  3234. position:absolute;
  3235. align-self:center;
  3236. padding:2px 2px 2px 0px;
  3237. box-sizing:border-box;
  3238. width:100%;
  3239. }
  3240. #u97049_text {
  3241. border-width:0px;
  3242. word-wrap:break-word;
  3243. text-transform:none;
  3244. }
  3245. #u97050_img {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:179px;
  3251. height:35px;
  3252. }
  3253. #u97050 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:672px;
  3257. top:115px;
  3258. width:179px;
  3259. height:35px;
  3260. display:flex;
  3261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3262. font-weight:400;
  3263. font-style:normal;
  3264. font-size:12px;
  3265. }
  3266. #u97050 .text {
  3267. position:absolute;
  3268. align-self:center;
  3269. padding:2px 2px 2px 0px;
  3270. box-sizing:border-box;
  3271. width:100%;
  3272. }
  3273. #u97050_text {
  3274. border-width:0px;
  3275. word-wrap:break-word;
  3276. text-transform:none;
  3277. }
  3278. #u97051_img {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:175px;
  3284. height:35px;
  3285. }
  3286. #u97051 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:851px;
  3290. top:115px;
  3291. width:175px;
  3292. height:35px;
  3293. display:flex;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:12px;
  3298. color:#1890FF;
  3299. }
  3300. #u97051 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:2px 2px 2px 0px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u97051_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. }
  3312. #u97052_img {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:157px;
  3318. height:34px;
  3319. }
  3320. #u97052 {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:0px;
  3324. top:150px;
  3325. width:157px;
  3326. height:34px;
  3327. display:flex;
  3328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3329. font-weight:400;
  3330. font-style:normal;
  3331. font-size:12px;
  3332. }
  3333. #u97052 .text {
  3334. position:absolute;
  3335. align-self:center;
  3336. padding:2px 2px 2px 0px;
  3337. box-sizing:border-box;
  3338. width:100%;
  3339. }
  3340. #u97052_text {
  3341. border-width:0px;
  3342. word-wrap:break-word;
  3343. text-transform:none;
  3344. }
  3345. #u97053_img {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:179px;
  3351. height:34px;
  3352. }
  3353. #u97053 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:157px;
  3357. top:150px;
  3358. width:179px;
  3359. height:34px;
  3360. display:flex;
  3361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3362. font-weight:400;
  3363. font-style:normal;
  3364. font-size:12px;
  3365. }
  3366. #u97053 .text {
  3367. position:absolute;
  3368. align-self:center;
  3369. padding:2px 2px 2px 0px;
  3370. box-sizing:border-box;
  3371. width:100%;
  3372. }
  3373. #u97053_text {
  3374. border-width:0px;
  3375. word-wrap:break-word;
  3376. text-transform:none;
  3377. }
  3378. #u97054_img {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:0px;
  3382. top:0px;
  3383. width:179px;
  3384. height:34px;
  3385. }
  3386. #u97054 {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:336px;
  3390. top:150px;
  3391. width:179px;
  3392. height:34px;
  3393. display:flex;
  3394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3395. font-weight:400;
  3396. font-style:normal;
  3397. font-size:12px;
  3398. }
  3399. #u97054 .text {
  3400. position:absolute;
  3401. align-self:center;
  3402. padding:2px 2px 2px 0px;
  3403. box-sizing:border-box;
  3404. width:100%;
  3405. }
  3406. #u97054_text {
  3407. border-width:0px;
  3408. word-wrap:break-word;
  3409. text-transform:none;
  3410. }
  3411. #u97055_img {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:0px;
  3415. top:0px;
  3416. width:157px;
  3417. height:34px;
  3418. }
  3419. #u97055 {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:515px;
  3423. top:150px;
  3424. width:157px;
  3425. height:34px;
  3426. display:flex;
  3427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3428. font-weight:400;
  3429. font-style:normal;
  3430. font-size:12px;
  3431. }
  3432. #u97055 .text {
  3433. position:absolute;
  3434. align-self:center;
  3435. padding:2px 2px 2px 0px;
  3436. box-sizing:border-box;
  3437. width:100%;
  3438. }
  3439. #u97055_text {
  3440. border-width:0px;
  3441. word-wrap:break-word;
  3442. text-transform:none;
  3443. }
  3444. #u97056_img {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:0px;
  3448. top:0px;
  3449. width:179px;
  3450. height:34px;
  3451. }
  3452. #u97056 {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:672px;
  3456. top:150px;
  3457. width:179px;
  3458. height:34px;
  3459. display:flex;
  3460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3461. font-weight:400;
  3462. font-style:normal;
  3463. font-size:12px;
  3464. }
  3465. #u97056 .text {
  3466. position:absolute;
  3467. align-self:center;
  3468. padding:2px 2px 2px 0px;
  3469. box-sizing:border-box;
  3470. width:100%;
  3471. }
  3472. #u97056_text {
  3473. border-width:0px;
  3474. word-wrap:break-word;
  3475. text-transform:none;
  3476. }
  3477. #u97057_img {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:175px;
  3483. height:34px;
  3484. }
  3485. #u97057 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:851px;
  3489. top:150px;
  3490. width:175px;
  3491. height:34px;
  3492. display:flex;
  3493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3494. font-weight:400;
  3495. font-style:normal;
  3496. font-size:12px;
  3497. color:#1890FF;
  3498. }
  3499. #u97057 .text {
  3500. position:absolute;
  3501. align-self:center;
  3502. padding:2px 2px 2px 0px;
  3503. box-sizing:border-box;
  3504. width:100%;
  3505. }
  3506. #u97057_text {
  3507. border-width:0px;
  3508. word-wrap:break-word;
  3509. text-transform:none;
  3510. }
  3511. #u97058_img {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:157px;
  3517. height:36px;
  3518. }
  3519. #u97058 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:184px;
  3524. width:157px;
  3525. height:36px;
  3526. display:flex;
  3527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3528. font-weight:400;
  3529. font-style:normal;
  3530. font-size:12px;
  3531. }
  3532. #u97058 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 2px 2px 0px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u97058_text {
  3540. border-width:0px;
  3541. word-wrap:break-word;
  3542. text-transform:none;
  3543. visibility:hidden;
  3544. }
  3545. #u97059_img {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:179px;
  3551. height:36px;
  3552. }
  3553. #u97059 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:157px;
  3557. top:184px;
  3558. width:179px;
  3559. height:36px;
  3560. display:flex;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:12px;
  3565. }
  3566. #u97059 .text {
  3567. position:absolute;
  3568. align-self:center;
  3569. padding:2px 2px 2px 0px;
  3570. box-sizing:border-box;
  3571. width:100%;
  3572. }
  3573. #u97059_text {
  3574. border-width:0px;
  3575. word-wrap:break-word;
  3576. text-transform:none;
  3577. visibility:hidden;
  3578. }
  3579. #u97060_img {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:179px;
  3585. height:36px;
  3586. }
  3587. #u97060 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:336px;
  3591. top:184px;
  3592. width:179px;
  3593. height:36px;
  3594. display:flex;
  3595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3596. font-weight:400;
  3597. font-style:normal;
  3598. font-size:12px;
  3599. }
  3600. #u97060 .text {
  3601. position:absolute;
  3602. align-self:center;
  3603. padding:2px 2px 2px 0px;
  3604. box-sizing:border-box;
  3605. width:100%;
  3606. }
  3607. #u97060_text {
  3608. border-width:0px;
  3609. word-wrap:break-word;
  3610. text-transform:none;
  3611. visibility:hidden;
  3612. }
  3613. #u97061_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:157px;
  3619. height:36px;
  3620. }
  3621. #u97061 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:515px;
  3625. top:184px;
  3626. width:157px;
  3627. height:36px;
  3628. display:flex;
  3629. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:12px;
  3633. }
  3634. #u97061 .text {
  3635. position:absolute;
  3636. align-self:center;
  3637. padding:2px 2px 2px 0px;
  3638. box-sizing:border-box;
  3639. width:100%;
  3640. }
  3641. #u97061_text {
  3642. border-width:0px;
  3643. word-wrap:break-word;
  3644. text-transform:none;
  3645. visibility:hidden;
  3646. }
  3647. #u97062_img {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:179px;
  3653. height:36px;
  3654. }
  3655. #u97062 {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:672px;
  3659. top:184px;
  3660. width:179px;
  3661. height:36px;
  3662. display:flex;
  3663. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3664. font-weight:400;
  3665. font-style:normal;
  3666. font-size:12px;
  3667. }
  3668. #u97062 .text {
  3669. position:absolute;
  3670. align-self:center;
  3671. padding:2px 2px 2px 0px;
  3672. box-sizing:border-box;
  3673. width:100%;
  3674. }
  3675. #u97062_text {
  3676. border-width:0px;
  3677. word-wrap:break-word;
  3678. text-transform:none;
  3679. visibility:hidden;
  3680. }
  3681. #u97063_img {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:175px;
  3687. height:36px;
  3688. }
  3689. #u97063 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:851px;
  3693. top:184px;
  3694. width:175px;
  3695. height:36px;
  3696. display:flex;
  3697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3698. font-weight:400;
  3699. font-style:normal;
  3700. font-size:12px;
  3701. color:#1890FF;
  3702. }
  3703. #u97063 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 2px 2px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u97063_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. visibility:hidden;
  3715. }
  3716. #u97064_img {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:157px;
  3722. height:35px;
  3723. }
  3724. #u97064 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:220px;
  3729. width:157px;
  3730. height:35px;
  3731. display:flex;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:12px;
  3736. }
  3737. #u97064 .text {
  3738. position:absolute;
  3739. align-self:center;
  3740. padding:2px 2px 2px 0px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u97064_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. visibility:hidden;
  3749. }
  3750. #u97065_img {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:179px;
  3756. height:35px;
  3757. }
  3758. #u97065 {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:157px;
  3762. top:220px;
  3763. width:179px;
  3764. height:35px;
  3765. display:flex;
  3766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3767. font-weight:400;
  3768. font-style:normal;
  3769. font-size:12px;
  3770. }
  3771. #u97065 .text {
  3772. position:absolute;
  3773. align-self:center;
  3774. padding:2px 2px 2px 0px;
  3775. box-sizing:border-box;
  3776. width:100%;
  3777. }
  3778. #u97065_text {
  3779. border-width:0px;
  3780. word-wrap:break-word;
  3781. text-transform:none;
  3782. visibility:hidden;
  3783. }
  3784. #u97066_img {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:0px;
  3788. top:0px;
  3789. width:179px;
  3790. height:35px;
  3791. }
  3792. #u97066 {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:336px;
  3796. top:220px;
  3797. width:179px;
  3798. height:35px;
  3799. display:flex;
  3800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. font-size:12px;
  3804. }
  3805. #u97066 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 0px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u97066_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u97067_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:157px;
  3824. height:35px;
  3825. }
  3826. #u97067 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:515px;
  3830. top:220px;
  3831. width:157px;
  3832. height:35px;
  3833. display:flex;
  3834. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:12px;
  3838. }
  3839. #u97067 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 0px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u97067_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u97068_img {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:179px;
  3858. height:35px;
  3859. }
  3860. #u97068 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:672px;
  3864. top:220px;
  3865. width:179px;
  3866. height:35px;
  3867. display:flex;
  3868. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. font-size:12px;
  3872. }
  3873. #u97068 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 0px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u97068_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u97069_img {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:175px;
  3892. height:35px;
  3893. }
  3894. #u97069 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:851px;
  3898. top:220px;
  3899. width:175px;
  3900. height:35px;
  3901. display:flex;
  3902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3903. font-weight:400;
  3904. font-style:normal;
  3905. font-size:12px;
  3906. color:#1890FF;
  3907. }
  3908. #u97069 .text {
  3909. position:absolute;
  3910. align-self:center;
  3911. padding:2px 2px 2px 0px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u97069_text {
  3916. border-width:0px;
  3917. word-wrap:break-word;
  3918. text-transform:none;
  3919. visibility:hidden;
  3920. }
  3921. #u97070_img {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:157px;
  3927. height:35px;
  3928. }
  3929. #u97070 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:255px;
  3934. width:157px;
  3935. height:35px;
  3936. display:flex;
  3937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3938. font-weight:400;
  3939. font-style:normal;
  3940. font-size:12px;
  3941. }
  3942. #u97070 .text {
  3943. position:absolute;
  3944. align-self:center;
  3945. padding:2px 2px 2px 0px;
  3946. box-sizing:border-box;
  3947. width:100%;
  3948. }
  3949. #u97070_text {
  3950. border-width:0px;
  3951. word-wrap:break-word;
  3952. text-transform:none;
  3953. visibility:hidden;
  3954. }
  3955. #u97071_img {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:179px;
  3961. height:35px;
  3962. }
  3963. #u97071 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:157px;
  3967. top:255px;
  3968. width:179px;
  3969. height:35px;
  3970. display:flex;
  3971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. font-size:12px;
  3975. }
  3976. #u97071 .text {
  3977. position:absolute;
  3978. align-self:center;
  3979. padding:2px 2px 2px 0px;
  3980. box-sizing:border-box;
  3981. width:100%;
  3982. }
  3983. #u97071_text {
  3984. border-width:0px;
  3985. word-wrap:break-word;
  3986. text-transform:none;
  3987. visibility:hidden;
  3988. }
  3989. #u97072_img {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:179px;
  3995. height:35px;
  3996. }
  3997. #u97072 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:336px;
  4001. top:255px;
  4002. width:179px;
  4003. height:35px;
  4004. display:flex;
  4005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4006. font-weight:400;
  4007. font-style:normal;
  4008. font-size:12px;
  4009. }
  4010. #u97072 .text {
  4011. position:absolute;
  4012. align-self:center;
  4013. padding:2px 2px 2px 0px;
  4014. box-sizing:border-box;
  4015. width:100%;
  4016. }
  4017. #u97072_text {
  4018. border-width:0px;
  4019. word-wrap:break-word;
  4020. text-transform:none;
  4021. visibility:hidden;
  4022. }
  4023. #u97073_img {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:0px;
  4027. top:0px;
  4028. width:157px;
  4029. height:35px;
  4030. }
  4031. #u97073 {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:515px;
  4035. top:255px;
  4036. width:157px;
  4037. height:35px;
  4038. display:flex;
  4039. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4040. font-weight:400;
  4041. font-style:normal;
  4042. font-size:12px;
  4043. }
  4044. #u97073 .text {
  4045. position:absolute;
  4046. align-self:center;
  4047. padding:2px 2px 2px 0px;
  4048. box-sizing:border-box;
  4049. width:100%;
  4050. }
  4051. #u97073_text {
  4052. border-width:0px;
  4053. word-wrap:break-word;
  4054. text-transform:none;
  4055. visibility:hidden;
  4056. }
  4057. #u97074_img {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:0px;
  4061. top:0px;
  4062. width:179px;
  4063. height:35px;
  4064. }
  4065. #u97074 {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:672px;
  4069. top:255px;
  4070. width:179px;
  4071. height:35px;
  4072. display:flex;
  4073. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4074. font-weight:400;
  4075. font-style:normal;
  4076. font-size:12px;
  4077. }
  4078. #u97074 .text {
  4079. position:absolute;
  4080. align-self:center;
  4081. padding:2px 2px 2px 0px;
  4082. box-sizing:border-box;
  4083. width:100%;
  4084. }
  4085. #u97074_text {
  4086. border-width:0px;
  4087. word-wrap:break-word;
  4088. text-transform:none;
  4089. visibility:hidden;
  4090. }
  4091. #u97075_img {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:0px;
  4095. top:0px;
  4096. width:175px;
  4097. height:35px;
  4098. }
  4099. #u97075 {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:851px;
  4103. top:255px;
  4104. width:175px;
  4105. height:35px;
  4106. display:flex;
  4107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4108. font-weight:400;
  4109. font-style:normal;
  4110. font-size:12px;
  4111. color:#1890FF;
  4112. }
  4113. #u97075 .text {
  4114. position:absolute;
  4115. align-self:center;
  4116. padding:2px 2px 2px 0px;
  4117. box-sizing:border-box;
  4118. width:100%;
  4119. }
  4120. #u97075_text {
  4121. border-width:0px;
  4122. word-wrap:break-word;
  4123. text-transform:none;
  4124. visibility:hidden;
  4125. }
  4126. #u97076_img {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:157px;
  4132. height:35px;
  4133. }
  4134. #u97076 {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:0px;
  4138. top:290px;
  4139. width:157px;
  4140. height:35px;
  4141. display:flex;
  4142. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4143. font-weight:400;
  4144. font-style:normal;
  4145. font-size:12px;
  4146. color:#606266;
  4147. }
  4148. #u97076 .text {
  4149. position:absolute;
  4150. align-self:center;
  4151. padding:2px 2px 2px 0px;
  4152. box-sizing:border-box;
  4153. width:100%;
  4154. }
  4155. #u97076_text {
  4156. border-width:0px;
  4157. word-wrap:break-word;
  4158. text-transform:none;
  4159. visibility:hidden;
  4160. }
  4161. #u97077_img {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:179px;
  4167. height:35px;
  4168. }
  4169. #u97077 {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:157px;
  4173. top:290px;
  4174. width:179px;
  4175. height:35px;
  4176. display:flex;
  4177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4178. font-weight:400;
  4179. font-style:normal;
  4180. font-size:12px;
  4181. }
  4182. #u97077 .text {
  4183. position:absolute;
  4184. align-self:center;
  4185. padding:2px 2px 2px 0px;
  4186. box-sizing:border-box;
  4187. width:100%;
  4188. }
  4189. #u97077_text {
  4190. border-width:0px;
  4191. word-wrap:break-word;
  4192. text-transform:none;
  4193. visibility:hidden;
  4194. }
  4195. #u97078_img {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:179px;
  4201. height:35px;
  4202. }
  4203. #u97078 {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:336px;
  4207. top:290px;
  4208. width:179px;
  4209. height:35px;
  4210. display:flex;
  4211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4212. font-weight:400;
  4213. font-style:normal;
  4214. font-size:12px;
  4215. }
  4216. #u97078 .text {
  4217. position:absolute;
  4218. align-self:center;
  4219. padding:2px 2px 2px 0px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u97078_text {
  4224. border-width:0px;
  4225. word-wrap:break-word;
  4226. text-transform:none;
  4227. visibility:hidden;
  4228. }
  4229. #u97079_img {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:157px;
  4235. height:35px;
  4236. }
  4237. #u97079 {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:515px;
  4241. top:290px;
  4242. width:157px;
  4243. height:35px;
  4244. display:flex;
  4245. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4246. font-weight:400;
  4247. font-style:normal;
  4248. font-size:12px;
  4249. color:#606266;
  4250. }
  4251. #u97079 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:2px 2px 2px 0px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u97079_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. visibility:hidden;
  4263. }
  4264. #u97080_img {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:179px;
  4270. height:35px;
  4271. }
  4272. #u97080 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:672px;
  4276. top:290px;
  4277. width:179px;
  4278. height:35px;
  4279. display:flex;
  4280. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4281. font-weight:400;
  4282. font-style:normal;
  4283. font-size:12px;
  4284. color:#606266;
  4285. }
  4286. #u97080 .text {
  4287. position:absolute;
  4288. align-self:center;
  4289. padding:2px 2px 2px 0px;
  4290. box-sizing:border-box;
  4291. width:100%;
  4292. }
  4293. #u97080_text {
  4294. border-width:0px;
  4295. word-wrap:break-word;
  4296. text-transform:none;
  4297. visibility:hidden;
  4298. }
  4299. #u97081_img {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:175px;
  4305. height:35px;
  4306. }
  4307. #u97081 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:851px;
  4311. top:290px;
  4312. width:175px;
  4313. height:35px;
  4314. display:flex;
  4315. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4316. font-weight:400;
  4317. font-style:normal;
  4318. font-size:12px;
  4319. color:#606266;
  4320. }
  4321. #u97081 .text {
  4322. position:absolute;
  4323. align-self:center;
  4324. padding:2px 2px 2px 0px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u97081_text {
  4329. border-width:0px;
  4330. word-wrap:break-word;
  4331. text-transform:none;
  4332. visibility:hidden;
  4333. }
  4334. #u97082_img {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:0px;
  4338. top:0px;
  4339. width:157px;
  4340. height:35px;
  4341. }
  4342. #u97082 {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:0px;
  4346. top:325px;
  4347. width:157px;
  4348. height:35px;
  4349. display:flex;
  4350. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4351. font-weight:400;
  4352. font-style:normal;
  4353. font-size:12px;
  4354. color:#606266;
  4355. }
  4356. #u97082 .text {
  4357. position:absolute;
  4358. align-self:center;
  4359. padding:2px 2px 2px 0px;
  4360. box-sizing:border-box;
  4361. width:100%;
  4362. }
  4363. #u97082_text {
  4364. border-width:0px;
  4365. word-wrap:break-word;
  4366. text-transform:none;
  4367. visibility:hidden;
  4368. }
  4369. #u97083_img {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:179px;
  4375. height:35px;
  4376. }
  4377. #u97083 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:157px;
  4381. top:325px;
  4382. width:179px;
  4383. height:35px;
  4384. display:flex;
  4385. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4386. font-weight:400;
  4387. font-style:normal;
  4388. font-size:12px;
  4389. color:#606266;
  4390. }
  4391. #u97083 .text {
  4392. position:absolute;
  4393. align-self:center;
  4394. padding:2px 2px 2px 0px;
  4395. box-sizing:border-box;
  4396. width:100%;
  4397. }
  4398. #u97083_text {
  4399. border-width:0px;
  4400. word-wrap:break-word;
  4401. text-transform:none;
  4402. visibility:hidden;
  4403. }
  4404. #u97084_img {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:179px;
  4410. height:35px;
  4411. }
  4412. #u97084 {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:336px;
  4416. top:325px;
  4417. width:179px;
  4418. height:35px;
  4419. display:flex;
  4420. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4421. font-weight:400;
  4422. font-style:normal;
  4423. font-size:12px;
  4424. color:#606266;
  4425. }
  4426. #u97084 .text {
  4427. position:absolute;
  4428. align-self:center;
  4429. padding:2px 2px 2px 0px;
  4430. box-sizing:border-box;
  4431. width:100%;
  4432. }
  4433. #u97084_text {
  4434. border-width:0px;
  4435. word-wrap:break-word;
  4436. text-transform:none;
  4437. visibility:hidden;
  4438. }
  4439. #u97085_img {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:0px;
  4443. top:0px;
  4444. width:157px;
  4445. height:35px;
  4446. }
  4447. #u97085 {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:515px;
  4451. top:325px;
  4452. width:157px;
  4453. height:35px;
  4454. display:flex;
  4455. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:12px;
  4459. color:#606266;
  4460. }
  4461. #u97085 .text {
  4462. position:absolute;
  4463. align-self:center;
  4464. padding:2px 2px 2px 0px;
  4465. box-sizing:border-box;
  4466. width:100%;
  4467. }
  4468. #u97085_text {
  4469. border-width:0px;
  4470. word-wrap:break-word;
  4471. text-transform:none;
  4472. visibility:hidden;
  4473. }
  4474. #u97086_img {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:179px;
  4480. height:35px;
  4481. }
  4482. #u97086 {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:672px;
  4486. top:325px;
  4487. width:179px;
  4488. height:35px;
  4489. display:flex;
  4490. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4491. font-weight:400;
  4492. font-style:normal;
  4493. font-size:12px;
  4494. color:#606266;
  4495. }
  4496. #u97086 .text {
  4497. position:absolute;
  4498. align-self:center;
  4499. padding:2px 2px 2px 0px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u97086_text {
  4504. border-width:0px;
  4505. word-wrap:break-word;
  4506. text-transform:none;
  4507. visibility:hidden;
  4508. }
  4509. #u97087_img {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:175px;
  4515. height:35px;
  4516. }
  4517. #u97087 {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:851px;
  4521. top:325px;
  4522. width:175px;
  4523. height:35px;
  4524. display:flex;
  4525. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4526. font-weight:400;
  4527. font-style:normal;
  4528. font-size:12px;
  4529. color:#606266;
  4530. }
  4531. #u97087 .text {
  4532. position:absolute;
  4533. align-self:center;
  4534. padding:2px 2px 2px 0px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u97087_text {
  4539. border-width:0px;
  4540. word-wrap:break-word;
  4541. text-transform:none;
  4542. visibility:hidden;
  4543. }
  4544. #u97088_img {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:157px;
  4550. height:35px;
  4551. }
  4552. #u97088 {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:360px;
  4557. width:157px;
  4558. height:35px;
  4559. display:flex;
  4560. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4561. font-weight:400;
  4562. font-style:normal;
  4563. font-size:12px;
  4564. color:#606266;
  4565. }
  4566. #u97088 .text {
  4567. position:absolute;
  4568. align-self:center;
  4569. padding:2px 2px 2px 0px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u97088_text {
  4574. border-width:0px;
  4575. word-wrap:break-word;
  4576. text-transform:none;
  4577. visibility:hidden;
  4578. }
  4579. #u97089_img {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:179px;
  4585. height:35px;
  4586. }
  4587. #u97089 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:157px;
  4591. top:360px;
  4592. width:179px;
  4593. height:35px;
  4594. display:flex;
  4595. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4596. font-weight:400;
  4597. font-style:normal;
  4598. font-size:12px;
  4599. color:#606266;
  4600. }
  4601. #u97089 .text {
  4602. position:absolute;
  4603. align-self:center;
  4604. padding:2px 2px 2px 0px;
  4605. box-sizing:border-box;
  4606. width:100%;
  4607. }
  4608. #u97089_text {
  4609. border-width:0px;
  4610. word-wrap:break-word;
  4611. text-transform:none;
  4612. visibility:hidden;
  4613. }
  4614. #u97090_img {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:179px;
  4620. height:35px;
  4621. }
  4622. #u97090 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:336px;
  4626. top:360px;
  4627. width:179px;
  4628. height:35px;
  4629. display:flex;
  4630. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:12px;
  4634. color:#606266;
  4635. }
  4636. #u97090 .text {
  4637. position:absolute;
  4638. align-self:center;
  4639. padding:2px 2px 2px 0px;
  4640. box-sizing:border-box;
  4641. width:100%;
  4642. }
  4643. #u97090_text {
  4644. border-width:0px;
  4645. word-wrap:break-word;
  4646. text-transform:none;
  4647. visibility:hidden;
  4648. }
  4649. #u97091_img {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:157px;
  4655. height:35px;
  4656. }
  4657. #u97091 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:515px;
  4661. top:360px;
  4662. width:157px;
  4663. height:35px;
  4664. display:flex;
  4665. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4666. font-weight:400;
  4667. font-style:normal;
  4668. font-size:12px;
  4669. color:#606266;
  4670. }
  4671. #u97091 .text {
  4672. position:absolute;
  4673. align-self:center;
  4674. padding:2px 2px 2px 0px;
  4675. box-sizing:border-box;
  4676. width:100%;
  4677. }
  4678. #u97091_text {
  4679. border-width:0px;
  4680. word-wrap:break-word;
  4681. text-transform:none;
  4682. visibility:hidden;
  4683. }
  4684. #u97092_img {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:0px;
  4688. top:0px;
  4689. width:179px;
  4690. height:35px;
  4691. }
  4692. #u97092 {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:672px;
  4696. top:360px;
  4697. width:179px;
  4698. height:35px;
  4699. display:flex;
  4700. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4701. font-weight:400;
  4702. font-style:normal;
  4703. font-size:12px;
  4704. color:#606266;
  4705. }
  4706. #u97092 .text {
  4707. position:absolute;
  4708. align-self:center;
  4709. padding:2px 2px 2px 0px;
  4710. box-sizing:border-box;
  4711. width:100%;
  4712. }
  4713. #u97092_text {
  4714. border-width:0px;
  4715. word-wrap:break-word;
  4716. text-transform:none;
  4717. visibility:hidden;
  4718. }
  4719. #u97093_img {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:175px;
  4725. height:35px;
  4726. }
  4727. #u97093 {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:851px;
  4731. top:360px;
  4732. width:175px;
  4733. height:35px;
  4734. display:flex;
  4735. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4736. font-weight:400;
  4737. font-style:normal;
  4738. font-size:12px;
  4739. color:#606266;
  4740. }
  4741. #u97093 .text {
  4742. position:absolute;
  4743. align-self:center;
  4744. padding:2px 2px 2px 0px;
  4745. box-sizing:border-box;
  4746. width:100%;
  4747. }
  4748. #u97093_text {
  4749. border-width:0px;
  4750. word-wrap:break-word;
  4751. text-transform:none;
  4752. visibility:hidden;
  4753. }
  4754. #u97094_img {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:157px;
  4760. height:35px;
  4761. }
  4762. #u97094 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:0px;
  4766. top:395px;
  4767. width:157px;
  4768. height:35px;
  4769. display:flex;
  4770. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:12px;
  4774. color:#606266;
  4775. }
  4776. #u97094 .text {
  4777. position:absolute;
  4778. align-self:center;
  4779. padding:2px 2px 2px 0px;
  4780. box-sizing:border-box;
  4781. width:100%;
  4782. }
  4783. #u97094_text {
  4784. border-width:0px;
  4785. word-wrap:break-word;
  4786. text-transform:none;
  4787. visibility:hidden;
  4788. }
  4789. #u97095_img {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:0px;
  4793. top:0px;
  4794. width:179px;
  4795. height:35px;
  4796. }
  4797. #u97095 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:157px;
  4801. top:395px;
  4802. width:179px;
  4803. height:35px;
  4804. display:flex;
  4805. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4806. font-weight:400;
  4807. font-style:normal;
  4808. font-size:12px;
  4809. color:#606266;
  4810. }
  4811. #u97095 .text {
  4812. position:absolute;
  4813. align-self:center;
  4814. padding:2px 2px 2px 0px;
  4815. box-sizing:border-box;
  4816. width:100%;
  4817. }
  4818. #u97095_text {
  4819. border-width:0px;
  4820. word-wrap:break-word;
  4821. text-transform:none;
  4822. visibility:hidden;
  4823. }
  4824. #u97096_img {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:0px;
  4829. width:179px;
  4830. height:35px;
  4831. }
  4832. #u97096 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:336px;
  4836. top:395px;
  4837. width:179px;
  4838. height:35px;
  4839. display:flex;
  4840. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4841. font-weight:400;
  4842. font-style:normal;
  4843. font-size:12px;
  4844. color:#606266;
  4845. }
  4846. #u97096 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:2px 2px 2px 0px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u97096_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. visibility:hidden;
  4858. }
  4859. #u97097_img {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:157px;
  4865. height:35px;
  4866. }
  4867. #u97097 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:515px;
  4871. top:395px;
  4872. width:157px;
  4873. height:35px;
  4874. display:flex;
  4875. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:12px;
  4879. color:#606266;
  4880. }
  4881. #u97097 .text {
  4882. position:absolute;
  4883. align-self:center;
  4884. padding:2px 2px 2px 0px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u97097_text {
  4889. border-width:0px;
  4890. word-wrap:break-word;
  4891. text-transform:none;
  4892. visibility:hidden;
  4893. }
  4894. #u97098_img {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:179px;
  4900. height:35px;
  4901. }
  4902. #u97098 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:672px;
  4906. top:395px;
  4907. width:179px;
  4908. height:35px;
  4909. display:flex;
  4910. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4911. font-weight:400;
  4912. font-style:normal;
  4913. font-size:12px;
  4914. color:#606266;
  4915. }
  4916. #u97098 .text {
  4917. position:absolute;
  4918. align-self:center;
  4919. padding:2px 2px 2px 0px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u97098_text {
  4924. border-width:0px;
  4925. word-wrap:break-word;
  4926. text-transform:none;
  4927. visibility:hidden;
  4928. }
  4929. #u97099_img {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:175px;
  4935. height:35px;
  4936. }
  4937. #u97099 {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:851px;
  4941. top:395px;
  4942. width:175px;
  4943. height:35px;
  4944. display:flex;
  4945. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4946. font-weight:400;
  4947. font-style:normal;
  4948. font-size:12px;
  4949. color:#606266;
  4950. }
  4951. #u97099 .text {
  4952. position:absolute;
  4953. align-self:center;
  4954. padding:2px 2px 2px 0px;
  4955. box-sizing:border-box;
  4956. width:100%;
  4957. }
  4958. #u97099_text {
  4959. border-width:0px;
  4960. word-wrap:break-word;
  4961. text-transform:none;
  4962. visibility:hidden;
  4963. }
  4964. #u97100_img {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:0px;
  4968. top:0px;
  4969. width:157px;
  4970. height:35px;
  4971. }
  4972. #u97100 {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:0px;
  4976. top:430px;
  4977. width:157px;
  4978. height:35px;
  4979. display:flex;
  4980. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4981. font-weight:400;
  4982. font-style:normal;
  4983. font-size:12px;
  4984. color:#606266;
  4985. }
  4986. #u97100 .text {
  4987. position:absolute;
  4988. align-self:center;
  4989. padding:2px 2px 2px 0px;
  4990. box-sizing:border-box;
  4991. width:100%;
  4992. }
  4993. #u97100_text {
  4994. border-width:0px;
  4995. word-wrap:break-word;
  4996. text-transform:none;
  4997. visibility:hidden;
  4998. }
  4999. #u97101_img {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:0px;
  5003. top:0px;
  5004. width:179px;
  5005. height:35px;
  5006. }
  5007. #u97101 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:157px;
  5011. top:430px;
  5012. width:179px;
  5013. height:35px;
  5014. display:flex;
  5015. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. font-size:12px;
  5019. color:#606266;
  5020. }
  5021. #u97101 .text {
  5022. position:absolute;
  5023. align-self:center;
  5024. padding:2px 2px 2px 0px;
  5025. box-sizing:border-box;
  5026. width:100%;
  5027. }
  5028. #u97101_text {
  5029. border-width:0px;
  5030. word-wrap:break-word;
  5031. text-transform:none;
  5032. visibility:hidden;
  5033. }
  5034. #u97102_img {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:0px;
  5038. top:0px;
  5039. width:179px;
  5040. height:35px;
  5041. }
  5042. #u97102 {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:336px;
  5046. top:430px;
  5047. width:179px;
  5048. height:35px;
  5049. display:flex;
  5050. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5051. font-weight:400;
  5052. font-style:normal;
  5053. font-size:12px;
  5054. color:#606266;
  5055. }
  5056. #u97102 .text {
  5057. position:absolute;
  5058. align-self:center;
  5059. padding:2px 2px 2px 0px;
  5060. box-sizing:border-box;
  5061. width:100%;
  5062. }
  5063. #u97102_text {
  5064. border-width:0px;
  5065. word-wrap:break-word;
  5066. text-transform:none;
  5067. visibility:hidden;
  5068. }
  5069. #u97103_img {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:0px;
  5073. top:0px;
  5074. width:157px;
  5075. height:35px;
  5076. }
  5077. #u97103 {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:515px;
  5081. top:430px;
  5082. width:157px;
  5083. height:35px;
  5084. display:flex;
  5085. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5086. font-weight:400;
  5087. font-style:normal;
  5088. font-size:12px;
  5089. color:#606266;
  5090. }
  5091. #u97103 .text {
  5092. position:absolute;
  5093. align-self:center;
  5094. padding:2px 2px 2px 0px;
  5095. box-sizing:border-box;
  5096. width:100%;
  5097. }
  5098. #u97103_text {
  5099. border-width:0px;
  5100. word-wrap:break-word;
  5101. text-transform:none;
  5102. visibility:hidden;
  5103. }
  5104. #u97104_img {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:179px;
  5110. height:35px;
  5111. }
  5112. #u97104 {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:672px;
  5116. top:430px;
  5117. width:179px;
  5118. height:35px;
  5119. display:flex;
  5120. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. font-size:12px;
  5124. color:#606266;
  5125. }
  5126. #u97104 .text {
  5127. position:absolute;
  5128. align-self:center;
  5129. padding:2px 2px 2px 0px;
  5130. box-sizing:border-box;
  5131. width:100%;
  5132. }
  5133. #u97104_text {
  5134. border-width:0px;
  5135. word-wrap:break-word;
  5136. text-transform:none;
  5137. visibility:hidden;
  5138. }
  5139. #u97105_img {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:175px;
  5145. height:35px;
  5146. }
  5147. #u97105 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:851px;
  5151. top:430px;
  5152. width:175px;
  5153. height:35px;
  5154. display:flex;
  5155. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5156. font-weight:400;
  5157. font-style:normal;
  5158. font-size:12px;
  5159. color:#606266;
  5160. }
  5161. #u97105 .text {
  5162. position:absolute;
  5163. align-self:center;
  5164. padding:2px 2px 2px 0px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u97105_text {
  5169. border-width:0px;
  5170. word-wrap:break-word;
  5171. text-transform:none;
  5172. visibility:hidden;
  5173. }
  5174. #u97106_div {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:59px;
  5180. height:30px;
  5181. background:inherit;
  5182. background-color:rgba(41, 143, 255, 1);
  5183. border:none;
  5184. border-radius:4px;
  5185. -moz-box-shadow:none;
  5186. -webkit-box-shadow:none;
  5187. box-shadow:none;
  5188. font-family:'Microsoft YaHei', sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:14px;
  5192. color:#FFFFFF;
  5193. }
  5194. #u97106 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:1118px;
  5198. top:162px;
  5199. width:59px;
  5200. height:30px;
  5201. display:flex;
  5202. font-family:'Microsoft YaHei', sans-serif;
  5203. font-weight:400;
  5204. font-style:normal;
  5205. font-size:14px;
  5206. color:#FFFFFF;
  5207. }
  5208. #u97106 .text {
  5209. position:absolute;
  5210. align-self:center;
  5211. padding:5px 15px 5px 15px;
  5212. box-sizing:border-box;
  5213. width:100%;
  5214. }
  5215. #u97106_text {
  5216. border-width:0px;
  5217. white-space:nowrap;
  5218. text-transform:none;
  5219. }
  5220. #u97107_div {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:55px;
  5226. height:30px;
  5227. background:inherit;
  5228. background-color:rgba(255, 255, 255, 1);
  5229. box-sizing:border-box;
  5230. border-width:1px;
  5231. border-style:solid;
  5232. border-color:rgba(170, 170, 170, 1);
  5233. border-radius:4px;
  5234. -moz-box-shadow:none;
  5235. -webkit-box-shadow:none;
  5236. box-shadow:none;
  5237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5238. font-weight:400;
  5239. font-style:normal;
  5240. font-size:12px;
  5241. color:#555555;
  5242. }
  5243. #u97107 {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:1197px;
  5247. top:162px;
  5248. width:55px;
  5249. height:30px;
  5250. display:flex;
  5251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5252. font-weight:400;
  5253. font-style:normal;
  5254. font-size:12px;
  5255. color:#555555;
  5256. }
  5257. #u97107 .text {
  5258. position:absolute;
  5259. align-self:center;
  5260. padding:5px 15px 5px 15px;
  5261. box-sizing:border-box;
  5262. width:100%;
  5263. }
  5264. #u97107_text {
  5265. border-width:0px;
  5266. white-space:nowrap;
  5267. text-transform:none;
  5268. }
  5269. #u97108_div {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:0px;
  5273. top:0px;
  5274. width:80px;
  5275. height:30px;
  5276. background:inherit;
  5277. background-color:rgba(24, 144, 255, 1);
  5278. border:none;
  5279. border-radius:4px;
  5280. -moz-box-shadow:none;
  5281. -webkit-box-shadow:none;
  5282. box-shadow:none;
  5283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5284. font-weight:400;
  5285. font-style:normal;
  5286. font-size:12px;
  5287. color:#FFFFFF;
  5288. }
  5289. #u97108 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:538px;
  5293. top:150px;
  5294. width:80px;
  5295. height:30px;
  5296. display:flex;
  5297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5298. font-weight:400;
  5299. font-style:normal;
  5300. font-size:12px;
  5301. color:#FFFFFF;
  5302. }
  5303. #u97108 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:5px 15px 5px 15px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u97108_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. }
  5315. #u97109 {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:0px;
  5321. height:0px;
  5322. }
  5323. #u97110_div {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:140px;
  5329. height:30px;
  5330. background:inherit;
  5331. background-color:rgba(255, 255, 255, 1);
  5332. box-sizing:border-box;
  5333. border-width:1px;
  5334. border-style:solid;
  5335. border-color:rgba(215, 215, 215, 1);
  5336. border-radius:4px;
  5337. -moz-box-shadow:none;
  5338. -webkit-box-shadow:none;
  5339. box-shadow:none;
  5340. font-size:11px;
  5341. }
  5342. #u97110 {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:968px;
  5346. top:162px;
  5347. width:140px;
  5348. height:30px;
  5349. display:flex;
  5350. font-size:11px;
  5351. }
  5352. #u97110 .text {
  5353. position:absolute;
  5354. align-self:center;
  5355. padding:2px 2px 2px 2px;
  5356. box-sizing:border-box;
  5357. width:100%;
  5358. }
  5359. #u97110_text {
  5360. border-width:0px;
  5361. word-wrap:break-word;
  5362. text-transform:none;
  5363. visibility:hidden;
  5364. }
  5365. #u97111_input {
  5366. position:absolute;
  5367. left:0px;
  5368. top:0px;
  5369. width:120px;
  5370. height:23px;
  5371. padding:2px 2px 2px 2px;
  5372. font-family:'ArialMT', 'Arial', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:11px;
  5376. letter-spacing:normal;
  5377. color:#AAAAAA;
  5378. vertical-align:none;
  5379. text-align:left;
  5380. text-transform:none;
  5381. background-color:transparent;
  5382. border-color:transparent;
  5383. }
  5384. #u97111_input.disabled {
  5385. position:absolute;
  5386. left:0px;
  5387. top:0px;
  5388. width:120px;
  5389. height:23px;
  5390. padding:2px 2px 2px 2px;
  5391. font-family:'ArialMT', 'Arial', sans-serif;
  5392. font-weight:400;
  5393. font-style:normal;
  5394. font-size:11px;
  5395. letter-spacing:normal;
  5396. color:#AAAAAA;
  5397. vertical-align:none;
  5398. text-align:left;
  5399. text-transform:none;
  5400. background-color:transparent;
  5401. border-color:transparent;
  5402. }
  5403. #u97111_div {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:0px;
  5407. top:0px;
  5408. width:120px;
  5409. height:23px;
  5410. background:inherit;
  5411. background-color:rgba(255, 255, 255, 1);
  5412. border:none;
  5413. border-radius:0px;
  5414. -moz-box-shadow:none;
  5415. -webkit-box-shadow:none;
  5416. box-shadow:none;
  5417. font-size:11px;
  5418. color:#AAAAAA;
  5419. }
  5420. #u97111 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:975px;
  5424. top:164px;
  5425. width:120px;
  5426. height:23px;
  5427. display:flex;
  5428. font-size:11px;
  5429. color:#AAAAAA;
  5430. }
  5431. #u97111 .text {
  5432. position:absolute;
  5433. align-self:flex-start;
  5434. padding:2px 2px 2px 2px;
  5435. box-sizing:border-box;
  5436. width:100%;
  5437. }
  5438. #u97111_div.disabled {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:120px;
  5444. height:23px;
  5445. background:inherit;
  5446. background-color:rgba(240, 240, 240, 1);
  5447. border:none;
  5448. border-radius:0px;
  5449. -moz-box-shadow:none;
  5450. -webkit-box-shadow:none;
  5451. box-shadow:none;
  5452. font-size:11px;
  5453. color:#AAAAAA;
  5454. }
  5455. #u97111.disabled {
  5456. }
  5457. .u97111_input_option {
  5458. font-size:11px;
  5459. }
  5460. #u97112_div {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:109px;
  5466. height:50px;
  5467. background:inherit;
  5468. background-color:rgba(255, 255, 255, 0);
  5469. border:none;
  5470. border-left:0px;
  5471. border-top:0px;
  5472. border-right:0px;
  5473. border-radius:0px;
  5474. border-bottom-right-radius:0px;
  5475. border-bottom-left-radius:0px;
  5476. -moz-box-shadow:none;
  5477. -webkit-box-shadow:none;
  5478. box-shadow:none;
  5479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5480. font-weight:400;
  5481. font-style:normal;
  5482. font-size:18px;
  5483. }
  5484. #u97112 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:349px;
  5488. top:50px;
  5489. width:109px;
  5490. height:50px;
  5491. display:flex;
  5492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5493. font-weight:400;
  5494. font-style:normal;
  5495. font-size:18px;
  5496. }
  5497. #u97112 .text {
  5498. position:absolute;
  5499. align-self:center;
  5500. padding:0px 0px 0px 0px;
  5501. box-sizing:border-box;
  5502. width:100%;
  5503. }
  5504. #u97112_text {
  5505. border-width:0px;
  5506. white-space:nowrap;
  5507. text-transform:none;
  5508. }
  5509. #u97113 {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:0px;
  5513. top:0px;
  5514. width:0px;
  5515. height:0px;
  5516. }
  5517. #u97114_div {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:0px;
  5521. top:0px;
  5522. width:140px;
  5523. height:30px;
  5524. background:inherit;
  5525. background-color:rgba(255, 255, 255, 1);
  5526. box-sizing:border-box;
  5527. border-width:1px;
  5528. border-style:solid;
  5529. border-color:rgba(201, 201, 201, 1);
  5530. border-radius:4px;
  5531. -moz-box-shadow:none;
  5532. -webkit-box-shadow:none;
  5533. box-shadow:none;
  5534. font-family:'Microsoft YaHei', sans-serif;
  5535. font-weight:400;
  5536. font-style:normal;
  5537. font-size:14px;
  5538. color:#CCCCCC;
  5539. text-align:left;
  5540. }
  5541. #u97114 {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:668px;
  5545. top:162px;
  5546. width:140px;
  5547. height:30px;
  5548. display:flex;
  5549. font-family:'Microsoft YaHei', sans-serif;
  5550. font-weight:400;
  5551. font-style:normal;
  5552. font-size:14px;
  5553. color:#CCCCCC;
  5554. text-align:left;
  5555. }
  5556. #u97114 .text {
  5557. position:absolute;
  5558. align-self:center;
  5559. padding:2px 8px 2px 8px;
  5560. box-sizing:border-box;
  5561. width:100%;
  5562. }
  5563. #u97114_text {
  5564. border-width:0px;
  5565. word-wrap:break-word;
  5566. text-transform:none;
  5567. visibility:hidden;
  5568. }
  5569. #u97115_input {
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:127px;
  5574. height:25px;
  5575. padding:2px 2px 2px 2px;
  5576. font-family:'Microsoft YaHei', sans-serif;
  5577. font-weight:400;
  5578. font-style:normal;
  5579. font-size:10px;
  5580. letter-spacing:normal;
  5581. color:#000000;
  5582. vertical-align:none;
  5583. text-align:left;
  5584. text-transform:none;
  5585. background-color:transparent;
  5586. border-color:transparent;
  5587. }
  5588. #u97115_input.disabled {
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:127px;
  5593. height:25px;
  5594. padding:2px 2px 2px 2px;
  5595. font-family:'Microsoft YaHei', sans-serif;
  5596. font-weight:400;
  5597. font-style:normal;
  5598. font-size:10px;
  5599. letter-spacing:normal;
  5600. color:#000000;
  5601. vertical-align:none;
  5602. text-align:left;
  5603. text-transform:none;
  5604. background-color:transparent;
  5605. border-color:transparent;
  5606. }
  5607. #u97115_div {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:127px;
  5613. height:25px;
  5614. background:inherit;
  5615. background-color:rgba(255, 255, 255, 1);
  5616. border:none;
  5617. border-radius:0px;
  5618. -moz-box-shadow:none;
  5619. -webkit-box-shadow:none;
  5620. box-shadow:none;
  5621. font-family:'Microsoft YaHei', sans-serif;
  5622. font-weight:400;
  5623. font-style:normal;
  5624. font-size:10px;
  5625. }
  5626. #u97115 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:676px;
  5630. top:163px;
  5631. width:127px;
  5632. height:25px;
  5633. display:flex;
  5634. font-family:'Microsoft YaHei', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:10px;
  5638. }
  5639. #u97115 .text {
  5640. position:absolute;
  5641. align-self:center;
  5642. padding:2px 2px 2px 2px;
  5643. box-sizing:border-box;
  5644. width:100%;
  5645. }
  5646. #u97115_div.disabled {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:127px;
  5652. height:25px;
  5653. background:inherit;
  5654. background-color:rgba(240, 240, 240, 1);
  5655. border:none;
  5656. border-radius:0px;
  5657. -moz-box-shadow:none;
  5658. -webkit-box-shadow:none;
  5659. box-shadow:none;
  5660. font-family:'Microsoft YaHei', sans-serif;
  5661. font-weight:400;
  5662. font-style:normal;
  5663. font-size:10px;
  5664. }
  5665. #u97115.disabled {
  5666. }
  5667. #u97116 {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:0px;
  5671. top:0px;
  5672. width:0px;
  5673. height:0px;
  5674. }
  5675. #u97117_div {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:100px;
  5681. height:100px;
  5682. background:inherit;
  5683. background-color:rgba(255, 255, 255, 1);
  5684. border:none;
  5685. border-radius:4px;
  5686. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5687. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5688. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5689. }
  5690. #u97117 {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:1541px;
  5694. top:321px;
  5695. width:100px;
  5696. height:100px;
  5697. display:flex;
  5698. }
  5699. #u97117 .text {
  5700. position:absolute;
  5701. align-self:center;
  5702. padding:2px 2px 2px 2px;
  5703. box-sizing:border-box;
  5704. width:100%;
  5705. }
  5706. #u97117_text {
  5707. border-width:0px;
  5708. word-wrap:break-word;
  5709. text-transform:none;
  5710. visibility:hidden;
  5711. }
  5712. #u97118_div {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:83px;
  5718. height:40px;
  5719. background:inherit;
  5720. background-color:rgba(255, 255, 255, 1);
  5721. box-sizing:border-box;
  5722. border-width:1px;
  5723. border-style:solid;
  5724. border-color:rgba(242, 242, 242, 1);
  5725. border-left:0px;
  5726. border-top:0px;
  5727. border-right:0px;
  5728. border-radius:4px;
  5729. border-bottom-right-radius:0px;
  5730. border-bottom-left-radius:0px;
  5731. -moz-box-shadow:none;
  5732. -webkit-box-shadow:none;
  5733. box-shadow:none;
  5734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5735. font-weight:400;
  5736. font-style:normal;
  5737. font-size:14px;
  5738. }
  5739. #u97118 {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:1549px;
  5743. top:332px;
  5744. width:83px;
  5745. height:40px;
  5746. display:flex;
  5747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5748. font-weight:400;
  5749. font-style:normal;
  5750. font-size:14px;
  5751. }
  5752. #u97118 .text {
  5753. position:absolute;
  5754. align-self:center;
  5755. padding:5px 0px 5px 0px;
  5756. box-sizing:border-box;
  5757. width:100%;
  5758. }
  5759. #u97118_text {
  5760. border-width:0px;
  5761. word-wrap:break-word;
  5762. text-transform:none;
  5763. }
  5764. #u97119_div {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:0px;
  5768. top:0px;
  5769. width:83px;
  5770. height:40px;
  5771. background:inherit;
  5772. background-color:rgba(255, 255, 255, 1);
  5773. border:none;
  5774. border-left:0px;
  5775. border-top:0px;
  5776. border-right:0px;
  5777. border-radius:4px;
  5778. border-bottom-right-radius:0px;
  5779. border-bottom-left-radius:0px;
  5780. -moz-box-shadow:none;
  5781. -webkit-box-shadow:none;
  5782. box-shadow:none;
  5783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5784. font-weight:400;
  5785. font-style:normal;
  5786. font-size:14px;
  5787. }
  5788. #u97119 {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:1549px;
  5792. top:372px;
  5793. width:83px;
  5794. height:40px;
  5795. display:flex;
  5796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5797. font-weight:400;
  5798. font-style:normal;
  5799. font-size:14px;
  5800. }
  5801. #u97119 .text {
  5802. position:absolute;
  5803. align-self:center;
  5804. padding:5px 0px 5px 0px;
  5805. box-sizing:border-box;
  5806. width:100%;
  5807. }
  5808. #u97119_text {
  5809. border-width:0px;
  5810. word-wrap:break-word;
  5811. text-transform:none;
  5812. }
  5813. #u97120_img {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:0px;
  5817. top:0px;
  5818. width:11px;
  5819. height:11px;
  5820. }
  5821. #u97120 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:1077px;
  5825. top:204px;
  5826. width:11px;
  5827. height:11px;
  5828. display:flex;
  5829. color:#FFFFFF;
  5830. }
  5831. #u97120 .text {
  5832. position:absolute;
  5833. align-self:center;
  5834. padding:2px 2px 2px 2px;
  5835. box-sizing:border-box;
  5836. width:100%;
  5837. }
  5838. #u97120_text {
  5839. border-width:0px;
  5840. word-wrap:break-word;
  5841. text-transform:none;
  5842. visibility:hidden;
  5843. }
  5844. #u97121_div {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:0px;
  5848. top:0px;
  5849. width:79px;
  5850. height:30px;
  5851. background:inherit;
  5852. background-color:rgba(25, 140, 251, 1);
  5853. border:none;
  5854. border-radius:4px;
  5855. -moz-box-shadow:none;
  5856. -webkit-box-shadow:none;
  5857. box-shadow:none;
  5858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:12px;
  5862. color:#FFFFFF;
  5863. }
  5864. #u97121 {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:668px;
  5868. top:212px;
  5869. width:79px;
  5870. height:30px;
  5871. display:flex;
  5872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5873. font-weight:400;
  5874. font-style:normal;
  5875. font-size:12px;
  5876. color:#FFFFFF;
  5877. }
  5878. #u97121 .text {
  5879. position:absolute;
  5880. align-self:center;
  5881. padding:5px 15px 5px 15px;
  5882. box-sizing:border-box;
  5883. width:100%;
  5884. }
  5885. #u97121_text {
  5886. border-width:0px;
  5887. white-space:nowrap;
  5888. text-transform:none;
  5889. }
  5890. #u97122_div {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:0px;
  5894. top:0px;
  5895. width:300px;
  5896. height:1080px;
  5897. background:inherit;
  5898. background-color:rgba(242, 242, 242, 1);
  5899. border:none;
  5900. border-radius:4px;
  5901. -moz-box-shadow:none;
  5902. -webkit-box-shadow:none;
  5903. box-shadow:none;
  5904. }
  5905. #u97122 {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:348px;
  5909. top:102px;
  5910. width:300px;
  5911. height:1080px;
  5912. display:flex;
  5913. }
  5914. #u97122 .text {
  5915. position:absolute;
  5916. align-self:center;
  5917. padding:2px 2px 2px 2px;
  5918. box-sizing:border-box;
  5919. width:100%;
  5920. }
  5921. #u97122_text {
  5922. border-width:0px;
  5923. word-wrap:break-word;
  5924. text-transform:none;
  5925. visibility:hidden;
  5926. }
  5927. #u97123_div {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:120px;
  5933. height:50px;
  5934. background:inherit;
  5935. background-color:rgba(255, 255, 255, 0);
  5936. border:none;
  5937. border-left:0px;
  5938. border-top:0px;
  5939. border-right:0px;
  5940. border-radius:0px;
  5941. border-bottom-right-radius:0px;
  5942. border-bottom-left-radius:0px;
  5943. -moz-box-shadow:none;
  5944. -webkit-box-shadow:none;
  5945. box-shadow:none;
  5946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5947. font-weight:400;
  5948. font-style:normal;
  5949. font-size:18px;
  5950. color:#000000;
  5951. line-height:40px;
  5952. }
  5953. #u97123 {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:668px;
  5957. top:102px;
  5958. width:120px;
  5959. height:50px;
  5960. display:flex;
  5961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5962. font-weight:400;
  5963. font-style:normal;
  5964. font-size:18px;
  5965. color:#000000;
  5966. line-height:40px;
  5967. }
  5968. #u97123 .text {
  5969. position:absolute;
  5970. align-self:center;
  5971. padding:0px 0px 0px 0px;
  5972. box-sizing:border-box;
  5973. width:100%;
  5974. }
  5975. #u97123_text {
  5976. border-width:0px;
  5977. white-space:nowrap;
  5978. text-transform:none;
  5979. }
  5980. #u97124 {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:372px;
  5984. top:127px;
  5985. width:168px;
  5986. height:260px;
  5987. }
  5988. #u97124_children {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:0px;
  5994. height:0px;
  5995. }
  5996. #u97125 {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:0px;
  6000. top:0px;
  6001. width:113px;
  6002. height:20px;
  6003. color:#298FFF;
  6004. }
  6005. #u97126_img {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:0px;
  6009. top:0px;
  6010. width:9px;
  6011. height:9px;
  6012. }
  6013. #u97126 {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:6px;
  6017. top:6px;
  6018. width:9px;
  6019. height:9px;
  6020. display:flex;
  6021. }
  6022. #u97126 .text {
  6023. position:absolute;
  6024. align-self:center;
  6025. padding:2px 2px 2px 2px;
  6026. box-sizing:border-box;
  6027. width:100%;
  6028. }
  6029. #u97126_img.selected {
  6030. }
  6031. #u97126.selected {
  6032. }
  6033. #u97126_text {
  6034. border-width:0px;
  6035. word-wrap:break-word;
  6036. text-transform:none;
  6037. visibility:hidden;
  6038. }
  6039. #u97127_div {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:0px;
  6043. top:0px;
  6044. width:91px;
  6045. height:20px;
  6046. background:inherit;
  6047. background-color:rgba(255, 255, 255, 0);
  6048. border:none;
  6049. border-radius:0px;
  6050. -moz-box-shadow:none;
  6051. -webkit-box-shadow:none;
  6052. box-shadow:none;
  6053. }
  6054. #u97127 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:22px;
  6058. top:0px;
  6059. width:91px;
  6060. height:20px;
  6061. display:flex;
  6062. }
  6063. #u97127 .text {
  6064. position:absolute;
  6065. align-self:center;
  6066. padding:2px 2px 2px 3px;
  6067. box-sizing:border-box;
  6068. width:100%;
  6069. }
  6070. #u97127_text {
  6071. border-width:0px;
  6072. white-space:nowrap;
  6073. text-transform:none;
  6074. }
  6075. #u97125_children {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:0px;
  6081. height:0px;
  6082. }
  6083. #u97128 {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:20px;
  6087. top:20px;
  6088. width:148px;
  6089. height:20px;
  6090. }
  6091. #u97129_div {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:0px;
  6095. top:0px;
  6096. width:126px;
  6097. height:20px;
  6098. background:inherit;
  6099. background-color:rgba(255, 255, 255, 0);
  6100. border:none;
  6101. border-radius:0px;
  6102. -moz-box-shadow:none;
  6103. -webkit-box-shadow:none;
  6104. box-shadow:none;
  6105. }
  6106. #u97129 {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:22px;
  6110. top:0px;
  6111. width:126px;
  6112. height:20px;
  6113. display:flex;
  6114. }
  6115. #u97129 .text {
  6116. position:absolute;
  6117. align-self:center;
  6118. padding:2px 2px 2px 3px;
  6119. box-sizing:border-box;
  6120. width:100%;
  6121. }
  6122. #u97129_text {
  6123. border-width:0px;
  6124. white-space:nowrap;
  6125. text-transform:none;
  6126. }
  6127. #u97130 {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:20px;
  6131. top:40px;
  6132. width:122px;
  6133. height:20px;
  6134. }
  6135. #u97131_div {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:0px;
  6139. top:0px;
  6140. width:100px;
  6141. height:20px;
  6142. background:inherit;
  6143. background-color:rgba(255, 255, 255, 0);
  6144. border:none;
  6145. border-radius:0px;
  6146. -moz-box-shadow:none;
  6147. -webkit-box-shadow:none;
  6148. box-shadow:none;
  6149. }
  6150. #u97131 {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:22px;
  6154. top:0px;
  6155. width:100px;
  6156. height:20px;
  6157. display:flex;
  6158. }
  6159. #u97131 .text {
  6160. position:absolute;
  6161. align-self:center;
  6162. padding:2px 2px 2px 3px;
  6163. box-sizing:border-box;
  6164. width:100%;
  6165. }
  6166. #u97131_text {
  6167. border-width:0px;
  6168. white-space:nowrap;
  6169. text-transform:none;
  6170. }
  6171. #u97132 {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:20px;
  6175. top:60px;
  6176. width:122px;
  6177. height:20px;
  6178. }
  6179. #u97133_div {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:100px;
  6185. height:20px;
  6186. background:inherit;
  6187. background-color:rgba(255, 255, 255, 0);
  6188. border:none;
  6189. border-radius:0px;
  6190. -moz-box-shadow:none;
  6191. -webkit-box-shadow:none;
  6192. box-shadow:none;
  6193. }
  6194. #u97133 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:22px;
  6198. top:0px;
  6199. width:100px;
  6200. height:20px;
  6201. display:flex;
  6202. }
  6203. #u97133 .text {
  6204. position:absolute;
  6205. align-self:center;
  6206. padding:2px 2px 2px 3px;
  6207. box-sizing:border-box;
  6208. width:100%;
  6209. }
  6210. #u97133_text {
  6211. border-width:0px;
  6212. white-space:nowrap;
  6213. text-transform:none;
  6214. }
  6215. #u97134 {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:0px;
  6219. top:80px;
  6220. width:113px;
  6221. height:20px;
  6222. }
  6223. #u97135_img {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:0px;
  6227. top:0px;
  6228. width:9px;
  6229. height:9px;
  6230. }
  6231. #u97135 {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:6px;
  6235. top:6px;
  6236. width:9px;
  6237. height:9px;
  6238. display:flex;
  6239. }
  6240. #u97135 .text {
  6241. position:absolute;
  6242. align-self:center;
  6243. padding:2px 2px 2px 2px;
  6244. box-sizing:border-box;
  6245. width:100%;
  6246. }
  6247. #u97135_img.selected {
  6248. }
  6249. #u97135.selected {
  6250. }
  6251. #u97135_text {
  6252. border-width:0px;
  6253. word-wrap:break-word;
  6254. text-transform:none;
  6255. visibility:hidden;
  6256. }
  6257. #u97136_div {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:91px;
  6263. height:20px;
  6264. background:inherit;
  6265. background-color:rgba(255, 255, 255, 0);
  6266. border:none;
  6267. border-radius:0px;
  6268. -moz-box-shadow:none;
  6269. -webkit-box-shadow:none;
  6270. box-shadow:none;
  6271. }
  6272. #u97136 {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:22px;
  6276. top:0px;
  6277. width:91px;
  6278. height:20px;
  6279. display:flex;
  6280. }
  6281. #u97136 .text {
  6282. position:absolute;
  6283. align-self:center;
  6284. padding:2px 2px 2px 3px;
  6285. box-sizing:border-box;
  6286. width:100%;
  6287. }
  6288. #u97136_text {
  6289. border-width:0px;
  6290. white-space:nowrap;
  6291. text-transform:none;
  6292. }
  6293. #u97134_children {
  6294. border-width:0px;
  6295. position:absolute;
  6296. left:0px;
  6297. top:0px;
  6298. width:0px;
  6299. height:0px;
  6300. }
  6301. #u97137 {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:20px;
  6305. top:20px;
  6306. width:93px;
  6307. height:20px;
  6308. }
  6309. #u97138_div {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:0px;
  6313. top:0px;
  6314. width:71px;
  6315. height:20px;
  6316. background:inherit;
  6317. background-color:rgba(255, 255, 255, 0);
  6318. border:none;
  6319. border-radius:0px;
  6320. -moz-box-shadow:none;
  6321. -webkit-box-shadow:none;
  6322. box-shadow:none;
  6323. }
  6324. #u97138 {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:22px;
  6328. top:0px;
  6329. width:71px;
  6330. height:20px;
  6331. display:flex;
  6332. }
  6333. #u97138 .text {
  6334. position:absolute;
  6335. align-self:center;
  6336. padding:2px 2px 2px 3px;
  6337. box-sizing:border-box;
  6338. width:100%;
  6339. }
  6340. #u97138_text {
  6341. border-width:0px;
  6342. white-space:nowrap;
  6343. text-transform:none;
  6344. }
  6345. #u97139 {
  6346. border-width:0px;
  6347. position:absolute;
  6348. left:20px;
  6349. top:40px;
  6350. width:93px;
  6351. height:20px;
  6352. }
  6353. #u97140_div {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:71px;
  6359. height:20px;
  6360. background:inherit;
  6361. background-color:rgba(255, 255, 255, 0);
  6362. border:none;
  6363. border-radius:0px;
  6364. -moz-box-shadow:none;
  6365. -webkit-box-shadow:none;
  6366. box-shadow:none;
  6367. }
  6368. #u97140 {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:22px;
  6372. top:0px;
  6373. width:71px;
  6374. height:20px;
  6375. display:flex;
  6376. }
  6377. #u97140 .text {
  6378. position:absolute;
  6379. align-self:center;
  6380. padding:2px 2px 2px 3px;
  6381. box-sizing:border-box;
  6382. width:100%;
  6383. }
  6384. #u97140_text {
  6385. border-width:0px;
  6386. white-space:nowrap;
  6387. text-transform:none;
  6388. }
  6389. #u97141 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:0px;
  6393. top:140px;
  6394. width:80px;
  6395. height:20px;
  6396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6397. font-weight:400;
  6398. font-style:normal;
  6399. }
  6400. #u97142_img {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:9px;
  6406. height:9px;
  6407. }
  6408. #u97142 {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:6px;
  6412. top:6px;
  6413. width:9px;
  6414. height:9px;
  6415. display:flex;
  6416. }
  6417. #u97142 .text {
  6418. position:absolute;
  6419. align-self:center;
  6420. padding:2px 2px 2px 2px;
  6421. box-sizing:border-box;
  6422. width:100%;
  6423. }
  6424. #u97142_img.selected {
  6425. }
  6426. #u97142.selected {
  6427. }
  6428. #u97142_text {
  6429. border-width:0px;
  6430. word-wrap:break-word;
  6431. text-transform:none;
  6432. visibility:hidden;
  6433. }
  6434. #u97143_div {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:58px;
  6440. height:20px;
  6441. background:inherit;
  6442. background-color:rgba(255, 255, 255, 0);
  6443. border:none;
  6444. border-radius:0px;
  6445. -moz-box-shadow:none;
  6446. -webkit-box-shadow:none;
  6447. box-shadow:none;
  6448. }
  6449. #u97143 {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:22px;
  6453. top:0px;
  6454. width:58px;
  6455. height:20px;
  6456. display:flex;
  6457. }
  6458. #u97143 .text {
  6459. position:absolute;
  6460. align-self:center;
  6461. padding:2px 2px 2px 3px;
  6462. box-sizing:border-box;
  6463. width:100%;
  6464. }
  6465. #u97143_text {
  6466. border-width:0px;
  6467. white-space:nowrap;
  6468. text-transform:none;
  6469. }
  6470. #u97141_children {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:0px;
  6474. top:0px;
  6475. width:0px;
  6476. height:0px;
  6477. }
  6478. #u97144 {
  6479. border-width:0px;
  6480. position:absolute;
  6481. left:20px;
  6482. top:20px;
  6483. width:97px;
  6484. height:20px;
  6485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6486. font-weight:400;
  6487. font-style:normal;
  6488. }
  6489. #u97145_div {
  6490. border-width:0px;
  6491. position:absolute;
  6492. left:0px;
  6493. top:0px;
  6494. width:75px;
  6495. height:20px;
  6496. background:inherit;
  6497. background-color:rgba(255, 255, 255, 0);
  6498. border:none;
  6499. border-radius:0px;
  6500. -moz-box-shadow:none;
  6501. -webkit-box-shadow:none;
  6502. box-shadow:none;
  6503. }
  6504. #u97145 {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:22px;
  6508. top:0px;
  6509. width:75px;
  6510. height:20px;
  6511. display:flex;
  6512. }
  6513. #u97145 .text {
  6514. position:absolute;
  6515. align-self:center;
  6516. padding:2px 2px 2px 3px;
  6517. box-sizing:border-box;
  6518. width:100%;
  6519. }
  6520. #u97145_text {
  6521. border-width:0px;
  6522. white-space:nowrap;
  6523. text-transform:none;
  6524. }
  6525. #u97146 {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:20px;
  6529. top:40px;
  6530. width:97px;
  6531. height:20px;
  6532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6533. font-weight:400;
  6534. font-style:normal;
  6535. }
  6536. #u97147_div {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:0px;
  6540. top:0px;
  6541. width:75px;
  6542. height:20px;
  6543. background:inherit;
  6544. background-color:rgba(255, 255, 255, 0);
  6545. border:none;
  6546. border-radius:0px;
  6547. -moz-box-shadow:none;
  6548. -webkit-box-shadow:none;
  6549. box-shadow:none;
  6550. }
  6551. #u97147 {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:22px;
  6555. top:0px;
  6556. width:75px;
  6557. height:20px;
  6558. display:flex;
  6559. }
  6560. #u97147 .text {
  6561. position:absolute;
  6562. align-self:center;
  6563. padding:2px 2px 2px 3px;
  6564. box-sizing:border-box;
  6565. width:100%;
  6566. }
  6567. #u97147_text {
  6568. border-width:0px;
  6569. white-space:nowrap;
  6570. text-transform:none;
  6571. }
  6572. #u97148 {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:200px;
  6577. width:80px;
  6578. height:20px;
  6579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6580. font-weight:400;
  6581. font-style:normal;
  6582. }
  6583. #u97149_img {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:0px;
  6588. width:9px;
  6589. height:9px;
  6590. }
  6591. #u97149 {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:6px;
  6595. top:6px;
  6596. width:9px;
  6597. height:9px;
  6598. display:flex;
  6599. }
  6600. #u97149 .text {
  6601. position:absolute;
  6602. align-self:center;
  6603. padding:2px 2px 2px 2px;
  6604. box-sizing:border-box;
  6605. width:100%;
  6606. }
  6607. #u97149_img.selected {
  6608. }
  6609. #u97149.selected {
  6610. }
  6611. #u97149_text {
  6612. border-width:0px;
  6613. word-wrap:break-word;
  6614. text-transform:none;
  6615. visibility:hidden;
  6616. }
  6617. #u97150_div {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:58px;
  6623. height:20px;
  6624. background:inherit;
  6625. background-color:rgba(255, 255, 255, 0);
  6626. border:none;
  6627. border-radius:0px;
  6628. -moz-box-shadow:none;
  6629. -webkit-box-shadow:none;
  6630. box-shadow:none;
  6631. }
  6632. #u97150 {
  6633. border-width:0px;
  6634. position:absolute;
  6635. left:22px;
  6636. top:0px;
  6637. width:58px;
  6638. height:20px;
  6639. display:flex;
  6640. }
  6641. #u97150 .text {
  6642. position:absolute;
  6643. align-self:center;
  6644. padding:2px 2px 2px 3px;
  6645. box-sizing:border-box;
  6646. width:100%;
  6647. }
  6648. #u97150_text {
  6649. border-width:0px;
  6650. white-space:nowrap;
  6651. text-transform:none;
  6652. }
  6653. #u97148_children {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:0px;
  6659. height:0px;
  6660. }
  6661. #u97151 {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:20px;
  6665. top:20px;
  6666. width:97px;
  6667. height:20px;
  6668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6669. font-weight:400;
  6670. font-style:normal;
  6671. }
  6672. #u97152_div {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:75px;
  6678. height:20px;
  6679. background:inherit;
  6680. background-color:rgba(255, 255, 255, 0);
  6681. border:none;
  6682. border-radius:0px;
  6683. -moz-box-shadow:none;
  6684. -webkit-box-shadow:none;
  6685. box-shadow:none;
  6686. }
  6687. #u97152 {
  6688. border-width:0px;
  6689. position:absolute;
  6690. left:22px;
  6691. top:0px;
  6692. width:75px;
  6693. height:20px;
  6694. display:flex;
  6695. }
  6696. #u97152 .text {
  6697. position:absolute;
  6698. align-self:center;
  6699. padding:2px 2px 2px 3px;
  6700. box-sizing:border-box;
  6701. width:100%;
  6702. }
  6703. #u97152_text {
  6704. border-width:0px;
  6705. white-space:nowrap;
  6706. text-transform:none;
  6707. }
  6708. #u97153 {
  6709. border-width:0px;
  6710. position:absolute;
  6711. left:20px;
  6712. top:40px;
  6713. width:97px;
  6714. height:20px;
  6715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6716. font-weight:400;
  6717. font-style:normal;
  6718. }
  6719. #u97154_div {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:75px;
  6725. height:20px;
  6726. background:inherit;
  6727. background-color:rgba(255, 255, 255, 0);
  6728. border:none;
  6729. border-radius:0px;
  6730. -moz-box-shadow:none;
  6731. -webkit-box-shadow:none;
  6732. box-shadow:none;
  6733. }
  6734. #u97154 {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:22px;
  6738. top:0px;
  6739. width:75px;
  6740. height:20px;
  6741. display:flex;
  6742. }
  6743. #u97154 .text {
  6744. position:absolute;
  6745. align-self:center;
  6746. padding:2px 2px 2px 3px;
  6747. box-sizing:border-box;
  6748. width:100%;
  6749. }
  6750. #u97154_text {
  6751. border-width:0px;
  6752. white-space:nowrap;
  6753. text-transform:none;
  6754. }
  6755. #u97155 {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:0px;
  6759. top:0px;
  6760. width:0px;
  6761. height:0px;
  6762. }
  6763. #u97156_div {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:0px;
  6767. top:0px;
  6768. width:140px;
  6769. height:30px;
  6770. background:inherit;
  6771. background-color:rgba(255, 255, 255, 1);
  6772. box-sizing:border-box;
  6773. border-width:1px;
  6774. border-style:solid;
  6775. border-color:rgba(201, 201, 201, 1);
  6776. border-radius:4px;
  6777. -moz-box-shadow:none;
  6778. -webkit-box-shadow:none;
  6779. box-shadow:none;
  6780. font-family:'Microsoft YaHei', sans-serif;
  6781. font-weight:400;
  6782. font-style:normal;
  6783. font-size:14px;
  6784. color:#CCCCCC;
  6785. text-align:left;
  6786. }
  6787. #u97156 {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:818px;
  6791. top:162px;
  6792. width:140px;
  6793. height:30px;
  6794. display:flex;
  6795. font-family:'Microsoft YaHei', sans-serif;
  6796. font-weight:400;
  6797. font-style:normal;
  6798. font-size:14px;
  6799. color:#CCCCCC;
  6800. text-align:left;
  6801. }
  6802. #u97156 .text {
  6803. position:absolute;
  6804. align-self:center;
  6805. padding:2px 8px 2px 8px;
  6806. box-sizing:border-box;
  6807. width:100%;
  6808. }
  6809. #u97156_text {
  6810. border-width:0px;
  6811. word-wrap:break-word;
  6812. text-transform:none;
  6813. visibility:hidden;
  6814. }
  6815. #u97157_input {
  6816. position:absolute;
  6817. left:0px;
  6818. top:0px;
  6819. width:127px;
  6820. height:25px;
  6821. padding:2px 2px 2px 2px;
  6822. font-family:'Microsoft YaHei', sans-serif;
  6823. font-weight:400;
  6824. font-style:normal;
  6825. font-size:10px;
  6826. letter-spacing:normal;
  6827. color:#000000;
  6828. vertical-align:none;
  6829. text-align:left;
  6830. text-transform:none;
  6831. background-color:transparent;
  6832. border-color:transparent;
  6833. }
  6834. #u97157_input.disabled {
  6835. position:absolute;
  6836. left:0px;
  6837. top:0px;
  6838. width:127px;
  6839. height:25px;
  6840. padding:2px 2px 2px 2px;
  6841. font-family:'Microsoft YaHei', sans-serif;
  6842. font-weight:400;
  6843. font-style:normal;
  6844. font-size:10px;
  6845. letter-spacing:normal;
  6846. color:#000000;
  6847. vertical-align:none;
  6848. text-align:left;
  6849. text-transform:none;
  6850. background-color:transparent;
  6851. border-color:transparent;
  6852. }
  6853. #u97157_div {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:0px;
  6857. top:0px;
  6858. width:127px;
  6859. height:25px;
  6860. background:inherit;
  6861. background-color:rgba(255, 255, 255, 1);
  6862. border:none;
  6863. border-radius:0px;
  6864. -moz-box-shadow:none;
  6865. -webkit-box-shadow:none;
  6866. box-shadow:none;
  6867. font-family:'Microsoft YaHei', sans-serif;
  6868. font-weight:400;
  6869. font-style:normal;
  6870. font-size:10px;
  6871. }
  6872. #u97157 {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:826px;
  6876. top:163px;
  6877. width:127px;
  6878. height:25px;
  6879. display:flex;
  6880. font-family:'Microsoft YaHei', sans-serif;
  6881. font-weight:400;
  6882. font-style:normal;
  6883. font-size:10px;
  6884. }
  6885. #u97157 .text {
  6886. position:absolute;
  6887. align-self:center;
  6888. padding:2px 2px 2px 2px;
  6889. box-sizing:border-box;
  6890. width:100%;
  6891. }
  6892. #u97157_div.disabled {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:0px;
  6896. top:0px;
  6897. width:127px;
  6898. height:25px;
  6899. background:inherit;
  6900. background-color:rgba(240, 240, 240, 1);
  6901. border:none;
  6902. border-radius:0px;
  6903. -moz-box-shadow:none;
  6904. -webkit-box-shadow:none;
  6905. box-shadow:none;
  6906. font-family:'Microsoft YaHei', sans-serif;
  6907. font-weight:400;
  6908. font-style:normal;
  6909. font-size:10px;
  6910. }
  6911. #u97157.disabled {
  6912. }
  6913. #u97158_div {
  6914. border-width:0px;
  6915. position:absolute;
  6916. left:0px;
  6917. top:0px;
  6918. width:55px;
  6919. height:30px;
  6920. background:inherit;
  6921. background-color:rgba(255, 255, 255, 1);
  6922. box-sizing:border-box;
  6923. border-width:1px;
  6924. border-style:solid;
  6925. border-color:rgba(170, 170, 170, 1);
  6926. border-radius:4px;
  6927. -moz-box-shadow:none;
  6928. -webkit-box-shadow:none;
  6929. box-shadow:none;
  6930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6931. font-weight:400;
  6932. font-style:normal;
  6933. font-size:12px;
  6934. color:#555555;
  6935. }
  6936. #u97158 {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:757px;
  6940. top:212px;
  6941. width:55px;
  6942. height:30px;
  6943. display:flex;
  6944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:12px;
  6948. color:#555555;
  6949. }
  6950. #u97158 .text {
  6951. position:absolute;
  6952. align-self:center;
  6953. padding:5px 15px 5px 15px;
  6954. box-sizing:border-box;
  6955. width:100%;
  6956. }
  6957. #u97158_text {
  6958. border-width:0px;
  6959. white-space:nowrap;
  6960. text-transform:none;
  6961. }
  6962. #u97159_div {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:0px;
  6966. top:0px;
  6967. width:79px;
  6968. height:30px;
  6969. background:inherit;
  6970. background-color:rgba(255, 255, 255, 1);
  6971. box-sizing:border-box;
  6972. border-width:1px;
  6973. border-style:solid;
  6974. border-color:rgba(170, 170, 170, 1);
  6975. border-radius:4px;
  6976. -moz-box-shadow:none;
  6977. -webkit-box-shadow:none;
  6978. box-shadow:none;
  6979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6980. font-weight:400;
  6981. font-style:normal;
  6982. font-size:12px;
  6983. color:#555555;
  6984. }
  6985. #u97159 {
  6986. border-width:0px;
  6987. position:absolute;
  6988. left:822px;
  6989. top:212px;
  6990. width:79px;
  6991. height:30px;
  6992. display:flex;
  6993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6994. font-weight:400;
  6995. font-style:normal;
  6996. font-size:12px;
  6997. color:#555555;
  6998. }
  6999. #u97159 .text {
  7000. position:absolute;
  7001. align-self:center;
  7002. padding:5px 15px 5px 15px;
  7003. box-sizing:border-box;
  7004. width:100%;
  7005. }
  7006. #u97159_text {
  7007. border-width:0px;
  7008. white-space:nowrap;
  7009. text-transform:none;
  7010. }
  7011. #u97160 {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:0px;
  7015. top:0px;
  7016. width:0px;
  7017. height:0px;
  7018. }
  7019. #u97161_div {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:0px;
  7023. top:0px;
  7024. width:500px;
  7025. height:514px;
  7026. background:inherit;
  7027. background-color:rgba(255, 255, 255, 1);
  7028. box-sizing:border-box;
  7029. border-width:1px;
  7030. border-style:solid;
  7031. border-color:rgba(215, 215, 215, 1);
  7032. border-radius:0px;
  7033. -moz-box-shadow:none;
  7034. -webkit-box-shadow:none;
  7035. box-shadow:none;
  7036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7037. font-weight:400;
  7038. font-style:normal;
  7039. font-size:14px;
  7040. color:#AAAAAA;
  7041. text-align:center;
  7042. line-height:30px;
  7043. }
  7044. #u97161 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:861px;
  7048. top:519px;
  7049. width:500px;
  7050. height:514px;
  7051. display:flex;
  7052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7053. font-weight:400;
  7054. font-style:normal;
  7055. font-size:14px;
  7056. color:#AAAAAA;
  7057. text-align:center;
  7058. line-height:30px;
  7059. }
  7060. #u97161 .text {
  7061. position:absolute;
  7062. align-self:center;
  7063. padding:5px 10px 5px 10px;
  7064. box-sizing:border-box;
  7065. width:100%;
  7066. }
  7067. #u97161_text {
  7068. border-width:0px;
  7069. word-wrap:break-word;
  7070. text-transform:none;
  7071. visibility:hidden;
  7072. }
  7073. #u97162_div {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:0px;
  7077. top:0px;
  7078. width:83px;
  7079. height:35px;
  7080. background:inherit;
  7081. background-color:rgba(255, 255, 255, 0);
  7082. border:none;
  7083. border-top:0px;
  7084. border-right:0px;
  7085. border-bottom:0px;
  7086. border-radius:0px;
  7087. border-top-left-radius:0px;
  7088. border-bottom-left-radius:0px;
  7089. -moz-box-shadow:none;
  7090. -webkit-box-shadow:none;
  7091. box-shadow:none;
  7092. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7093. font-weight:500;
  7094. font-style:normal;
  7095. font-size:18px;
  7096. }
  7097. #u97162 {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:881px;
  7101. top:537px;
  7102. width:83px;
  7103. height:35px;
  7104. display:flex;
  7105. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7106. font-weight:500;
  7107. font-style:normal;
  7108. font-size:18px;
  7109. }
  7110. #u97162 .text {
  7111. position:absolute;
  7112. align-self:center;
  7113. padding:5px 10px 5px 0px;
  7114. box-sizing:border-box;
  7115. width:100%;
  7116. }
  7117. #u97162_text {
  7118. border-width:0px;
  7119. white-space:nowrap;
  7120. text-transform:none;
  7121. }
  7122. #u97163 {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:0px;
  7126. top:0px;
  7127. width:0px;
  7128. height:0px;
  7129. }
  7130. #u97164_div {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:0px;
  7134. top:0px;
  7135. width:500px;
  7136. height:60px;
  7137. background:inherit;
  7138. background-color:rgba(255, 255, 255, 1);
  7139. box-sizing:border-box;
  7140. border-width:1px;
  7141. border-style:solid;
  7142. border-color:rgba(215, 215, 215, 1);
  7143. border-radius:0px;
  7144. -moz-box-shadow:none;
  7145. -webkit-box-shadow:none;
  7146. box-shadow:none;
  7147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:14px;
  7151. color:#AAAAAA;
  7152. text-align:center;
  7153. line-height:30px;
  7154. }
  7155. #u97164 {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:861px;
  7159. top:973px;
  7160. width:500px;
  7161. height:60px;
  7162. display:flex;
  7163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7164. font-weight:400;
  7165. font-style:normal;
  7166. font-size:14px;
  7167. color:#AAAAAA;
  7168. text-align:center;
  7169. line-height:30px;
  7170. }
  7171. #u97164 .text {
  7172. position:absolute;
  7173. align-self:center;
  7174. padding:5px 10px 5px 10px;
  7175. box-sizing:border-box;
  7176. width:100%;
  7177. }
  7178. #u97164_text {
  7179. border-width:0px;
  7180. word-wrap:break-word;
  7181. text-transform:none;
  7182. visibility:hidden;
  7183. }
  7184. #u97165_div {
  7185. border-width:0px;
  7186. position:absolute;
  7187. left:0px;
  7188. top:0px;
  7189. width:60px;
  7190. height:30px;
  7191. background:inherit;
  7192. background-color:rgba(24, 144, 255, 1);
  7193. border:none;
  7194. border-radius:4px;
  7195. -moz-box-shadow:none;
  7196. -webkit-box-shadow:none;
  7197. box-shadow:none;
  7198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7199. font-weight:400;
  7200. font-style:normal;
  7201. font-size:14px;
  7202. color:#FFFFFF;
  7203. }
  7204. #u97165 {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:1281px;
  7208. top:988px;
  7209. width:60px;
  7210. height:30px;
  7211. display:flex;
  7212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7213. font-weight:400;
  7214. font-style:normal;
  7215. font-size:14px;
  7216. color:#FFFFFF;
  7217. }
  7218. #u97165 .text {
  7219. position:absolute;
  7220. align-self:center;
  7221. padding:2px 2px 2px 2px;
  7222. box-sizing:border-box;
  7223. width:100%;
  7224. }
  7225. #u97165_text {
  7226. border-width:0px;
  7227. word-wrap:break-word;
  7228. text-transform:none;
  7229. }
  7230. #u97166_div {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:0px;
  7234. top:0px;
  7235. width:60px;
  7236. height:30px;
  7237. background:inherit;
  7238. background-color:rgba(255, 255, 255, 1);
  7239. box-sizing:border-box;
  7240. border-width:1px;
  7241. border-style:solid;
  7242. border-color:rgba(170, 170, 170, 1);
  7243. border-radius:4px;
  7244. -moz-box-shadow:none;
  7245. -webkit-box-shadow:none;
  7246. box-shadow:none;
  7247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7248. font-weight:400;
  7249. font-style:normal;
  7250. font-size:14px;
  7251. }
  7252. #u97166 {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:1211px;
  7256. top:988px;
  7257. width:60px;
  7258. height:30px;
  7259. display:flex;
  7260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7261. font-weight:400;
  7262. font-style:normal;
  7263. font-size:14px;
  7264. }
  7265. #u97166 .text {
  7266. position:absolute;
  7267. align-self:center;
  7268. padding:2px 2px 2px 2px;
  7269. box-sizing:border-box;
  7270. width:100%;
  7271. }
  7272. #u97166_text {
  7273. border-width:0px;
  7274. word-wrap:break-word;
  7275. text-transform:none;
  7276. }
  7277. #u97167_div {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:440px;
  7283. height:40px;
  7284. background:inherit;
  7285. background-color:rgba(255, 255, 128, 0.2);
  7286. border:none;
  7287. border-top:0px;
  7288. border-right:0px;
  7289. border-bottom:0px;
  7290. border-radius:0px;
  7291. border-top-left-radius:0px;
  7292. border-bottom-left-radius:0px;
  7293. -moz-box-shadow:none;
  7294. -webkit-box-shadow:none;
  7295. box-shadow:none;
  7296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7297. font-weight:400;
  7298. font-style:normal;
  7299. font-size:14px;
  7300. color:#F59A23;
  7301. }
  7302. #u97167 {
  7303. border-width:0px;
  7304. position:absolute;
  7305. left:907px;
  7306. top:595px;
  7307. width:440px;
  7308. height:40px;
  7309. display:flex;
  7310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:14px;
  7314. color:#F59A23;
  7315. }
  7316. #u97167 .text {
  7317. position:absolute;
  7318. align-self:center;
  7319. padding:5px 10px 5px 20px;
  7320. box-sizing:border-box;
  7321. width:100%;
  7322. }
  7323. #u97167_text {
  7324. border-width:0px;
  7325. word-wrap:break-word;
  7326. text-transform:none;
  7327. }
  7328. #u97168 {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:923px;
  7332. top:665px;
  7333. width:168px;
  7334. height:260px;
  7335. }
  7336. #u97168_children {
  7337. border-width:0px;
  7338. position:absolute;
  7339. left:0px;
  7340. top:0px;
  7341. width:0px;
  7342. height:0px;
  7343. }
  7344. #u97169 {
  7345. border-width:0px;
  7346. position:absolute;
  7347. left:0px;
  7348. top:0px;
  7349. width:113px;
  7350. height:20px;
  7351. color:#298FFF;
  7352. }
  7353. #u97170_img {
  7354. border-width:0px;
  7355. position:absolute;
  7356. left:0px;
  7357. top:0px;
  7358. width:9px;
  7359. height:9px;
  7360. }
  7361. #u97170 {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:6px;
  7365. top:6px;
  7366. width:9px;
  7367. height:9px;
  7368. display:flex;
  7369. }
  7370. #u97170 .text {
  7371. position:absolute;
  7372. align-self:center;
  7373. padding:2px 2px 2px 2px;
  7374. box-sizing:border-box;
  7375. width:100%;
  7376. }
  7377. #u97170_img.selected {
  7378. }
  7379. #u97170.selected {
  7380. }
  7381. #u97170_text {
  7382. border-width:0px;
  7383. word-wrap:break-word;
  7384. text-transform:none;
  7385. visibility:hidden;
  7386. }
  7387. #u97171_div {
  7388. border-width:0px;
  7389. position:absolute;
  7390. left:0px;
  7391. top:0px;
  7392. width:91px;
  7393. height:20px;
  7394. background:inherit;
  7395. background-color:rgba(255, 255, 255, 0);
  7396. border:none;
  7397. border-radius:0px;
  7398. -moz-box-shadow:none;
  7399. -webkit-box-shadow:none;
  7400. box-shadow:none;
  7401. }
  7402. #u97171 {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:22px;
  7406. top:0px;
  7407. width:91px;
  7408. height:20px;
  7409. display:flex;
  7410. }
  7411. #u97171 .text {
  7412. position:absolute;
  7413. align-self:center;
  7414. padding:2px 2px 2px 3px;
  7415. box-sizing:border-box;
  7416. width:100%;
  7417. }
  7418. #u97171_text {
  7419. border-width:0px;
  7420. white-space:nowrap;
  7421. text-transform:none;
  7422. }
  7423. #u97169_children {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:0px;
  7427. top:0px;
  7428. width:0px;
  7429. height:0px;
  7430. }
  7431. #u97172 {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:20px;
  7435. top:20px;
  7436. width:148px;
  7437. height:20px;
  7438. }
  7439. #u97173_div {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:0px;
  7443. top:0px;
  7444. width:126px;
  7445. height:20px;
  7446. background:inherit;
  7447. background-color:rgba(255, 255, 255, 0);
  7448. border:none;
  7449. border-radius:0px;
  7450. -moz-box-shadow:none;
  7451. -webkit-box-shadow:none;
  7452. box-shadow:none;
  7453. }
  7454. #u97173 {
  7455. border-width:0px;
  7456. position:absolute;
  7457. left:22px;
  7458. top:0px;
  7459. width:126px;
  7460. height:20px;
  7461. display:flex;
  7462. }
  7463. #u97173 .text {
  7464. position:absolute;
  7465. align-self:center;
  7466. padding:2px 2px 2px 3px;
  7467. box-sizing:border-box;
  7468. width:100%;
  7469. }
  7470. #u97173_text {
  7471. border-width:0px;
  7472. white-space:nowrap;
  7473. text-transform:none;
  7474. }
  7475. #u97174 {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:20px;
  7479. top:40px;
  7480. width:122px;
  7481. height:20px;
  7482. }
  7483. #u97175_div {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:0px;
  7487. top:0px;
  7488. width:100px;
  7489. height:20px;
  7490. background:inherit;
  7491. background-color:rgba(255, 255, 255, 0);
  7492. border:none;
  7493. border-radius:0px;
  7494. -moz-box-shadow:none;
  7495. -webkit-box-shadow:none;
  7496. box-shadow:none;
  7497. }
  7498. #u97175 {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:22px;
  7502. top:0px;
  7503. width:100px;
  7504. height:20px;
  7505. display:flex;
  7506. }
  7507. #u97175 .text {
  7508. position:absolute;
  7509. align-self:center;
  7510. padding:2px 2px 2px 3px;
  7511. box-sizing:border-box;
  7512. width:100%;
  7513. }
  7514. #u97175_text {
  7515. border-width:0px;
  7516. white-space:nowrap;
  7517. text-transform:none;
  7518. }
  7519. #u97176 {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:20px;
  7523. top:60px;
  7524. width:122px;
  7525. height:20px;
  7526. }
  7527. #u97177_div {
  7528. border-width:0px;
  7529. position:absolute;
  7530. left:0px;
  7531. top:0px;
  7532. width:100px;
  7533. height:20px;
  7534. background:inherit;
  7535. background-color:rgba(255, 255, 255, 0);
  7536. border:none;
  7537. border-radius:0px;
  7538. -moz-box-shadow:none;
  7539. -webkit-box-shadow:none;
  7540. box-shadow:none;
  7541. }
  7542. #u97177 {
  7543. border-width:0px;
  7544. position:absolute;
  7545. left:22px;
  7546. top:0px;
  7547. width:100px;
  7548. height:20px;
  7549. display:flex;
  7550. }
  7551. #u97177 .text {
  7552. position:absolute;
  7553. align-self:center;
  7554. padding:2px 2px 2px 3px;
  7555. box-sizing:border-box;
  7556. width:100%;
  7557. }
  7558. #u97177_text {
  7559. border-width:0px;
  7560. white-space:nowrap;
  7561. text-transform:none;
  7562. }
  7563. #u97178 {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:0px;
  7567. top:80px;
  7568. width:113px;
  7569. height:20px;
  7570. }
  7571. #u97179_img {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:0px;
  7575. top:0px;
  7576. width:9px;
  7577. height:9px;
  7578. }
  7579. #u97179 {
  7580. border-width:0px;
  7581. position:absolute;
  7582. left:6px;
  7583. top:6px;
  7584. width:9px;
  7585. height:9px;
  7586. display:flex;
  7587. }
  7588. #u97179 .text {
  7589. position:absolute;
  7590. align-self:center;
  7591. padding:2px 2px 2px 2px;
  7592. box-sizing:border-box;
  7593. width:100%;
  7594. }
  7595. #u97179_img.selected {
  7596. }
  7597. #u97179.selected {
  7598. }
  7599. #u97179_text {
  7600. border-width:0px;
  7601. word-wrap:break-word;
  7602. text-transform:none;
  7603. visibility:hidden;
  7604. }
  7605. #u97180_div {
  7606. border-width:0px;
  7607. position:absolute;
  7608. left:0px;
  7609. top:0px;
  7610. width:91px;
  7611. height:20px;
  7612. background:inherit;
  7613. background-color:rgba(255, 255, 255, 0);
  7614. border:none;
  7615. border-radius:0px;
  7616. -moz-box-shadow:none;
  7617. -webkit-box-shadow:none;
  7618. box-shadow:none;
  7619. }
  7620. #u97180 {
  7621. border-width:0px;
  7622. position:absolute;
  7623. left:22px;
  7624. top:0px;
  7625. width:91px;
  7626. height:20px;
  7627. display:flex;
  7628. }
  7629. #u97180 .text {
  7630. position:absolute;
  7631. align-self:center;
  7632. padding:2px 2px 2px 3px;
  7633. box-sizing:border-box;
  7634. width:100%;
  7635. }
  7636. #u97180_text {
  7637. border-width:0px;
  7638. white-space:nowrap;
  7639. text-transform:none;
  7640. }
  7641. #u97178_children {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:0px;
  7645. top:0px;
  7646. width:0px;
  7647. height:0px;
  7648. }
  7649. #u97181 {
  7650. border-width:0px;
  7651. position:absolute;
  7652. left:20px;
  7653. top:20px;
  7654. width:93px;
  7655. height:20px;
  7656. }
  7657. #u97182_div {
  7658. border-width:0px;
  7659. position:absolute;
  7660. left:0px;
  7661. top:0px;
  7662. width:71px;
  7663. height:20px;
  7664. background:inherit;
  7665. background-color:rgba(255, 255, 255, 0);
  7666. border:none;
  7667. border-radius:0px;
  7668. -moz-box-shadow:none;
  7669. -webkit-box-shadow:none;
  7670. box-shadow:none;
  7671. }
  7672. #u97182 {
  7673. border-width:0px;
  7674. position:absolute;
  7675. left:22px;
  7676. top:0px;
  7677. width:71px;
  7678. height:20px;
  7679. display:flex;
  7680. }
  7681. #u97182 .text {
  7682. position:absolute;
  7683. align-self:center;
  7684. padding:2px 2px 2px 3px;
  7685. box-sizing:border-box;
  7686. width:100%;
  7687. }
  7688. #u97182_text {
  7689. border-width:0px;
  7690. white-space:nowrap;
  7691. text-transform:none;
  7692. }
  7693. #u97183 {
  7694. border-width:0px;
  7695. position:absolute;
  7696. left:20px;
  7697. top:40px;
  7698. width:93px;
  7699. height:20px;
  7700. }
  7701. #u97184_div {
  7702. border-width:0px;
  7703. position:absolute;
  7704. left:0px;
  7705. top:0px;
  7706. width:71px;
  7707. height:20px;
  7708. background:inherit;
  7709. background-color:rgba(255, 255, 255, 0);
  7710. border:none;
  7711. border-radius:0px;
  7712. -moz-box-shadow:none;
  7713. -webkit-box-shadow:none;
  7714. box-shadow:none;
  7715. }
  7716. #u97184 {
  7717. border-width:0px;
  7718. position:absolute;
  7719. left:22px;
  7720. top:0px;
  7721. width:71px;
  7722. height:20px;
  7723. display:flex;
  7724. }
  7725. #u97184 .text {
  7726. position:absolute;
  7727. align-self:center;
  7728. padding:2px 2px 2px 3px;
  7729. box-sizing:border-box;
  7730. width:100%;
  7731. }
  7732. #u97184_text {
  7733. border-width:0px;
  7734. white-space:nowrap;
  7735. text-transform:none;
  7736. }
  7737. #u97185 {
  7738. border-width:0px;
  7739. position:absolute;
  7740. left:0px;
  7741. top:140px;
  7742. width:80px;
  7743. height:20px;
  7744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7745. font-weight:400;
  7746. font-style:normal;
  7747. }
  7748. #u97186_img {
  7749. border-width:0px;
  7750. position:absolute;
  7751. left:0px;
  7752. top:0px;
  7753. width:9px;
  7754. height:9px;
  7755. }
  7756. #u97186 {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:6px;
  7760. top:6px;
  7761. width:9px;
  7762. height:9px;
  7763. display:flex;
  7764. }
  7765. #u97186 .text {
  7766. position:absolute;
  7767. align-self:center;
  7768. padding:2px 2px 2px 2px;
  7769. box-sizing:border-box;
  7770. width:100%;
  7771. }
  7772. #u97186_img.selected {
  7773. }
  7774. #u97186.selected {
  7775. }
  7776. #u97186_text {
  7777. border-width:0px;
  7778. word-wrap:break-word;
  7779. text-transform:none;
  7780. visibility:hidden;
  7781. }
  7782. #u97187_div {
  7783. border-width:0px;
  7784. position:absolute;
  7785. left:0px;
  7786. top:0px;
  7787. width:58px;
  7788. height:20px;
  7789. background:inherit;
  7790. background-color:rgba(255, 255, 255, 0);
  7791. border:none;
  7792. border-radius:0px;
  7793. -moz-box-shadow:none;
  7794. -webkit-box-shadow:none;
  7795. box-shadow:none;
  7796. }
  7797. #u97187 {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:22px;
  7801. top:0px;
  7802. width:58px;
  7803. height:20px;
  7804. display:flex;
  7805. }
  7806. #u97187 .text {
  7807. position:absolute;
  7808. align-self:center;
  7809. padding:2px 2px 2px 3px;
  7810. box-sizing:border-box;
  7811. width:100%;
  7812. }
  7813. #u97187_text {
  7814. border-width:0px;
  7815. white-space:nowrap;
  7816. text-transform:none;
  7817. }
  7818. #u97185_children {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:0px;
  7822. top:0px;
  7823. width:0px;
  7824. height:0px;
  7825. }
  7826. #u97188 {
  7827. border-width:0px;
  7828. position:absolute;
  7829. left:20px;
  7830. top:20px;
  7831. width:97px;
  7832. height:20px;
  7833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7834. font-weight:400;
  7835. font-style:normal;
  7836. }
  7837. #u97189_div {
  7838. border-width:0px;
  7839. position:absolute;
  7840. left:0px;
  7841. top:0px;
  7842. width:75px;
  7843. height:20px;
  7844. background:inherit;
  7845. background-color:rgba(255, 255, 255, 0);
  7846. border:none;
  7847. border-radius:0px;
  7848. -moz-box-shadow:none;
  7849. -webkit-box-shadow:none;
  7850. box-shadow:none;
  7851. }
  7852. #u97189 {
  7853. border-width:0px;
  7854. position:absolute;
  7855. left:22px;
  7856. top:0px;
  7857. width:75px;
  7858. height:20px;
  7859. display:flex;
  7860. }
  7861. #u97189 .text {
  7862. position:absolute;
  7863. align-self:center;
  7864. padding:2px 2px 2px 3px;
  7865. box-sizing:border-box;
  7866. width:100%;
  7867. }
  7868. #u97189_text {
  7869. border-width:0px;
  7870. white-space:nowrap;
  7871. text-transform:none;
  7872. }
  7873. #u97190 {
  7874. border-width:0px;
  7875. position:absolute;
  7876. left:20px;
  7877. top:40px;
  7878. width:97px;
  7879. height:20px;
  7880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7881. font-weight:400;
  7882. font-style:normal;
  7883. }
  7884. #u97191_div {
  7885. border-width:0px;
  7886. position:absolute;
  7887. left:0px;
  7888. top:0px;
  7889. width:75px;
  7890. height:20px;
  7891. background:inherit;
  7892. background-color:rgba(255, 255, 255, 0);
  7893. border:none;
  7894. border-radius:0px;
  7895. -moz-box-shadow:none;
  7896. -webkit-box-shadow:none;
  7897. box-shadow:none;
  7898. }
  7899. #u97191 {
  7900. border-width:0px;
  7901. position:absolute;
  7902. left:22px;
  7903. top:0px;
  7904. width:75px;
  7905. height:20px;
  7906. display:flex;
  7907. }
  7908. #u97191 .text {
  7909. position:absolute;
  7910. align-self:center;
  7911. padding:2px 2px 2px 3px;
  7912. box-sizing:border-box;
  7913. width:100%;
  7914. }
  7915. #u97191_text {
  7916. border-width:0px;
  7917. white-space:nowrap;
  7918. text-transform:none;
  7919. }
  7920. #u97192 {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:0px;
  7924. top:200px;
  7925. width:80px;
  7926. height:20px;
  7927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7928. font-weight:400;
  7929. font-style:normal;
  7930. }
  7931. #u97193_img {
  7932. border-width:0px;
  7933. position:absolute;
  7934. left:0px;
  7935. top:0px;
  7936. width:9px;
  7937. height:9px;
  7938. }
  7939. #u97193 {
  7940. border-width:0px;
  7941. position:absolute;
  7942. left:6px;
  7943. top:6px;
  7944. width:9px;
  7945. height:9px;
  7946. display:flex;
  7947. }
  7948. #u97193 .text {
  7949. position:absolute;
  7950. align-self:center;
  7951. padding:2px 2px 2px 2px;
  7952. box-sizing:border-box;
  7953. width:100%;
  7954. }
  7955. #u97193_img.selected {
  7956. }
  7957. #u97193.selected {
  7958. }
  7959. #u97193_text {
  7960. border-width:0px;
  7961. word-wrap:break-word;
  7962. text-transform:none;
  7963. visibility:hidden;
  7964. }
  7965. #u97194_div {
  7966. border-width:0px;
  7967. position:absolute;
  7968. left:0px;
  7969. top:0px;
  7970. width:58px;
  7971. height:20px;
  7972. background:inherit;
  7973. background-color:rgba(255, 255, 255, 0);
  7974. border:none;
  7975. border-radius:0px;
  7976. -moz-box-shadow:none;
  7977. -webkit-box-shadow:none;
  7978. box-shadow:none;
  7979. }
  7980. #u97194 {
  7981. border-width:0px;
  7982. position:absolute;
  7983. left:22px;
  7984. top:0px;
  7985. width:58px;
  7986. height:20px;
  7987. display:flex;
  7988. }
  7989. #u97194 .text {
  7990. position:absolute;
  7991. align-self:center;
  7992. padding:2px 2px 2px 3px;
  7993. box-sizing:border-box;
  7994. width:100%;
  7995. }
  7996. #u97194_text {
  7997. border-width:0px;
  7998. white-space:nowrap;
  7999. text-transform:none;
  8000. }
  8001. #u97192_children {
  8002. border-width:0px;
  8003. position:absolute;
  8004. left:0px;
  8005. top:0px;
  8006. width:0px;
  8007. height:0px;
  8008. }
  8009. #u97195 {
  8010. border-width:0px;
  8011. position:absolute;
  8012. left:20px;
  8013. top:20px;
  8014. width:97px;
  8015. height:20px;
  8016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8017. font-weight:400;
  8018. font-style:normal;
  8019. }
  8020. #u97196_div {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:75px;
  8026. height:20px;
  8027. background:inherit;
  8028. background-color:rgba(255, 255, 255, 0);
  8029. border:none;
  8030. border-radius:0px;
  8031. -moz-box-shadow:none;
  8032. -webkit-box-shadow:none;
  8033. box-shadow:none;
  8034. }
  8035. #u97196 {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:22px;
  8039. top:0px;
  8040. width:75px;
  8041. height:20px;
  8042. display:flex;
  8043. }
  8044. #u97196 .text {
  8045. position:absolute;
  8046. align-self:center;
  8047. padding:2px 2px 2px 3px;
  8048. box-sizing:border-box;
  8049. width:100%;
  8050. }
  8051. #u97196_text {
  8052. border-width:0px;
  8053. white-space:nowrap;
  8054. text-transform:none;
  8055. }
  8056. #u97197 {
  8057. border-width:0px;
  8058. position:absolute;
  8059. left:20px;
  8060. top:40px;
  8061. width:97px;
  8062. height:20px;
  8063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8064. font-weight:400;
  8065. font-style:normal;
  8066. }
  8067. #u97198_div {
  8068. border-width:0px;
  8069. position:absolute;
  8070. left:0px;
  8071. top:0px;
  8072. width:75px;
  8073. height:20px;
  8074. background:inherit;
  8075. background-color:rgba(255, 255, 255, 0);
  8076. border:none;
  8077. border-radius:0px;
  8078. -moz-box-shadow:none;
  8079. -webkit-box-shadow:none;
  8080. box-shadow:none;
  8081. }
  8082. #u97198 {
  8083. border-width:0px;
  8084. position:absolute;
  8085. left:22px;
  8086. top:0px;
  8087. width:75px;
  8088. height:20px;
  8089. display:flex;
  8090. }
  8091. #u97198 .text {
  8092. position:absolute;
  8093. align-self:center;
  8094. padding:2px 2px 2px 3px;
  8095. box-sizing:border-box;
  8096. width:100%;
  8097. }
  8098. #u97198_text {
  8099. border-width:0px;
  8100. white-space:nowrap;
  8101. text-transform:none;
  8102. }
  8103. #u97199_img {
  8104. border-width:0px;
  8105. position:absolute;
  8106. left:0px;
  8107. top:0px;
  8108. width:10px;
  8109. height:8px;
  8110. }
  8111. #u97199 {
  8112. border-width:0px;
  8113. position:absolute;
  8114. left:1312px;
  8115. top:670px;
  8116. width:10px;
  8117. height:8px;
  8118. display:flex;
  8119. }
  8120. #u97199 .text {
  8121. position:absolute;
  8122. align-self:center;
  8123. padding:2px 2px 2px 2px;
  8124. box-sizing:border-box;
  8125. width:100%;
  8126. }
  8127. #u97199_text {
  8128. border-width:0px;
  8129. word-wrap:break-word;
  8130. text-transform:none;
  8131. visibility:hidden;
  8132. }
  8133. #u97200_img {
  8134. border-width:0px;
  8135. position:absolute;
  8136. left:0px;
  8137. top:0px;
  8138. width:10px;
  8139. height:8px;
  8140. }
  8141. #u97200 {
  8142. border-width:0px;
  8143. position:absolute;
  8144. left:1312px;
  8145. top:690px;
  8146. width:10px;
  8147. height:8px;
  8148. display:flex;
  8149. }
  8150. #u97200 .text {
  8151. position:absolute;
  8152. align-self:center;
  8153. padding:2px 2px 2px 2px;
  8154. box-sizing:border-box;
  8155. width:100%;
  8156. }
  8157. #u97200_text {
  8158. border-width:0px;
  8159. word-wrap:break-word;
  8160. text-transform:none;
  8161. visibility:hidden;
  8162. }
  8163. #u97201_img {
  8164. border-width:0px;
  8165. position:absolute;
  8166. left:0px;
  8167. top:0px;
  8168. width:10px;
  8169. height:8px;
  8170. }
  8171. #u97201 {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:1312px;
  8175. top:710px;
  8176. width:10px;
  8177. height:8px;
  8178. display:flex;
  8179. }
  8180. #u97201 .text {
  8181. position:absolute;
  8182. align-self:center;
  8183. padding:2px 2px 2px 2px;
  8184. box-sizing:border-box;
  8185. width:100%;
  8186. }
  8187. #u97201_text {
  8188. border-width:0px;
  8189. word-wrap:break-word;
  8190. text-transform:none;
  8191. visibility:hidden;
  8192. }
  8193. #u97202_img {
  8194. border-width:0px;
  8195. position:absolute;
  8196. left:0px;
  8197. top:0px;
  8198. width:10px;
  8199. height:8px;
  8200. }
  8201. #u97202 {
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:1312px;
  8205. top:730px;
  8206. width:10px;
  8207. height:8px;
  8208. display:flex;
  8209. }
  8210. #u97202 .text {
  8211. position:absolute;
  8212. align-self:center;
  8213. padding:2px 2px 2px 2px;
  8214. box-sizing:border-box;
  8215. width:100%;
  8216. }
  8217. #u97202_text {
  8218. border-width:0px;
  8219. word-wrap:break-word;
  8220. text-transform:none;
  8221. visibility:hidden;
  8222. }
  8223. #u97203_img {
  8224. border-width:0px;
  8225. position:absolute;
  8226. left:0px;
  8227. top:0px;
  8228. width:10px;
  8229. height:8px;
  8230. }
  8231. #u97203 {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:1312px;
  8235. top:751px;
  8236. width:10px;
  8237. height:8px;
  8238. display:flex;
  8239. }
  8240. #u97203 .text {
  8241. position:absolute;
  8242. align-self:center;
  8243. padding:2px 2px 2px 2px;
  8244. box-sizing:border-box;
  8245. width:100%;
  8246. }
  8247. #u97203_text {
  8248. border-width:0px;
  8249. word-wrap:break-word;
  8250. text-transform:none;
  8251. visibility:hidden;
  8252. }
  8253. #u97204_img {
  8254. border-width:0px;
  8255. position:absolute;
  8256. left:0px;
  8257. top:0px;
  8258. width:10px;
  8259. height:8px;
  8260. }
  8261. #u97204 {
  8262. border-width:0px;
  8263. position:absolute;
  8264. left:1312px;
  8265. top:771px;
  8266. width:10px;
  8267. height:8px;
  8268. display:flex;
  8269. }
  8270. #u97204 .text {
  8271. position:absolute;
  8272. align-self:center;
  8273. padding:2px 2px 2px 2px;
  8274. box-sizing:border-box;
  8275. width:100%;
  8276. }
  8277. #u97204_text {
  8278. border-width:0px;
  8279. word-wrap:break-word;
  8280. text-transform:none;
  8281. visibility:hidden;
  8282. }
  8283. #u97205_img {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:0px;
  8287. top:0px;
  8288. width:10px;
  8289. height:8px;
  8290. }
  8291. #u97205 {
  8292. border-width:0px;
  8293. position:absolute;
  8294. left:1312px;
  8295. top:791px;
  8296. width:10px;
  8297. height:8px;
  8298. display:flex;
  8299. }
  8300. #u97205 .text {
  8301. position:absolute;
  8302. align-self:center;
  8303. padding:2px 2px 2px 2px;
  8304. box-sizing:border-box;
  8305. width:100%;
  8306. }
  8307. #u97205_text {
  8308. border-width:0px;
  8309. word-wrap:break-word;
  8310. text-transform:none;
  8311. visibility:hidden;
  8312. }
  8313. #u97206_img {
  8314. border-width:0px;
  8315. position:absolute;
  8316. left:0px;
  8317. top:0px;
  8318. width:10px;
  8319. height:8px;
  8320. }
  8321. #u97206 {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:1312px;
  8325. top:811px;
  8326. width:10px;
  8327. height:8px;
  8328. display:flex;
  8329. }
  8330. #u97206 .text {
  8331. position:absolute;
  8332. align-self:center;
  8333. padding:2px 2px 2px 2px;
  8334. box-sizing:border-box;
  8335. width:100%;
  8336. }
  8337. #u97206_text {
  8338. border-width:0px;
  8339. word-wrap:break-word;
  8340. text-transform:none;
  8341. visibility:hidden;
  8342. }
  8343. #u97207_img {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:0px;
  8347. top:0px;
  8348. width:10px;
  8349. height:8px;
  8350. }
  8351. #u97207 {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:1312px;
  8355. top:831px;
  8356. width:10px;
  8357. height:8px;
  8358. display:flex;
  8359. }
  8360. #u97207 .text {
  8361. position:absolute;
  8362. align-self:center;
  8363. padding:2px 2px 2px 2px;
  8364. box-sizing:border-box;
  8365. width:100%;
  8366. }
  8367. #u97207_text {
  8368. border-width:0px;
  8369. word-wrap:break-word;
  8370. text-transform:none;
  8371. visibility:hidden;
  8372. }
  8373. #u97208_img {
  8374. border-width:0px;
  8375. position:absolute;
  8376. left:0px;
  8377. top:0px;
  8378. width:10px;
  8379. height:8px;
  8380. }
  8381. #u97208 {
  8382. border-width:0px;
  8383. position:absolute;
  8384. left:1312px;
  8385. top:851px;
  8386. width:10px;
  8387. height:8px;
  8388. display:flex;
  8389. }
  8390. #u97208 .text {
  8391. position:absolute;
  8392. align-self:center;
  8393. padding:2px 2px 2px 2px;
  8394. box-sizing:border-box;
  8395. width:100%;
  8396. }
  8397. #u97208_text {
  8398. border-width:0px;
  8399. word-wrap:break-word;
  8400. text-transform:none;
  8401. visibility:hidden;
  8402. }
  8403. #u97209_img {
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:0px;
  8407. top:0px;
  8408. width:10px;
  8409. height:8px;
  8410. }
  8411. #u97209 {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:1312px;
  8415. top:872px;
  8416. width:10px;
  8417. height:8px;
  8418. display:flex;
  8419. }
  8420. #u97209 .text {
  8421. position:absolute;
  8422. align-self:center;
  8423. padding:2px 2px 2px 2px;
  8424. box-sizing:border-box;
  8425. width:100%;
  8426. }
  8427. #u97209_text {
  8428. border-width:0px;
  8429. word-wrap:break-word;
  8430. text-transform:none;
  8431. visibility:hidden;
  8432. }
  8433. #u97210_img {
  8434. border-width:0px;
  8435. position:absolute;
  8436. left:0px;
  8437. top:0px;
  8438. width:10px;
  8439. height:8px;
  8440. }
  8441. #u97210 {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:1312px;
  8445. top:892px;
  8446. width:10px;
  8447. height:8px;
  8448. display:flex;
  8449. }
  8450. #u97210 .text {
  8451. position:absolute;
  8452. align-self:center;
  8453. padding:2px 2px 2px 2px;
  8454. box-sizing:border-box;
  8455. width:100%;
  8456. }
  8457. #u97210_text {
  8458. border-width:0px;
  8459. word-wrap:break-word;
  8460. text-transform:none;
  8461. visibility:hidden;
  8462. }
  8463. #u97211_img {
  8464. border-width:0px;
  8465. position:absolute;
  8466. left:0px;
  8467. top:0px;
  8468. width:10px;
  8469. height:8px;
  8470. }
  8471. #u97211 {
  8472. border-width:0px;
  8473. position:absolute;
  8474. left:1312px;
  8475. top:912px;
  8476. width:10px;
  8477. height:8px;
  8478. display:flex;
  8479. }
  8480. #u97211 .text {
  8481. position:absolute;
  8482. align-self:center;
  8483. padding:2px 2px 2px 2px;
  8484. box-sizing:border-box;
  8485. width:100%;
  8486. }
  8487. #u97211_text {
  8488. border-width:0px;
  8489. word-wrap:break-word;
  8490. text-transform:none;
  8491. visibility:hidden;
  8492. }
  8493. #u97212_div {
  8494. border-width:0px;
  8495. position:absolute;
  8496. left:0px;
  8497. top:0px;
  8498. width:21px;
  8499. height:35px;
  8500. background:inherit;
  8501. background-color:rgba(255, 255, 255, 0);
  8502. border:none;
  8503. border-top:0px;
  8504. border-right:0px;
  8505. border-bottom:0px;
  8506. border-radius:0px;
  8507. border-top-left-radius:0px;
  8508. border-bottom-left-radius:0px;
  8509. -moz-box-shadow:none;
  8510. -webkit-box-shadow:none;
  8511. box-shadow:none;
  8512. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8513. font-weight:500;
  8514. font-style:normal;
  8515. font-size:18px;
  8516. }
  8517. #u97212 {
  8518. border-width:0px;
  8519. position:absolute;
  8520. left:1340px;
  8521. top:519px;
  8522. width:21px;
  8523. height:35px;
  8524. display:flex;
  8525. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8526. font-weight:500;
  8527. font-style:normal;
  8528. font-size:18px;
  8529. }
  8530. #u97212 .text {
  8531. position:absolute;
  8532. align-self:center;
  8533. padding:5px 10px 5px 0px;
  8534. box-sizing:border-box;
  8535. width:100%;
  8536. }
  8537. #u97212_text {
  8538. border-width:0px;
  8539. white-space:nowrap;
  8540. text-transform:none;
  8541. }