styles.css 154 KB

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