styles.css 153 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u75971_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. #u75971 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u75971 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u75971_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u75972_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. #u75972 {
  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. #u75972 .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. #u75972_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u75973_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. #u75973 {
  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. #u75973 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u75973_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u75974 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u75975_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u75975 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u75975 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u75975_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u75976_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. #u75976 {
  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. #u75976 .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. #u75976_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u75977_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. #u75977 {
  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. #u75977 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u75977_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u75978 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u75979_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. #u75979 {
  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. #u75979 .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. #u75979_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u75980_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u75980 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u75980 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u75980_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u75981 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u75982_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. #u75982 {
  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. #u75982 .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. #u75982_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u75983_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u75983 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u75983 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u75983_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u75984 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u75985_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. #u75985 {
  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. #u75985 .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. #u75985_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u75986_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u75986 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u75986 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u75986_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u75987 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u75988_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. #u75988 {
  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. #u75988 .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. #u75988_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u75989_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u75989 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u75989 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u75989_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u75990 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u75991_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. #u75991 {
  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. #u75991 .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. #u75991_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u75992_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u75992 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u75992 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u75992_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u75993 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u75994_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. #u75994 {
  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. #u75994 .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. #u75994_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u75995_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u75995 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u75995 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u75995_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u75996 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u75997_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. #u75997 {
  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. #u75997 .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. #u75997_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u75998_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u75998 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u75998 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u75998_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u75999 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u76000_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. #u76000 {
  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. #u76000 .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. #u76000_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u76001_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u76001 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u76001 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u76001_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u76002 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u76003_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. #u76003 {
  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. #u76003 .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. #u76003_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u76004_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u76004 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u76004 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u76004_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u76005_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. #u76005 {
  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. #u76005 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u76005_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u76006_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u76006 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u76006 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u76006_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u76007_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. #u76007 {
  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. #u76007 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u76007_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u76008_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u76008 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u76008 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u76008_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u76009 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u76010_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. #u76010 {
  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. #u76010 .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. #u76010_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u76011_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u76011 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u76011 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u76011_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u76012 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u76013_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. #u76013 {
  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. #u76013 .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. #u76013_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u76014_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u76014 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u76014 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u76014_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u76015 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u76016_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. #u76016_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. #u76016_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. #u76016 {
  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. #u76016 .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. #u76016_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. #u76016.disabled {
  1428. }
  1429. .u76016_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u76017_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u76017 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u76017 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u76017_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u76018_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. #u76018 {
  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. #u76018 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u76018_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u76019_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u76019 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u76019 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u76019_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u76020_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1260px;
  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(0, 0, 0, 0.349019607843137);
  1550. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1551. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1552. }
  1553. #u76020 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:331px;
  1557. top:50px;
  1558. width:1260px;
  1559. height:1191px;
  1560. display:flex;
  1561. }
  1562. #u76020 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u76020_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u76021_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:73px;
  1581. height:25px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1590. font-weight:400;
  1591. font-style:normal;
  1592. font-size:18px;
  1593. }
  1594. #u76021 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:351px;
  1598. top:71px;
  1599. width:73px;
  1600. height:25px;
  1601. display:flex;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:18px;
  1606. }
  1607. #u76021 .text {
  1608. position:absolute;
  1609. align-self:flex-start;
  1610. padding:0px 0px 0px 0px;
  1611. box-sizing:border-box;
  1612. width:100%;
  1613. }
  1614. #u76021_text {
  1615. border-width:0px;
  1616. white-space:nowrap;
  1617. text-transform:none;
  1618. }
  1619. #u76022 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:351px;
  1623. top:213px;
  1624. width:1227px;
  1625. height:293px;
  1626. }
  1627. #u76023_img {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:74px;
  1633. height:34px;
  1634. }
  1635. #u76023 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:0px;
  1639. top:0px;
  1640. width:74px;
  1641. height:34px;
  1642. display:flex;
  1643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1644. font-weight:400;
  1645. font-style:normal;
  1646. font-size:14px;
  1647. color:#FFFFFF;
  1648. text-align:left;
  1649. line-height:30px;
  1650. }
  1651. #u76023 .text {
  1652. position:absolute;
  1653. align-self:center;
  1654. padding:2px 10px 2px 10px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u76023_text {
  1659. border-width:0px;
  1660. word-wrap:break-word;
  1661. text-transform:none;
  1662. }
  1663. #u76024_img {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:74px;
  1669. height:34px;
  1670. }
  1671. #u76024 {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:74px;
  1675. top:0px;
  1676. width:74px;
  1677. height:34px;
  1678. display:flex;
  1679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1680. font-weight:400;
  1681. font-style:normal;
  1682. font-size:14px;
  1683. color:#FFFFFF;
  1684. text-align:left;
  1685. line-height:30px;
  1686. }
  1687. #u76024 .text {
  1688. position:absolute;
  1689. align-self:center;
  1690. padding:2px 10px 2px 10px;
  1691. box-sizing:border-box;
  1692. width:100%;
  1693. }
  1694. #u76024_text {
  1695. border-width:0px;
  1696. word-wrap:break-word;
  1697. text-transform:none;
  1698. }
  1699. #u76025_img {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:111px;
  1705. height:34px;
  1706. }
  1707. #u76025 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:148px;
  1711. top:0px;
  1712. width:111px;
  1713. height:34px;
  1714. display:flex;
  1715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1716. font-weight:400;
  1717. font-style:normal;
  1718. font-size:14px;
  1719. color:#FFFFFF;
  1720. text-align:left;
  1721. line-height:30px;
  1722. }
  1723. #u76025 .text {
  1724. position:absolute;
  1725. align-self:center;
  1726. padding:2px 10px 2px 10px;
  1727. box-sizing:border-box;
  1728. width:100%;
  1729. }
  1730. #u76025_text {
  1731. border-width:0px;
  1732. word-wrap:break-word;
  1733. text-transform:none;
  1734. }
  1735. #u76026_img {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:93px;
  1741. height:34px;
  1742. }
  1743. #u76026 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:259px;
  1747. top:0px;
  1748. width:93px;
  1749. height:34px;
  1750. display:flex;
  1751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1752. font-weight:400;
  1753. font-style:normal;
  1754. font-size:14px;
  1755. color:#FFFFFF;
  1756. text-align:left;
  1757. line-height:30px;
  1758. }
  1759. #u76026 .text {
  1760. position:absolute;
  1761. align-self:center;
  1762. padding:2px 10px 2px 10px;
  1763. box-sizing:border-box;
  1764. width:100%;
  1765. }
  1766. #u76026_text {
  1767. border-width:0px;
  1768. word-wrap:break-word;
  1769. text-transform:none;
  1770. }
  1771. #u76027_img {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:93px;
  1777. height:34px;
  1778. }
  1779. #u76027 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:352px;
  1783. top:0px;
  1784. width:93px;
  1785. height:34px;
  1786. display:flex;
  1787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. font-size:14px;
  1791. color:#FFFFFF;
  1792. text-align:left;
  1793. line-height:30px;
  1794. }
  1795. #u76027 .text {
  1796. position:absolute;
  1797. align-self:center;
  1798. padding:2px 10px 2px 10px;
  1799. box-sizing:border-box;
  1800. width:100%;
  1801. }
  1802. #u76027_text {
  1803. border-width:0px;
  1804. word-wrap:break-word;
  1805. text-transform:none;
  1806. }
  1807. #u76028_img {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:93px;
  1813. height:34px;
  1814. }
  1815. #u76028 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:445px;
  1819. top:0px;
  1820. width:93px;
  1821. height:34px;
  1822. display:flex;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:14px;
  1827. color:#FFFFFF;
  1828. text-align:left;
  1829. line-height:30px;
  1830. }
  1831. #u76028 .text {
  1832. position:absolute;
  1833. align-self:center;
  1834. padding:2px 10px 2px 10px;
  1835. box-sizing:border-box;
  1836. width:100%;
  1837. }
  1838. #u76028_text {
  1839. border-width:0px;
  1840. word-wrap:break-word;
  1841. text-transform:none;
  1842. }
  1843. #u76029_img {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:142px;
  1849. height:34px;
  1850. }
  1851. #u76029 {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:538px;
  1855. top:0px;
  1856. width:142px;
  1857. height:34px;
  1858. display:flex;
  1859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1860. font-weight:400;
  1861. font-style:normal;
  1862. font-size:14px;
  1863. color:#FFFFFF;
  1864. text-align:left;
  1865. line-height:30px;
  1866. }
  1867. #u76029 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 10px 2px 10px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u76029_text {
  1875. border-width:0px;
  1876. word-wrap:break-word;
  1877. text-transform:none;
  1878. }
  1879. #u76030_img {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:92px;
  1885. height:34px;
  1886. }
  1887. #u76030 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:680px;
  1891. top:0px;
  1892. width:92px;
  1893. height:34px;
  1894. display:flex;
  1895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1896. font-weight:400;
  1897. font-style:normal;
  1898. font-size:14px;
  1899. color:#FFFFFF;
  1900. text-align:left;
  1901. line-height:30px;
  1902. }
  1903. #u76030 .text {
  1904. position:absolute;
  1905. align-self:center;
  1906. padding:2px 10px 2px 10px;
  1907. box-sizing:border-box;
  1908. width:100%;
  1909. }
  1910. #u76030_text {
  1911. border-width:0px;
  1912. word-wrap:break-word;
  1913. text-transform:none;
  1914. }
  1915. #u76031_img {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:0px;
  1919. top:0px;
  1920. width:102px;
  1921. height:34px;
  1922. }
  1923. #u76031 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:772px;
  1927. top:0px;
  1928. width:102px;
  1929. height:34px;
  1930. display:flex;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:14px;
  1935. color:#FFFFFF;
  1936. text-align:left;
  1937. line-height:30px;
  1938. }
  1939. #u76031 .text {
  1940. position:absolute;
  1941. align-self:center;
  1942. padding:2px 10px 2px 10px;
  1943. box-sizing:border-box;
  1944. width:100%;
  1945. }
  1946. #u76031_text {
  1947. border-width:0px;
  1948. word-wrap:break-word;
  1949. text-transform:none;
  1950. }
  1951. #u76032_img {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:93px;
  1957. height:34px;
  1958. }
  1959. #u76032 {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:874px;
  1963. top:0px;
  1964. width:93px;
  1965. height:34px;
  1966. display:flex;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. font-size:14px;
  1971. color:#FFFFFF;
  1972. text-align:left;
  1973. line-height:30px;
  1974. }
  1975. #u76032 .text {
  1976. position:absolute;
  1977. align-self:center;
  1978. padding:2px 10px 2px 10px;
  1979. box-sizing:border-box;
  1980. width:100%;
  1981. }
  1982. #u76032_text {
  1983. border-width:0px;
  1984. word-wrap:break-word;
  1985. text-transform:none;
  1986. }
  1987. #u76033_img {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:0px;
  1991. top:0px;
  1992. width:93px;
  1993. height:34px;
  1994. }
  1995. #u76033 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:967px;
  1999. top:0px;
  2000. width:93px;
  2001. height:34px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. font-size:14px;
  2007. color:#FFFFFF;
  2008. text-align:left;
  2009. line-height:30px;
  2010. }
  2011. #u76033 .text {
  2012. position:absolute;
  2013. align-self:center;
  2014. padding:2px 10px 2px 10px;
  2015. box-sizing:border-box;
  2016. width:100%;
  2017. }
  2018. #u76033_text {
  2019. border-width:0px;
  2020. word-wrap:break-word;
  2021. text-transform:none;
  2022. }
  2023. #u76034_img {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:167px;
  2029. height:34px;
  2030. }
  2031. #u76034 {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:1060px;
  2035. top:0px;
  2036. width:167px;
  2037. height:34px;
  2038. display:flex;
  2039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. font-size:14px;
  2043. color:#FFFFFF;
  2044. text-align:left;
  2045. line-height:30px;
  2046. }
  2047. #u76034 .text {
  2048. position:absolute;
  2049. align-self:center;
  2050. padding:2px 10px 2px 10px;
  2051. box-sizing:border-box;
  2052. width:100%;
  2053. }
  2054. #u76034_text {
  2055. border-width:0px;
  2056. word-wrap:break-word;
  2057. text-transform:none;
  2058. }
  2059. #u76035_img {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:74px;
  2065. height:37px;
  2066. }
  2067. #u76035 {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:34px;
  2072. width:74px;
  2073. height:37px;
  2074. display:flex;
  2075. font-size:14px;
  2076. text-align:left;
  2077. }
  2078. #u76035 .text {
  2079. position:absolute;
  2080. align-self:center;
  2081. padding:2px 10px 2px 10px;
  2082. box-sizing:border-box;
  2083. width:100%;
  2084. }
  2085. #u76035_text {
  2086. border-width:0px;
  2087. word-wrap:break-word;
  2088. text-transform:none;
  2089. visibility:hidden;
  2090. }
  2091. #u76036_img {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:0px;
  2095. top:0px;
  2096. width:74px;
  2097. height:37px;
  2098. }
  2099. #u76036 {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:74px;
  2103. top:34px;
  2104. width:74px;
  2105. height:37px;
  2106. display:flex;
  2107. font-size:14px;
  2108. text-align:left;
  2109. }
  2110. #u76036 .text {
  2111. position:absolute;
  2112. align-self:center;
  2113. padding:2px 10px 2px 10px;
  2114. box-sizing:border-box;
  2115. width:100%;
  2116. }
  2117. #u76036_text {
  2118. border-width:0px;
  2119. word-wrap:break-word;
  2120. text-transform:none;
  2121. visibility:hidden;
  2122. }
  2123. #u76037_img {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:111px;
  2129. height:37px;
  2130. }
  2131. #u76037 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:148px;
  2135. top:34px;
  2136. width:111px;
  2137. height:37px;
  2138. display:flex;
  2139. font-size:14px;
  2140. text-align:left;
  2141. }
  2142. #u76037 .text {
  2143. position:absolute;
  2144. align-self:center;
  2145. padding:2px 10px 2px 10px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u76037_text {
  2150. border-width:0px;
  2151. word-wrap:break-word;
  2152. text-transform:none;
  2153. }
  2154. #u76038_img {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:93px;
  2160. height:37px;
  2161. }
  2162. #u76038 {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:259px;
  2166. top:34px;
  2167. width:93px;
  2168. height:37px;
  2169. display:flex;
  2170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2171. font-weight:400;
  2172. font-style:normal;
  2173. font-size:14px;
  2174. text-align:left;
  2175. }
  2176. #u76038 .text {
  2177. position:absolute;
  2178. align-self:center;
  2179. padding:2px 10px 2px 10px;
  2180. box-sizing:border-box;
  2181. width:100%;
  2182. }
  2183. #u76038_text {
  2184. border-width:0px;
  2185. word-wrap:break-word;
  2186. text-transform:none;
  2187. }
  2188. #u76039_img {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:93px;
  2194. height:37px;
  2195. }
  2196. #u76039 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:352px;
  2200. top:34px;
  2201. width:93px;
  2202. height:37px;
  2203. display:flex;
  2204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2205. font-weight:400;
  2206. font-style:normal;
  2207. font-size:14px;
  2208. text-align:left;
  2209. }
  2210. #u76039 .text {
  2211. position:absolute;
  2212. align-self:center;
  2213. padding:2px 10px 2px 10px;
  2214. box-sizing:border-box;
  2215. width:100%;
  2216. }
  2217. #u76039_text {
  2218. border-width:0px;
  2219. word-wrap:break-word;
  2220. text-transform:none;
  2221. visibility:hidden;
  2222. }
  2223. #u76040_img {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:0px;
  2227. top:0px;
  2228. width:93px;
  2229. height:37px;
  2230. }
  2231. #u76040 {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:445px;
  2235. top:34px;
  2236. width:93px;
  2237. height:37px;
  2238. display:flex;
  2239. font-size:14px;
  2240. text-align:left;
  2241. }
  2242. #u76040 .text {
  2243. position:absolute;
  2244. align-self:center;
  2245. padding:2px 10px 2px 10px;
  2246. box-sizing:border-box;
  2247. width:100%;
  2248. }
  2249. #u76040_text {
  2250. border-width:0px;
  2251. word-wrap:break-word;
  2252. text-transform:none;
  2253. visibility:hidden;
  2254. }
  2255. #u76041_img {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:142px;
  2261. height:37px;
  2262. }
  2263. #u76041 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:538px;
  2267. top:34px;
  2268. width:142px;
  2269. height:37px;
  2270. display:flex;
  2271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2272. font-weight:400;
  2273. font-style:normal;
  2274. text-align:left;
  2275. }
  2276. #u76041 .text {
  2277. position:absolute;
  2278. align-self:center;
  2279. padding:2px 10px 2px 10px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u76041_text {
  2284. border-width:0px;
  2285. word-wrap:break-word;
  2286. text-transform:none;
  2287. }
  2288. #u76042_img {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:92px;
  2294. height:37px;
  2295. }
  2296. #u76042 {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:680px;
  2300. top:34px;
  2301. width:92px;
  2302. height:37px;
  2303. display:flex;
  2304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2305. font-weight:400;
  2306. font-style:normal;
  2307. text-align:left;
  2308. }
  2309. #u76042 .text {
  2310. position:absolute;
  2311. align-self:center;
  2312. padding:2px 10px 2px 10px;
  2313. box-sizing:border-box;
  2314. width:100%;
  2315. }
  2316. #u76042_text {
  2317. border-width:0px;
  2318. word-wrap:break-word;
  2319. text-transform:none;
  2320. visibility:hidden;
  2321. }
  2322. #u76043_img {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:102px;
  2328. height:37px;
  2329. }
  2330. #u76043 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:772px;
  2334. top:34px;
  2335. width:102px;
  2336. height:37px;
  2337. display:flex;
  2338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2339. font-weight:400;
  2340. font-style:normal;
  2341. text-align:left;
  2342. }
  2343. #u76043 .text {
  2344. position:absolute;
  2345. align-self:center;
  2346. padding:2px 10px 2px 10px;
  2347. box-sizing:border-box;
  2348. width:100%;
  2349. }
  2350. #u76043_text {
  2351. border-width:0px;
  2352. word-wrap:break-word;
  2353. text-transform:none;
  2354. visibility:hidden;
  2355. }
  2356. #u76044_img {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:0px;
  2360. top:0px;
  2361. width:93px;
  2362. height:37px;
  2363. }
  2364. #u76044 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:874px;
  2368. top:34px;
  2369. width:93px;
  2370. height:37px;
  2371. display:flex;
  2372. font-size:14px;
  2373. text-align:left;
  2374. }
  2375. #u76044 .text {
  2376. position:absolute;
  2377. align-self:center;
  2378. padding:2px 10px 2px 10px;
  2379. box-sizing:border-box;
  2380. width:100%;
  2381. }
  2382. #u76044_text {
  2383. border-width:0px;
  2384. word-wrap:break-word;
  2385. text-transform:none;
  2386. visibility:hidden;
  2387. }
  2388. #u76045_img {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:93px;
  2394. height:37px;
  2395. }
  2396. #u76045 {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:967px;
  2400. top:34px;
  2401. width:93px;
  2402. height:37px;
  2403. display:flex;
  2404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2405. font-weight:400;
  2406. font-style:normal;
  2407. font-size:14px;
  2408. text-align:left;
  2409. }
  2410. #u76045 .text {
  2411. position:absolute;
  2412. align-self:center;
  2413. padding:2px 10px 2px 10px;
  2414. box-sizing:border-box;
  2415. width:100%;
  2416. }
  2417. #u76045_text {
  2418. border-width:0px;
  2419. word-wrap:break-word;
  2420. text-transform:none;
  2421. visibility:hidden;
  2422. }
  2423. #u76046_img {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:0px;
  2428. width:167px;
  2429. height:37px;
  2430. }
  2431. #u76046 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:1060px;
  2435. top:34px;
  2436. width:167px;
  2437. height:37px;
  2438. display:flex;
  2439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2440. font-weight:400;
  2441. font-style:normal;
  2442. font-size:14px;
  2443. text-align:left;
  2444. }
  2445. #u76046 .text {
  2446. position:absolute;
  2447. align-self:center;
  2448. padding:2px 10px 2px 10px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u76046_text {
  2453. border-width:0px;
  2454. word-wrap:break-word;
  2455. text-transform:none;
  2456. }
  2457. #u76047_img {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:0px;
  2461. top:0px;
  2462. width:74px;
  2463. height:37px;
  2464. }
  2465. #u76047 {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:71px;
  2470. width:74px;
  2471. height:37px;
  2472. display:flex;
  2473. font-size:14px;
  2474. text-align:left;
  2475. }
  2476. #u76047 .text {
  2477. position:absolute;
  2478. align-self:center;
  2479. padding:2px 10px 2px 10px;
  2480. box-sizing:border-box;
  2481. width:100%;
  2482. }
  2483. #u76047_text {
  2484. border-width:0px;
  2485. word-wrap:break-word;
  2486. text-transform:none;
  2487. visibility:hidden;
  2488. }
  2489. #u76048_img {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:0px;
  2493. top:0px;
  2494. width:74px;
  2495. height:37px;
  2496. }
  2497. #u76048 {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:74px;
  2501. top:71px;
  2502. width:74px;
  2503. height:37px;
  2504. display:flex;
  2505. font-size:14px;
  2506. text-align:left;
  2507. }
  2508. #u76048 .text {
  2509. position:absolute;
  2510. align-self:center;
  2511. padding:2px 10px 2px 10px;
  2512. box-sizing:border-box;
  2513. width:100%;
  2514. }
  2515. #u76048_text {
  2516. border-width:0px;
  2517. word-wrap:break-word;
  2518. text-transform:none;
  2519. visibility:hidden;
  2520. }
  2521. #u76049_img {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:0px;
  2525. top:0px;
  2526. width:111px;
  2527. height:37px;
  2528. }
  2529. #u76049 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:148px;
  2533. top:71px;
  2534. width:111px;
  2535. height:37px;
  2536. display:flex;
  2537. font-size:14px;
  2538. text-align:left;
  2539. }
  2540. #u76049 .text {
  2541. position:absolute;
  2542. align-self:center;
  2543. padding:2px 10px 2px 10px;
  2544. box-sizing:border-box;
  2545. width:100%;
  2546. }
  2547. #u76049_text {
  2548. border-width:0px;
  2549. word-wrap:break-word;
  2550. text-transform:none;
  2551. }
  2552. #u76050_img {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:93px;
  2558. height:37px;
  2559. }
  2560. #u76050 {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:259px;
  2564. top:71px;
  2565. width:93px;
  2566. height:37px;
  2567. display:flex;
  2568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2569. font-weight:400;
  2570. font-style:normal;
  2571. font-size:14px;
  2572. text-align:left;
  2573. }
  2574. #u76050 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 10px 2px 10px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u76050_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. }
  2586. #u76051_img {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:93px;
  2592. height:37px;
  2593. }
  2594. #u76051 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:352px;
  2598. top:71px;
  2599. width:93px;
  2600. height:37px;
  2601. display:flex;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:14px;
  2606. text-align:left;
  2607. }
  2608. #u76051 .text {
  2609. position:absolute;
  2610. align-self:center;
  2611. padding:2px 10px 2px 10px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u76051_text {
  2616. border-width:0px;
  2617. word-wrap:break-word;
  2618. text-transform:none;
  2619. visibility:hidden;
  2620. }
  2621. #u76052_img {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:93px;
  2627. height:37px;
  2628. }
  2629. #u76052 {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:445px;
  2633. top:71px;
  2634. width:93px;
  2635. height:37px;
  2636. display:flex;
  2637. font-size:14px;
  2638. text-align:left;
  2639. }
  2640. #u76052 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 10px 2px 10px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u76052_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. visibility:hidden;
  2652. }
  2653. #u76053_img {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:142px;
  2659. height:37px;
  2660. }
  2661. #u76053 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:538px;
  2665. top:71px;
  2666. width:142px;
  2667. height:37px;
  2668. display:flex;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. text-align:left;
  2673. }
  2674. #u76053 .text {
  2675. position:absolute;
  2676. align-self:center;
  2677. padding:2px 10px 2px 10px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u76053_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. }
  2686. #u76054_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:92px;
  2692. height:37px;
  2693. }
  2694. #u76054 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:680px;
  2698. top:71px;
  2699. width:92px;
  2700. height:37px;
  2701. display:flex;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. text-align:left;
  2706. }
  2707. #u76054 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:2px 10px 2px 10px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u76054_text {
  2715. border-width:0px;
  2716. word-wrap:break-word;
  2717. text-transform:none;
  2718. visibility:hidden;
  2719. }
  2720. #u76055_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:102px;
  2726. height:37px;
  2727. }
  2728. #u76055 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:772px;
  2732. top:71px;
  2733. width:102px;
  2734. height:37px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. text-align:left;
  2740. }
  2741. #u76055 .text {
  2742. position:absolute;
  2743. align-self:center;
  2744. padding:2px 10px 2px 10px;
  2745. box-sizing:border-box;
  2746. width:100%;
  2747. }
  2748. #u76055_text {
  2749. border-width:0px;
  2750. word-wrap:break-word;
  2751. text-transform:none;
  2752. visibility:hidden;
  2753. }
  2754. #u76056_img {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:93px;
  2760. height:37px;
  2761. }
  2762. #u76056 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:874px;
  2766. top:71px;
  2767. width:93px;
  2768. height:37px;
  2769. display:flex;
  2770. font-size:14px;
  2771. text-align:left;
  2772. }
  2773. #u76056 .text {
  2774. position:absolute;
  2775. align-self:center;
  2776. padding:2px 10px 2px 10px;
  2777. box-sizing:border-box;
  2778. width:100%;
  2779. }
  2780. #u76056_text {
  2781. border-width:0px;
  2782. word-wrap:break-word;
  2783. text-transform:none;
  2784. visibility:hidden;
  2785. }
  2786. #u76057_img {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:93px;
  2792. height:37px;
  2793. }
  2794. #u76057 {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:967px;
  2798. top:71px;
  2799. width:93px;
  2800. height:37px;
  2801. display:flex;
  2802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2803. font-weight:400;
  2804. font-style:normal;
  2805. font-size:14px;
  2806. text-align:left;
  2807. }
  2808. #u76057 .text {
  2809. position:absolute;
  2810. align-self:center;
  2811. padding:2px 10px 2px 10px;
  2812. box-sizing:border-box;
  2813. width:100%;
  2814. }
  2815. #u76057_text {
  2816. border-width:0px;
  2817. word-wrap:break-word;
  2818. text-transform:none;
  2819. visibility:hidden;
  2820. }
  2821. #u76058_img {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:167px;
  2827. height:37px;
  2828. }
  2829. #u76058 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:1060px;
  2833. top:71px;
  2834. width:167px;
  2835. height:37px;
  2836. display:flex;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:14px;
  2841. text-align:left;
  2842. }
  2843. #u76058 .text {
  2844. position:absolute;
  2845. align-self:center;
  2846. padding:2px 10px 2px 10px;
  2847. box-sizing:border-box;
  2848. width:100%;
  2849. }
  2850. #u76058_text {
  2851. border-width:0px;
  2852. word-wrap:break-word;
  2853. text-transform:none;
  2854. }
  2855. #u76059_img {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:0px;
  2859. top:0px;
  2860. width:74px;
  2861. height:37px;
  2862. }
  2863. #u76059 {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:108px;
  2868. width:74px;
  2869. height:37px;
  2870. display:flex;
  2871. font-size:14px;
  2872. text-align:left;
  2873. }
  2874. #u76059 .text {
  2875. position:absolute;
  2876. align-self:center;
  2877. padding:2px 10px 2px 10px;
  2878. box-sizing:border-box;
  2879. width:100%;
  2880. }
  2881. #u76059_text {
  2882. border-width:0px;
  2883. word-wrap:break-word;
  2884. text-transform:none;
  2885. visibility:hidden;
  2886. }
  2887. #u76060_img {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:74px;
  2893. height:37px;
  2894. }
  2895. #u76060 {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:74px;
  2899. top:108px;
  2900. width:74px;
  2901. height:37px;
  2902. display:flex;
  2903. font-size:14px;
  2904. text-align:left;
  2905. }
  2906. #u76060 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:2px 10px 2px 10px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u76060_text {
  2914. border-width:0px;
  2915. word-wrap:break-word;
  2916. text-transform:none;
  2917. visibility:hidden;
  2918. }
  2919. #u76061_img {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:111px;
  2925. height:37px;
  2926. }
  2927. #u76061 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:148px;
  2931. top:108px;
  2932. width:111px;
  2933. height:37px;
  2934. display:flex;
  2935. font-size:14px;
  2936. text-align:left;
  2937. }
  2938. #u76061 .text {
  2939. position:absolute;
  2940. align-self:center;
  2941. padding:2px 10px 2px 10px;
  2942. box-sizing:border-box;
  2943. width:100%;
  2944. }
  2945. #u76061_text {
  2946. border-width:0px;
  2947. word-wrap:break-word;
  2948. text-transform:none;
  2949. }
  2950. #u76062_img {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:93px;
  2956. height:37px;
  2957. }
  2958. #u76062 {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:259px;
  2962. top:108px;
  2963. width:93px;
  2964. height:37px;
  2965. display:flex;
  2966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2967. font-weight:400;
  2968. font-style:normal;
  2969. font-size:14px;
  2970. text-align:left;
  2971. }
  2972. #u76062 .text {
  2973. position:absolute;
  2974. align-self:center;
  2975. padding:2px 10px 2px 10px;
  2976. box-sizing:border-box;
  2977. width:100%;
  2978. }
  2979. #u76062_text {
  2980. border-width:0px;
  2981. word-wrap:break-word;
  2982. text-transform:none;
  2983. }
  2984. #u76063_img {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:93px;
  2990. height:37px;
  2991. }
  2992. #u76063 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:352px;
  2996. top:108px;
  2997. width:93px;
  2998. height:37px;
  2999. display:flex;
  3000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3001. font-weight:400;
  3002. font-style:normal;
  3003. font-size:14px;
  3004. text-align:left;
  3005. }
  3006. #u76063 .text {
  3007. position:absolute;
  3008. align-self:center;
  3009. padding:2px 10px 2px 10px;
  3010. box-sizing:border-box;
  3011. width:100%;
  3012. }
  3013. #u76063_text {
  3014. border-width:0px;
  3015. word-wrap:break-word;
  3016. text-transform:none;
  3017. visibility:hidden;
  3018. }
  3019. #u76064_img {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:93px;
  3025. height:37px;
  3026. }
  3027. #u76064 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:445px;
  3031. top:108px;
  3032. width:93px;
  3033. height:37px;
  3034. display:flex;
  3035. font-size:14px;
  3036. text-align:left;
  3037. }
  3038. #u76064 .text {
  3039. position:absolute;
  3040. align-self:center;
  3041. padding:2px 10px 2px 10px;
  3042. box-sizing:border-box;
  3043. width:100%;
  3044. }
  3045. #u76064_text {
  3046. border-width:0px;
  3047. word-wrap:break-word;
  3048. text-transform:none;
  3049. visibility:hidden;
  3050. }
  3051. #u76065_img {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:142px;
  3057. height:37px;
  3058. }
  3059. #u76065 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:538px;
  3063. top:108px;
  3064. width:142px;
  3065. height:37px;
  3066. display:flex;
  3067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3068. font-weight:400;
  3069. font-style:normal;
  3070. text-align:left;
  3071. }
  3072. #u76065 .text {
  3073. position:absolute;
  3074. align-self:center;
  3075. padding:2px 10px 2px 10px;
  3076. box-sizing:border-box;
  3077. width:100%;
  3078. }
  3079. #u76065_text {
  3080. border-width:0px;
  3081. word-wrap:break-word;
  3082. text-transform:none;
  3083. }
  3084. #u76066_img {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:0px;
  3088. top:0px;
  3089. width:92px;
  3090. height:37px;
  3091. }
  3092. #u76066 {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:680px;
  3096. top:108px;
  3097. width:92px;
  3098. height:37px;
  3099. display:flex;
  3100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3101. font-weight:400;
  3102. font-style:normal;
  3103. text-align:left;
  3104. }
  3105. #u76066 .text {
  3106. position:absolute;
  3107. align-self:center;
  3108. padding:2px 10px 2px 10px;
  3109. box-sizing:border-box;
  3110. width:100%;
  3111. }
  3112. #u76066_text {
  3113. border-width:0px;
  3114. word-wrap:break-word;
  3115. text-transform:none;
  3116. visibility:hidden;
  3117. }
  3118. #u76067_img {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:102px;
  3124. height:37px;
  3125. }
  3126. #u76067 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:772px;
  3130. top:108px;
  3131. width:102px;
  3132. height:37px;
  3133. display:flex;
  3134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. text-align:left;
  3138. }
  3139. #u76067 .text {
  3140. position:absolute;
  3141. align-self:center;
  3142. padding:2px 10px 2px 10px;
  3143. box-sizing:border-box;
  3144. width:100%;
  3145. }
  3146. #u76067_text {
  3147. border-width:0px;
  3148. word-wrap:break-word;
  3149. text-transform:none;
  3150. visibility:hidden;
  3151. }
  3152. #u76068_img {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:93px;
  3158. height:37px;
  3159. }
  3160. #u76068 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:874px;
  3164. top:108px;
  3165. width:93px;
  3166. height:37px;
  3167. display:flex;
  3168. font-size:14px;
  3169. text-align:left;
  3170. }
  3171. #u76068 .text {
  3172. position:absolute;
  3173. align-self:center;
  3174. padding:2px 10px 2px 10px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u76068_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. visibility:hidden;
  3183. }
  3184. #u76069_img {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:93px;
  3190. height:37px;
  3191. }
  3192. #u76069 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:967px;
  3196. top:108px;
  3197. width:93px;
  3198. height:37px;
  3199. display:flex;
  3200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3201. font-weight:400;
  3202. font-style:normal;
  3203. font-size:14px;
  3204. text-align:left;
  3205. }
  3206. #u76069 .text {
  3207. position:absolute;
  3208. align-self:center;
  3209. padding:2px 10px 2px 10px;
  3210. box-sizing:border-box;
  3211. width:100%;
  3212. }
  3213. #u76069_text {
  3214. border-width:0px;
  3215. word-wrap:break-word;
  3216. text-transform:none;
  3217. visibility:hidden;
  3218. }
  3219. #u76070_img {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:0px;
  3223. top:0px;
  3224. width:167px;
  3225. height:37px;
  3226. }
  3227. #u76070 {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:1060px;
  3231. top:108px;
  3232. width:167px;
  3233. height:37px;
  3234. display:flex;
  3235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3236. font-weight:400;
  3237. font-style:normal;
  3238. font-size:14px;
  3239. text-align:left;
  3240. }
  3241. #u76070 .text {
  3242. position:absolute;
  3243. align-self:center;
  3244. padding:2px 10px 2px 10px;
  3245. box-sizing:border-box;
  3246. width:100%;
  3247. }
  3248. #u76070_text {
  3249. border-width:0px;
  3250. word-wrap:break-word;
  3251. text-transform:none;
  3252. }
  3253. #u76071_img {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:0px;
  3257. top:0px;
  3258. width:74px;
  3259. height:37px;
  3260. }
  3261. #u76071 {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:145px;
  3266. width:74px;
  3267. height:37px;
  3268. display:flex;
  3269. font-size:14px;
  3270. text-align:left;
  3271. }
  3272. #u76071 .text {
  3273. position:absolute;
  3274. align-self:center;
  3275. padding:2px 10px 2px 10px;
  3276. box-sizing:border-box;
  3277. width:100%;
  3278. }
  3279. #u76071_text {
  3280. border-width:0px;
  3281. word-wrap:break-word;
  3282. text-transform:none;
  3283. visibility:hidden;
  3284. }
  3285. #u76072_img {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:74px;
  3291. height:37px;
  3292. }
  3293. #u76072 {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:74px;
  3297. top:145px;
  3298. width:74px;
  3299. height:37px;
  3300. display:flex;
  3301. font-size:14px;
  3302. text-align:left;
  3303. }
  3304. #u76072 .text {
  3305. position:absolute;
  3306. align-self:center;
  3307. padding:2px 10px 2px 10px;
  3308. box-sizing:border-box;
  3309. width:100%;
  3310. }
  3311. #u76072_text {
  3312. border-width:0px;
  3313. word-wrap:break-word;
  3314. text-transform:none;
  3315. visibility:hidden;
  3316. }
  3317. #u76073_img {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:0px;
  3321. top:0px;
  3322. width:111px;
  3323. height:37px;
  3324. }
  3325. #u76073 {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:148px;
  3329. top:145px;
  3330. width:111px;
  3331. height:37px;
  3332. display:flex;
  3333. font-size:14px;
  3334. text-align:left;
  3335. }
  3336. #u76073 .text {
  3337. position:absolute;
  3338. align-self:center;
  3339. padding:2px 10px 2px 10px;
  3340. box-sizing:border-box;
  3341. width:100%;
  3342. }
  3343. #u76073_text {
  3344. border-width:0px;
  3345. word-wrap:break-word;
  3346. text-transform:none;
  3347. visibility:hidden;
  3348. }
  3349. #u76074_img {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:0px;
  3353. top:0px;
  3354. width:93px;
  3355. height:37px;
  3356. }
  3357. #u76074 {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:259px;
  3361. top:145px;
  3362. width:93px;
  3363. height:37px;
  3364. display:flex;
  3365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3366. font-weight:400;
  3367. font-style:normal;
  3368. font-size:14px;
  3369. text-align:left;
  3370. }
  3371. #u76074 .text {
  3372. position:absolute;
  3373. align-self:center;
  3374. padding:2px 10px 2px 10px;
  3375. box-sizing:border-box;
  3376. width:100%;
  3377. }
  3378. #u76074_text {
  3379. border-width:0px;
  3380. word-wrap:break-word;
  3381. text-transform:none;
  3382. visibility:hidden;
  3383. }
  3384. #u76075_img {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:93px;
  3390. height:37px;
  3391. }
  3392. #u76075 {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:352px;
  3396. top:145px;
  3397. width:93px;
  3398. height:37px;
  3399. display:flex;
  3400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3401. font-weight:400;
  3402. font-style:normal;
  3403. font-size:14px;
  3404. text-align:left;
  3405. }
  3406. #u76075 .text {
  3407. position:absolute;
  3408. align-self:center;
  3409. padding:2px 10px 2px 10px;
  3410. box-sizing:border-box;
  3411. width:100%;
  3412. }
  3413. #u76075_text {
  3414. border-width:0px;
  3415. word-wrap:break-word;
  3416. text-transform:none;
  3417. visibility:hidden;
  3418. }
  3419. #u76076_img {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:93px;
  3425. height:37px;
  3426. }
  3427. #u76076 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:445px;
  3431. top:145px;
  3432. width:93px;
  3433. height:37px;
  3434. display:flex;
  3435. font-size:14px;
  3436. text-align:left;
  3437. }
  3438. #u76076 .text {
  3439. position:absolute;
  3440. align-self:center;
  3441. padding:2px 10px 2px 10px;
  3442. box-sizing:border-box;
  3443. width:100%;
  3444. }
  3445. #u76076_text {
  3446. border-width:0px;
  3447. word-wrap:break-word;
  3448. text-transform:none;
  3449. visibility:hidden;
  3450. }
  3451. #u76077_img {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:0px;
  3455. top:0px;
  3456. width:142px;
  3457. height:37px;
  3458. }
  3459. #u76077 {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:538px;
  3463. top:145px;
  3464. width:142px;
  3465. height:37px;
  3466. display:flex;
  3467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3468. font-weight:400;
  3469. font-style:normal;
  3470. text-align:left;
  3471. }
  3472. #u76077 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 10px 2px 10px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u76077_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. }
  3484. #u76078_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:92px;
  3490. height:37px;
  3491. }
  3492. #u76078 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:680px;
  3496. top:145px;
  3497. width:92px;
  3498. height:37px;
  3499. display:flex;
  3500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. text-align:left;
  3504. }
  3505. #u76078 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 10px 2px 10px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u76078_text {
  3513. border-width:0px;
  3514. word-wrap:break-word;
  3515. text-transform:none;
  3516. visibility:hidden;
  3517. }
  3518. #u76079_img {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:102px;
  3524. height:37px;
  3525. }
  3526. #u76079 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:772px;
  3530. top:145px;
  3531. width:102px;
  3532. height:37px;
  3533. display:flex;
  3534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. text-align:left;
  3538. }
  3539. #u76079 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:2px 10px 2px 10px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u76079_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. visibility:hidden;
  3551. }
  3552. #u76080_img {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:93px;
  3558. height:37px;
  3559. }
  3560. #u76080 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:874px;
  3564. top:145px;
  3565. width:93px;
  3566. height:37px;
  3567. display:flex;
  3568. font-size:14px;
  3569. text-align:left;
  3570. }
  3571. #u76080 .text {
  3572. position:absolute;
  3573. align-self:center;
  3574. padding:2px 10px 2px 10px;
  3575. box-sizing:border-box;
  3576. width:100%;
  3577. }
  3578. #u76080_text {
  3579. border-width:0px;
  3580. word-wrap:break-word;
  3581. text-transform:none;
  3582. visibility:hidden;
  3583. }
  3584. #u76081_img {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:93px;
  3590. height:37px;
  3591. }
  3592. #u76081 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:967px;
  3596. top:145px;
  3597. width:93px;
  3598. height:37px;
  3599. display:flex;
  3600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3601. font-weight:400;
  3602. font-style:normal;
  3603. font-size:14px;
  3604. text-align:left;
  3605. }
  3606. #u76081 .text {
  3607. position:absolute;
  3608. align-self:center;
  3609. padding:2px 10px 2px 10px;
  3610. box-sizing:border-box;
  3611. width:100%;
  3612. }
  3613. #u76081_text {
  3614. border-width:0px;
  3615. word-wrap:break-word;
  3616. text-transform:none;
  3617. visibility:hidden;
  3618. }
  3619. #u76082_img {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:167px;
  3625. height:37px;
  3626. }
  3627. #u76082 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:1060px;
  3631. top:145px;
  3632. width:167px;
  3633. height:37px;
  3634. display:flex;
  3635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3636. font-weight:400;
  3637. font-style:normal;
  3638. font-size:14px;
  3639. text-align:left;
  3640. }
  3641. #u76082 .text {
  3642. position:absolute;
  3643. align-self:center;
  3644. padding:2px 10px 2px 10px;
  3645. box-sizing:border-box;
  3646. width:100%;
  3647. }
  3648. #u76082_text {
  3649. border-width:0px;
  3650. word-wrap:break-word;
  3651. text-transform:none;
  3652. }
  3653. #u76083_img {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:0px;
  3657. top:0px;
  3658. width:74px;
  3659. height:37px;
  3660. }
  3661. #u76083 {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:0px;
  3665. top:182px;
  3666. width:74px;
  3667. height:37px;
  3668. display:flex;
  3669. font-size:14px;
  3670. text-align:left;
  3671. }
  3672. #u76083 .text {
  3673. position:absolute;
  3674. align-self:center;
  3675. padding:2px 10px 2px 10px;
  3676. box-sizing:border-box;
  3677. width:100%;
  3678. }
  3679. #u76083_text {
  3680. border-width:0px;
  3681. word-wrap:break-word;
  3682. text-transform:none;
  3683. visibility:hidden;
  3684. }
  3685. #u76084_img {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:0px;
  3689. top:0px;
  3690. width:74px;
  3691. height:37px;
  3692. }
  3693. #u76084 {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:74px;
  3697. top:182px;
  3698. width:74px;
  3699. height:37px;
  3700. display:flex;
  3701. font-size:14px;
  3702. text-align:left;
  3703. }
  3704. #u76084 .text {
  3705. position:absolute;
  3706. align-self:center;
  3707. padding:2px 10px 2px 10px;
  3708. box-sizing:border-box;
  3709. width:100%;
  3710. }
  3711. #u76084_text {
  3712. border-width:0px;
  3713. word-wrap:break-word;
  3714. text-transform:none;
  3715. visibility:hidden;
  3716. }
  3717. #u76085_img {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:111px;
  3723. height:37px;
  3724. }
  3725. #u76085 {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:148px;
  3729. top:182px;
  3730. width:111px;
  3731. height:37px;
  3732. display:flex;
  3733. font-size:14px;
  3734. text-align:left;
  3735. }
  3736. #u76085 .text {
  3737. position:absolute;
  3738. align-self:center;
  3739. padding:2px 10px 2px 10px;
  3740. box-sizing:border-box;
  3741. width:100%;
  3742. }
  3743. #u76085_text {
  3744. border-width:0px;
  3745. word-wrap:break-word;
  3746. text-transform:none;
  3747. visibility:hidden;
  3748. }
  3749. #u76086_img {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:93px;
  3755. height:37px;
  3756. }
  3757. #u76086 {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:259px;
  3761. top:182px;
  3762. width:93px;
  3763. height:37px;
  3764. display:flex;
  3765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3766. font-weight:400;
  3767. font-style:normal;
  3768. font-size:14px;
  3769. text-align:left;
  3770. }
  3771. #u76086 .text {
  3772. position:absolute;
  3773. align-self:center;
  3774. padding:2px 10px 2px 10px;
  3775. box-sizing:border-box;
  3776. width:100%;
  3777. }
  3778. #u76086_text {
  3779. border-width:0px;
  3780. word-wrap:break-word;
  3781. text-transform:none;
  3782. visibility:hidden;
  3783. }
  3784. #u76087_img {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:0px;
  3788. top:0px;
  3789. width:93px;
  3790. height:37px;
  3791. }
  3792. #u76087 {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:352px;
  3796. top:182px;
  3797. width:93px;
  3798. height:37px;
  3799. display:flex;
  3800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. font-size:14px;
  3804. text-align:left;
  3805. }
  3806. #u76087 .text {
  3807. position:absolute;
  3808. align-self:center;
  3809. padding:2px 10px 2px 10px;
  3810. box-sizing:border-box;
  3811. width:100%;
  3812. }
  3813. #u76087_text {
  3814. border-width:0px;
  3815. word-wrap:break-word;
  3816. text-transform:none;
  3817. visibility:hidden;
  3818. }
  3819. #u76088_img {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:93px;
  3825. height:37px;
  3826. }
  3827. #u76088 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:445px;
  3831. top:182px;
  3832. width:93px;
  3833. height:37px;
  3834. display:flex;
  3835. font-size:14px;
  3836. text-align:left;
  3837. }
  3838. #u76088 .text {
  3839. position:absolute;
  3840. align-self:center;
  3841. padding:2px 10px 2px 10px;
  3842. box-sizing:border-box;
  3843. width:100%;
  3844. }
  3845. #u76088_text {
  3846. border-width:0px;
  3847. word-wrap:break-word;
  3848. text-transform:none;
  3849. visibility:hidden;
  3850. }
  3851. #u76089_img {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:0px;
  3855. top:0px;
  3856. width:142px;
  3857. height:37px;
  3858. }
  3859. #u76089 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:538px;
  3863. top:182px;
  3864. width:142px;
  3865. height:37px;
  3866. display:flex;
  3867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. text-align:left;
  3871. }
  3872. #u76089 .text {
  3873. position:absolute;
  3874. align-self:center;
  3875. padding:2px 10px 2px 10px;
  3876. box-sizing:border-box;
  3877. width:100%;
  3878. }
  3879. #u76089_text {
  3880. border-width:0px;
  3881. word-wrap:break-word;
  3882. text-transform:none;
  3883. }
  3884. #u76090_img {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:0px;
  3888. top:0px;
  3889. width:92px;
  3890. height:37px;
  3891. }
  3892. #u76090 {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:680px;
  3896. top:182px;
  3897. width:92px;
  3898. height:37px;
  3899. display:flex;
  3900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3901. font-weight:400;
  3902. font-style:normal;
  3903. text-align:left;
  3904. }
  3905. #u76090 .text {
  3906. position:absolute;
  3907. align-self:center;
  3908. padding:2px 10px 2px 10px;
  3909. box-sizing:border-box;
  3910. width:100%;
  3911. }
  3912. #u76090_text {
  3913. border-width:0px;
  3914. word-wrap:break-word;
  3915. text-transform:none;
  3916. visibility:hidden;
  3917. }
  3918. #u76091_img {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:0px;
  3922. top:0px;
  3923. width:102px;
  3924. height:37px;
  3925. }
  3926. #u76091 {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:772px;
  3930. top:182px;
  3931. width:102px;
  3932. height:37px;
  3933. display:flex;
  3934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3935. font-weight:400;
  3936. font-style:normal;
  3937. text-align:left;
  3938. }
  3939. #u76091 .text {
  3940. position:absolute;
  3941. align-self:center;
  3942. padding:2px 10px 2px 10px;
  3943. box-sizing:border-box;
  3944. width:100%;
  3945. }
  3946. #u76091_text {
  3947. border-width:0px;
  3948. word-wrap:break-word;
  3949. text-transform:none;
  3950. visibility:hidden;
  3951. }
  3952. #u76092_img {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:93px;
  3958. height:37px;
  3959. }
  3960. #u76092 {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:874px;
  3964. top:182px;
  3965. width:93px;
  3966. height:37px;
  3967. display:flex;
  3968. font-size:14px;
  3969. text-align:left;
  3970. }
  3971. #u76092 .text {
  3972. position:absolute;
  3973. align-self:center;
  3974. padding:2px 10px 2px 10px;
  3975. box-sizing:border-box;
  3976. width:100%;
  3977. }
  3978. #u76092_text {
  3979. border-width:0px;
  3980. word-wrap:break-word;
  3981. text-transform:none;
  3982. visibility:hidden;
  3983. }
  3984. #u76093_img {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:0px;
  3988. top:0px;
  3989. width:93px;
  3990. height:37px;
  3991. }
  3992. #u76093 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:967px;
  3996. top:182px;
  3997. width:93px;
  3998. height:37px;
  3999. display:flex;
  4000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4001. font-weight:400;
  4002. font-style:normal;
  4003. font-size:14px;
  4004. color:#D9001B;
  4005. text-align:left;
  4006. }
  4007. #u76093 .text {
  4008. position:absolute;
  4009. align-self:center;
  4010. padding:2px 10px 2px 10px;
  4011. box-sizing:border-box;
  4012. width:100%;
  4013. }
  4014. #u76093_text {
  4015. border-width:0px;
  4016. word-wrap:break-word;
  4017. text-transform:none;
  4018. visibility:hidden;
  4019. }
  4020. #u76094_img {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:0px;
  4024. top:0px;
  4025. width:167px;
  4026. height:37px;
  4027. }
  4028. #u76094 {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:1060px;
  4032. top:182px;
  4033. width:167px;
  4034. height:37px;
  4035. display:flex;
  4036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4037. font-weight:400;
  4038. font-style:normal;
  4039. font-size:14px;
  4040. color:#1890FF;
  4041. text-align:left;
  4042. }
  4043. #u76094 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:2px 10px 2px 10px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u76094_text {
  4051. border-width:0px;
  4052. word-wrap:break-word;
  4053. text-transform:none;
  4054. }
  4055. #u76095_img {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:0px;
  4059. top:0px;
  4060. width:74px;
  4061. height:37px;
  4062. }
  4063. #u76095 {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:219px;
  4068. width:74px;
  4069. height:37px;
  4070. display:flex;
  4071. font-size:14px;
  4072. text-align:left;
  4073. }
  4074. #u76095 .text {
  4075. position:absolute;
  4076. align-self:center;
  4077. padding:2px 10px 2px 10px;
  4078. box-sizing:border-box;
  4079. width:100%;
  4080. }
  4081. #u76095_text {
  4082. border-width:0px;
  4083. word-wrap:break-word;
  4084. text-transform:none;
  4085. visibility:hidden;
  4086. }
  4087. #u76096_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:74px;
  4093. height:37px;
  4094. }
  4095. #u76096 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:74px;
  4099. top:219px;
  4100. width:74px;
  4101. height:37px;
  4102. display:flex;
  4103. font-size:14px;
  4104. text-align:left;
  4105. }
  4106. #u76096 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:2px 10px 2px 10px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u76096_text {
  4114. border-width:0px;
  4115. word-wrap:break-word;
  4116. text-transform:none;
  4117. visibility:hidden;
  4118. }
  4119. #u76097_img {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:0px;
  4123. top:0px;
  4124. width:111px;
  4125. height:37px;
  4126. }
  4127. #u76097 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:148px;
  4131. top:219px;
  4132. width:111px;
  4133. height:37px;
  4134. display:flex;
  4135. font-size:14px;
  4136. text-align:left;
  4137. }
  4138. #u76097 .text {
  4139. position:absolute;
  4140. align-self:center;
  4141. padding:2px 10px 2px 10px;
  4142. box-sizing:border-box;
  4143. width:100%;
  4144. }
  4145. #u76097_text {
  4146. border-width:0px;
  4147. word-wrap:break-word;
  4148. text-transform:none;
  4149. visibility:hidden;
  4150. }
  4151. #u76098_img {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:0px;
  4155. top:0px;
  4156. width:93px;
  4157. height:37px;
  4158. }
  4159. #u76098 {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:259px;
  4163. top:219px;
  4164. width:93px;
  4165. height:37px;
  4166. display:flex;
  4167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4168. font-weight:400;
  4169. font-style:normal;
  4170. font-size:14px;
  4171. text-align:left;
  4172. }
  4173. #u76098 .text {
  4174. position:absolute;
  4175. align-self:center;
  4176. padding:2px 10px 2px 10px;
  4177. box-sizing:border-box;
  4178. width:100%;
  4179. }
  4180. #u76098_text {
  4181. border-width:0px;
  4182. word-wrap:break-word;
  4183. text-transform:none;
  4184. visibility:hidden;
  4185. }
  4186. #u76099_img {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:0px;
  4190. top:0px;
  4191. width:93px;
  4192. height:37px;
  4193. }
  4194. #u76099 {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:352px;
  4198. top:219px;
  4199. width:93px;
  4200. height:37px;
  4201. display:flex;
  4202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4203. font-weight:400;
  4204. font-style:normal;
  4205. font-size:14px;
  4206. text-align:left;
  4207. }
  4208. #u76099 .text {
  4209. position:absolute;
  4210. align-self:center;
  4211. padding:2px 10px 2px 10px;
  4212. box-sizing:border-box;
  4213. width:100%;
  4214. }
  4215. #u76099_text {
  4216. border-width:0px;
  4217. word-wrap:break-word;
  4218. text-transform:none;
  4219. visibility:hidden;
  4220. }
  4221. #u76100_img {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:93px;
  4227. height:37px;
  4228. }
  4229. #u76100 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:445px;
  4233. top:219px;
  4234. width:93px;
  4235. height:37px;
  4236. display:flex;
  4237. font-size:14px;
  4238. text-align:left;
  4239. }
  4240. #u76100 .text {
  4241. position:absolute;
  4242. align-self:center;
  4243. padding:2px 10px 2px 10px;
  4244. box-sizing:border-box;
  4245. width:100%;
  4246. }
  4247. #u76100_text {
  4248. border-width:0px;
  4249. word-wrap:break-word;
  4250. text-transform:none;
  4251. visibility:hidden;
  4252. }
  4253. #u76101_img {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:142px;
  4259. height:37px;
  4260. }
  4261. #u76101 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:538px;
  4265. top:219px;
  4266. width:142px;
  4267. height:37px;
  4268. display:flex;
  4269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. text-align:left;
  4273. }
  4274. #u76101 .text {
  4275. position:absolute;
  4276. align-self:center;
  4277. padding:2px 10px 2px 10px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u76101_text {
  4282. border-width:0px;
  4283. word-wrap:break-word;
  4284. text-transform:none;
  4285. }
  4286. #u76102_img {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:92px;
  4292. height:37px;
  4293. }
  4294. #u76102 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:680px;
  4298. top:219px;
  4299. width:92px;
  4300. height:37px;
  4301. display:flex;
  4302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4303. font-weight:400;
  4304. font-style:normal;
  4305. text-align:left;
  4306. }
  4307. #u76102 .text {
  4308. position:absolute;
  4309. align-self:center;
  4310. padding:2px 10px 2px 10px;
  4311. box-sizing:border-box;
  4312. width:100%;
  4313. }
  4314. #u76102_text {
  4315. border-width:0px;
  4316. word-wrap:break-word;
  4317. text-transform:none;
  4318. visibility:hidden;
  4319. }
  4320. #u76103_img {
  4321. border-width:0px;
  4322. position:absolute;
  4323. left:0px;
  4324. top:0px;
  4325. width:102px;
  4326. height:37px;
  4327. }
  4328. #u76103 {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:772px;
  4332. top:219px;
  4333. width:102px;
  4334. height:37px;
  4335. display:flex;
  4336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4337. font-weight:400;
  4338. font-style:normal;
  4339. text-align:left;
  4340. }
  4341. #u76103 .text {
  4342. position:absolute;
  4343. align-self:center;
  4344. padding:2px 10px 2px 10px;
  4345. box-sizing:border-box;
  4346. width:100%;
  4347. }
  4348. #u76103_text {
  4349. border-width:0px;
  4350. word-wrap:break-word;
  4351. text-transform:none;
  4352. visibility:hidden;
  4353. }
  4354. #u76104_img {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:0px;
  4359. width:93px;
  4360. height:37px;
  4361. }
  4362. #u76104 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:874px;
  4366. top:219px;
  4367. width:93px;
  4368. height:37px;
  4369. display:flex;
  4370. font-size:14px;
  4371. text-align:left;
  4372. }
  4373. #u76104 .text {
  4374. position:absolute;
  4375. align-self:center;
  4376. padding:2px 10px 2px 10px;
  4377. box-sizing:border-box;
  4378. width:100%;
  4379. }
  4380. #u76104_text {
  4381. border-width:0px;
  4382. word-wrap:break-word;
  4383. text-transform:none;
  4384. visibility:hidden;
  4385. }
  4386. #u76105_img {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:0px;
  4390. top:0px;
  4391. width:93px;
  4392. height:37px;
  4393. }
  4394. #u76105 {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:967px;
  4398. top:219px;
  4399. width:93px;
  4400. height:37px;
  4401. display:flex;
  4402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4403. font-weight:400;
  4404. font-style:normal;
  4405. font-size:14px;
  4406. text-align:left;
  4407. }
  4408. #u76105 .text {
  4409. position:absolute;
  4410. align-self:center;
  4411. padding:2px 10px 2px 10px;
  4412. box-sizing:border-box;
  4413. width:100%;
  4414. }
  4415. #u76105_text {
  4416. border-width:0px;
  4417. word-wrap:break-word;
  4418. text-transform:none;
  4419. visibility:hidden;
  4420. }
  4421. #u76106_img {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:167px;
  4427. height:37px;
  4428. }
  4429. #u76106 {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:1060px;
  4433. top:219px;
  4434. width:167px;
  4435. height:37px;
  4436. display:flex;
  4437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4438. font-weight:400;
  4439. font-style:normal;
  4440. font-size:14px;
  4441. text-align:left;
  4442. }
  4443. #u76106 .text {
  4444. position:absolute;
  4445. align-self:center;
  4446. padding:2px 10px 2px 10px;
  4447. box-sizing:border-box;
  4448. width:100%;
  4449. }
  4450. #u76106_text {
  4451. border-width:0px;
  4452. word-wrap:break-word;
  4453. text-transform:none;
  4454. }
  4455. #u76107_img {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:74px;
  4461. height:37px;
  4462. }
  4463. #u76107 {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:256px;
  4468. width:74px;
  4469. height:37px;
  4470. display:flex;
  4471. font-size:14px;
  4472. text-align:left;
  4473. }
  4474. #u76107 .text {
  4475. position:absolute;
  4476. align-self:center;
  4477. padding:2px 10px 2px 10px;
  4478. box-sizing:border-box;
  4479. width:100%;
  4480. }
  4481. #u76107_text {
  4482. border-width:0px;
  4483. word-wrap:break-word;
  4484. text-transform:none;
  4485. visibility:hidden;
  4486. }
  4487. #u76108_img {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:74px;
  4493. height:37px;
  4494. }
  4495. #u76108 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:74px;
  4499. top:256px;
  4500. width:74px;
  4501. height:37px;
  4502. display:flex;
  4503. font-size:14px;
  4504. text-align:left;
  4505. }
  4506. #u76108 .text {
  4507. position:absolute;
  4508. align-self:center;
  4509. padding:2px 10px 2px 10px;
  4510. box-sizing:border-box;
  4511. width:100%;
  4512. }
  4513. #u76108_text {
  4514. border-width:0px;
  4515. word-wrap:break-word;
  4516. text-transform:none;
  4517. visibility:hidden;
  4518. }
  4519. #u76109_img {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:111px;
  4525. height:37px;
  4526. }
  4527. #u76109 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:148px;
  4531. top:256px;
  4532. width:111px;
  4533. height:37px;
  4534. display:flex;
  4535. font-size:14px;
  4536. text-align:left;
  4537. }
  4538. #u76109 .text {
  4539. position:absolute;
  4540. align-self:center;
  4541. padding:2px 10px 2px 10px;
  4542. box-sizing:border-box;
  4543. width:100%;
  4544. }
  4545. #u76109_text {
  4546. border-width:0px;
  4547. word-wrap:break-word;
  4548. text-transform:none;
  4549. visibility:hidden;
  4550. }
  4551. #u76110_img {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:0px;
  4555. top:0px;
  4556. width:93px;
  4557. height:37px;
  4558. }
  4559. #u76110 {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:259px;
  4563. top:256px;
  4564. width:93px;
  4565. height:37px;
  4566. display:flex;
  4567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4568. font-weight:400;
  4569. font-style:normal;
  4570. font-size:14px;
  4571. text-align:left;
  4572. }
  4573. #u76110 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 10px 2px 10px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u76110_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. visibility:hidden;
  4585. }
  4586. #u76111_img {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:93px;
  4592. height:37px;
  4593. }
  4594. #u76111 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:352px;
  4598. top:256px;
  4599. width:93px;
  4600. height:37px;
  4601. display:flex;
  4602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4603. font-weight:400;
  4604. font-style:normal;
  4605. font-size:14px;
  4606. text-align:left;
  4607. }
  4608. #u76111 .text {
  4609. position:absolute;
  4610. align-self:center;
  4611. padding:2px 10px 2px 10px;
  4612. box-sizing:border-box;
  4613. width:100%;
  4614. }
  4615. #u76111_text {
  4616. border-width:0px;
  4617. word-wrap:break-word;
  4618. text-transform:none;
  4619. visibility:hidden;
  4620. }
  4621. #u76112_img {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:0px;
  4625. top:0px;
  4626. width:93px;
  4627. height:37px;
  4628. }
  4629. #u76112 {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:445px;
  4633. top:256px;
  4634. width:93px;
  4635. height:37px;
  4636. display:flex;
  4637. font-size:14px;
  4638. text-align:left;
  4639. }
  4640. #u76112 .text {
  4641. position:absolute;
  4642. align-self:center;
  4643. padding:2px 10px 2px 10px;
  4644. box-sizing:border-box;
  4645. width:100%;
  4646. }
  4647. #u76112_text {
  4648. border-width:0px;
  4649. word-wrap:break-word;
  4650. text-transform:none;
  4651. visibility:hidden;
  4652. }
  4653. #u76113_img {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:0px;
  4657. top:0px;
  4658. width:142px;
  4659. height:37px;
  4660. }
  4661. #u76113 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:538px;
  4665. top:256px;
  4666. width:142px;
  4667. height:37px;
  4668. display:flex;
  4669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. text-align:left;
  4673. }
  4674. #u76113 .text {
  4675. position:absolute;
  4676. align-self:center;
  4677. padding:2px 10px 2px 10px;
  4678. box-sizing:border-box;
  4679. width:100%;
  4680. }
  4681. #u76113_text {
  4682. border-width:0px;
  4683. word-wrap:break-word;
  4684. text-transform:none;
  4685. }
  4686. #u76114_img {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:0px;
  4690. top:0px;
  4691. width:92px;
  4692. height:37px;
  4693. }
  4694. #u76114 {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:680px;
  4698. top:256px;
  4699. width:92px;
  4700. height:37px;
  4701. display:flex;
  4702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4703. font-weight:400;
  4704. font-style:normal;
  4705. text-align:left;
  4706. }
  4707. #u76114 .text {
  4708. position:absolute;
  4709. align-self:center;
  4710. padding:2px 10px 2px 10px;
  4711. box-sizing:border-box;
  4712. width:100%;
  4713. }
  4714. #u76114_text {
  4715. border-width:0px;
  4716. word-wrap:break-word;
  4717. text-transform:none;
  4718. visibility:hidden;
  4719. }
  4720. #u76115_img {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:0px;
  4724. top:0px;
  4725. width:102px;
  4726. height:37px;
  4727. }
  4728. #u76115 {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:772px;
  4732. top:256px;
  4733. width:102px;
  4734. height:37px;
  4735. display:flex;
  4736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4737. font-weight:400;
  4738. font-style:normal;
  4739. text-align:left;
  4740. }
  4741. #u76115 .text {
  4742. position:absolute;
  4743. align-self:center;
  4744. padding:2px 10px 2px 10px;
  4745. box-sizing:border-box;
  4746. width:100%;
  4747. }
  4748. #u76115_text {
  4749. border-width:0px;
  4750. word-wrap:break-word;
  4751. text-transform:none;
  4752. visibility:hidden;
  4753. }
  4754. #u76116_img {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:93px;
  4760. height:37px;
  4761. }
  4762. #u76116 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:874px;
  4766. top:256px;
  4767. width:93px;
  4768. height:37px;
  4769. display:flex;
  4770. font-size:14px;
  4771. text-align:left;
  4772. }
  4773. #u76116 .text {
  4774. position:absolute;
  4775. align-self:center;
  4776. padding:2px 10px 2px 10px;
  4777. box-sizing:border-box;
  4778. width:100%;
  4779. }
  4780. #u76116_text {
  4781. border-width:0px;
  4782. word-wrap:break-word;
  4783. text-transform:none;
  4784. visibility:hidden;
  4785. }
  4786. #u76117_img {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:93px;
  4792. height:37px;
  4793. }
  4794. #u76117 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:967px;
  4798. top:256px;
  4799. width:93px;
  4800. height:37px;
  4801. display:flex;
  4802. font-size:14px;
  4803. text-align:left;
  4804. }
  4805. #u76117 .text {
  4806. position:absolute;
  4807. align-self:center;
  4808. padding:2px 10px 2px 10px;
  4809. box-sizing:border-box;
  4810. width:100%;
  4811. }
  4812. #u76117_text {
  4813. border-width:0px;
  4814. word-wrap:break-word;
  4815. text-transform:none;
  4816. visibility:hidden;
  4817. }
  4818. #u76118_img {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:0px;
  4822. top:0px;
  4823. width:167px;
  4824. height:37px;
  4825. }
  4826. #u76118 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:1060px;
  4830. top:256px;
  4831. width:167px;
  4832. height:37px;
  4833. display:flex;
  4834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4835. font-weight:400;
  4836. font-style:normal;
  4837. font-size:14px;
  4838. text-align:left;
  4839. }
  4840. #u76118 .text {
  4841. position:absolute;
  4842. align-self:center;
  4843. padding:2px 10px 2px 10px;
  4844. box-sizing:border-box;
  4845. width:100%;
  4846. }
  4847. #u76118_text {
  4848. border-width:0px;
  4849. word-wrap:break-word;
  4850. text-transform:none;
  4851. }
  4852. #u76119_div {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:77px;
  4858. height:30px;
  4859. background:inherit;
  4860. background-color:rgba(41, 143, 255, 1);
  4861. border:none;
  4862. border-radius:4px;
  4863. -moz-box-shadow:none;
  4864. -webkit-box-shadow:none;
  4865. box-shadow:none;
  4866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4867. font-weight:400;
  4868. font-style:normal;
  4869. font-size:14px;
  4870. color:#FFFFFF;
  4871. }
  4872. #u76119 {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:352px;
  4876. top:165px;
  4877. width:77px;
  4878. height:30px;
  4879. display:flex;
  4880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4881. font-weight:400;
  4882. font-style:normal;
  4883. font-size:14px;
  4884. color:#FFFFFF;
  4885. }
  4886. #u76119 .text {
  4887. position:absolute;
  4888. align-self:center;
  4889. padding:5px 10px 5px 10px;
  4890. box-sizing:border-box;
  4891. width:100%;
  4892. }
  4893. #u76119_text {
  4894. border-width:0px;
  4895. white-space:nowrap;
  4896. text-transform:none;
  4897. }
  4898. #u76120_div {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:55px;
  4904. height:30px;
  4905. background:inherit;
  4906. background-color:rgba(255, 255, 255, 1);
  4907. box-sizing:border-box;
  4908. border-width:1px;
  4909. border-style:solid;
  4910. border-color:rgba(170, 170, 170, 1);
  4911. border-radius:4px;
  4912. -moz-box-shadow:none;
  4913. -webkit-box-shadow:none;
  4914. box-shadow:none;
  4915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4916. font-weight:400;
  4917. font-style:normal;
  4918. font-size:12px;
  4919. color:#555555;
  4920. }
  4921. #u76120 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:1321px;
  4925. top:116px;
  4926. width:55px;
  4927. height:30px;
  4928. display:flex;
  4929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4930. font-weight:400;
  4931. font-style:normal;
  4932. font-size:12px;
  4933. color:#555555;
  4934. }
  4935. #u76120 .text {
  4936. position:absolute;
  4937. align-self:center;
  4938. padding:5px 15px 5px 15px;
  4939. box-sizing:border-box;
  4940. width:100%;
  4941. }
  4942. #u76120_text {
  4943. border-width:0px;
  4944. white-space:nowrap;
  4945. text-transform:none;
  4946. }
  4947. #u76121 {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:0px;
  4953. height:0px;
  4954. }
  4955. #u76122_div {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:0px;
  4959. top:0px;
  4960. width:140px;
  4961. height:30px;
  4962. background:inherit;
  4963. background-color:rgba(255, 255, 255, 1);
  4964. box-sizing:border-box;
  4965. border-width:1px;
  4966. border-style:solid;
  4967. border-color:rgba(201, 201, 201, 1);
  4968. border-radius:4px;
  4969. -moz-box-shadow:none;
  4970. -webkit-box-shadow:none;
  4971. box-shadow:none;
  4972. font-family:'Microsoft YaHei', sans-serif;
  4973. font-weight:400;
  4974. font-style:normal;
  4975. font-size:14px;
  4976. color:#CCCCCC;
  4977. text-align:left;
  4978. }
  4979. #u76122 {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:652px;
  4983. top:116px;
  4984. width:140px;
  4985. height:30px;
  4986. display:flex;
  4987. font-family:'Microsoft YaHei', sans-serif;
  4988. font-weight:400;
  4989. font-style:normal;
  4990. font-size:14px;
  4991. color:#CCCCCC;
  4992. text-align:left;
  4993. }
  4994. #u76122 .text {
  4995. position:absolute;
  4996. align-self:center;
  4997. padding:2px 8px 2px 8px;
  4998. box-sizing:border-box;
  4999. width:100%;
  5000. }
  5001. #u76122_text {
  5002. border-width:0px;
  5003. word-wrap:break-word;
  5004. text-transform:none;
  5005. visibility:hidden;
  5006. }
  5007. #u76123_input {
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:127px;
  5012. height:25px;
  5013. padding:2px 2px 2px 2px;
  5014. font-family:'Microsoft YaHei', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:10px;
  5018. letter-spacing:normal;
  5019. color:#000000;
  5020. vertical-align:none;
  5021. text-align:left;
  5022. text-transform:none;
  5023. background-color:transparent;
  5024. border-color:transparent;
  5025. }
  5026. #u76123_input.disabled {
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:127px;
  5031. height:25px;
  5032. padding:2px 2px 2px 2px;
  5033. font-family:'Microsoft YaHei', sans-serif;
  5034. font-weight:400;
  5035. font-style:normal;
  5036. font-size:10px;
  5037. letter-spacing:normal;
  5038. color:#000000;
  5039. vertical-align:none;
  5040. text-align:left;
  5041. text-transform:none;
  5042. background-color:transparent;
  5043. border-color:transparent;
  5044. }
  5045. #u76123_div {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:0px;
  5049. top:0px;
  5050. width:127px;
  5051. height:25px;
  5052. background:inherit;
  5053. background-color:rgba(255, 255, 255, 1);
  5054. border:none;
  5055. border-radius:0px;
  5056. -moz-box-shadow:none;
  5057. -webkit-box-shadow:none;
  5058. box-shadow:none;
  5059. font-family:'Microsoft YaHei', sans-serif;
  5060. font-weight:400;
  5061. font-style:normal;
  5062. font-size:10px;
  5063. }
  5064. #u76123 {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:660px;
  5068. top:117px;
  5069. width:127px;
  5070. height:25px;
  5071. display:flex;
  5072. font-family:'Microsoft YaHei', sans-serif;
  5073. font-weight:400;
  5074. font-style:normal;
  5075. font-size:10px;
  5076. }
  5077. #u76123 .text {
  5078. position:absolute;
  5079. align-self:center;
  5080. padding:2px 2px 2px 2px;
  5081. box-sizing:border-box;
  5082. width:100%;
  5083. }
  5084. #u76123_div.disabled {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:0px;
  5088. top:0px;
  5089. width:127px;
  5090. height:25px;
  5091. background:inherit;
  5092. background-color:rgba(240, 240, 240, 1);
  5093. border:none;
  5094. border-radius:0px;
  5095. -moz-box-shadow:none;
  5096. -webkit-box-shadow:none;
  5097. box-shadow:none;
  5098. font-family:'Microsoft YaHei', sans-serif;
  5099. font-weight:400;
  5100. font-style:normal;
  5101. font-size:10px;
  5102. }
  5103. #u76123.disabled {
  5104. }
  5105. #u76124_div {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:0px;
  5109. top:0px;
  5110. width:59px;
  5111. height:30px;
  5112. background:inherit;
  5113. background-color:rgba(0, 153, 255, 1);
  5114. box-sizing:border-box;
  5115. border-width:1px;
  5116. border-style:solid;
  5117. border-color:rgba(0, 153, 255, 1);
  5118. border-radius:4px;
  5119. -moz-box-shadow:none;
  5120. -webkit-box-shadow:none;
  5121. box-shadow:none;
  5122. font-family:'Microsoft YaHei', sans-serif;
  5123. font-weight:400;
  5124. font-style:normal;
  5125. font-size:14px;
  5126. color:#FFFFFF;
  5127. }
  5128. #u76124 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:1252px;
  5132. top:116px;
  5133. width:59px;
  5134. height:30px;
  5135. display:flex;
  5136. font-family:'Microsoft YaHei', sans-serif;
  5137. font-weight:400;
  5138. font-style:normal;
  5139. font-size:14px;
  5140. color:#FFFFFF;
  5141. }
  5142. #u76124 .text {
  5143. position:absolute;
  5144. align-self:center;
  5145. padding:5px 15px 5px 15px;
  5146. box-sizing:border-box;
  5147. width:100%;
  5148. }
  5149. #u76124_text {
  5150. border-width:0px;
  5151. white-space:nowrap;
  5152. text-transform:none;
  5153. }
  5154. #u76125 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:0px;
  5158. top:0px;
  5159. width:0px;
  5160. height:0px;
  5161. }
  5162. #u76126_div {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:0px;
  5166. top:0px;
  5167. width:140px;
  5168. height:30px;
  5169. background:inherit;
  5170. background-color:rgba(255, 255, 255, 1);
  5171. box-sizing:border-box;
  5172. border-width:1px;
  5173. border-style:solid;
  5174. border-color:rgba(201, 201, 201, 1);
  5175. border-radius:4px;
  5176. -moz-box-shadow:none;
  5177. -webkit-box-shadow:none;
  5178. box-shadow:none;
  5179. font-family:'Microsoft YaHei', sans-serif;
  5180. font-weight:400;
  5181. font-style:normal;
  5182. font-size:14px;
  5183. color:#CCCCCC;
  5184. text-align:left;
  5185. }
  5186. #u76126 {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:952px;
  5190. top:116px;
  5191. width:140px;
  5192. height:30px;
  5193. display:flex;
  5194. font-family:'Microsoft YaHei', sans-serif;
  5195. font-weight:400;
  5196. font-style:normal;
  5197. font-size:14px;
  5198. color:#CCCCCC;
  5199. text-align:left;
  5200. }
  5201. #u76126 .text {
  5202. position:absolute;
  5203. align-self:center;
  5204. padding:2px 8px 2px 8px;
  5205. box-sizing:border-box;
  5206. width:100%;
  5207. }
  5208. #u76126_text {
  5209. border-width:0px;
  5210. word-wrap:break-word;
  5211. text-transform:none;
  5212. visibility:hidden;
  5213. }
  5214. #u76127_input {
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:127px;
  5219. height:25px;
  5220. padding:2px 2px 2px 2px;
  5221. font-family:'Microsoft YaHei', sans-serif;
  5222. font-weight:400;
  5223. font-style:normal;
  5224. font-size:10px;
  5225. letter-spacing:normal;
  5226. color:#000000;
  5227. vertical-align:none;
  5228. text-align:left;
  5229. text-transform:none;
  5230. background-color:transparent;
  5231. border-color:transparent;
  5232. }
  5233. #u76127_input.disabled {
  5234. position:absolute;
  5235. left:0px;
  5236. top:0px;
  5237. width:127px;
  5238. height:25px;
  5239. padding:2px 2px 2px 2px;
  5240. font-family:'Microsoft YaHei', sans-serif;
  5241. font-weight:400;
  5242. font-style:normal;
  5243. font-size:10px;
  5244. letter-spacing:normal;
  5245. color:#000000;
  5246. vertical-align:none;
  5247. text-align:left;
  5248. text-transform:none;
  5249. background-color:transparent;
  5250. border-color:transparent;
  5251. }
  5252. #u76127_div {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:0px;
  5256. top:0px;
  5257. width:127px;
  5258. height:25px;
  5259. background:inherit;
  5260. background-color:rgba(255, 255, 255, 1);
  5261. border:none;
  5262. border-radius:0px;
  5263. -moz-box-shadow:none;
  5264. -webkit-box-shadow:none;
  5265. box-shadow:none;
  5266. font-family:'Microsoft YaHei', sans-serif;
  5267. font-weight:400;
  5268. font-style:normal;
  5269. font-size:10px;
  5270. }
  5271. #u76127 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:960px;
  5275. top:117px;
  5276. width:127px;
  5277. height:25px;
  5278. display:flex;
  5279. font-family:'Microsoft YaHei', sans-serif;
  5280. font-weight:400;
  5281. font-style:normal;
  5282. font-size:10px;
  5283. }
  5284. #u76127 .text {
  5285. position:absolute;
  5286. align-self:center;
  5287. padding:2px 2px 2px 2px;
  5288. box-sizing:border-box;
  5289. width:100%;
  5290. }
  5291. #u76127_div.disabled {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:127px;
  5297. height:25px;
  5298. background:inherit;
  5299. background-color:rgba(240, 240, 240, 1);
  5300. border:none;
  5301. border-radius:0px;
  5302. -moz-box-shadow:none;
  5303. -webkit-box-shadow:none;
  5304. box-shadow:none;
  5305. font-family:'Microsoft YaHei', sans-serif;
  5306. font-weight:400;
  5307. font-style:normal;
  5308. font-size:10px;
  5309. }
  5310. #u76127.disabled {
  5311. }
  5312. #u76128 {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:0px;
  5318. height:0px;
  5319. }
  5320. #u76129_div {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:0px;
  5325. width:140px;
  5326. height:30px;
  5327. background:inherit;
  5328. background-color:rgba(255, 255, 255, 1);
  5329. box-sizing:border-box;
  5330. border-width:1px;
  5331. border-style:solid;
  5332. border-color:rgba(215, 215, 215, 1);
  5333. border-radius:4px;
  5334. -moz-box-shadow:none;
  5335. -webkit-box-shadow:none;
  5336. box-shadow:none;
  5337. font-size:11px;
  5338. }
  5339. #u76129 {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:502px;
  5343. top:116px;
  5344. width:140px;
  5345. height:30px;
  5346. display:flex;
  5347. font-size:11px;
  5348. }
  5349. #u76129 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:2px 2px 2px 2px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u76129_text {
  5357. border-width:0px;
  5358. word-wrap:break-word;
  5359. text-transform:none;
  5360. visibility:hidden;
  5361. }
  5362. #u76130_input {
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:123px;
  5367. height:23px;
  5368. padding:2px 2px 2px 2px;
  5369. font-family:'ArialMT', 'Arial', sans-serif;
  5370. font-weight:400;
  5371. font-style:normal;
  5372. font-size:11px;
  5373. letter-spacing:normal;
  5374. color:#AAAAAA;
  5375. vertical-align:none;
  5376. text-align:left;
  5377. text-transform:none;
  5378. background-color:transparent;
  5379. border-color:transparent;
  5380. }
  5381. #u76130_input.disabled {
  5382. position:absolute;
  5383. left:0px;
  5384. top:0px;
  5385. width:123px;
  5386. height:23px;
  5387. padding:2px 2px 2px 2px;
  5388. font-family:'ArialMT', 'Arial', sans-serif;
  5389. font-weight:400;
  5390. font-style:normal;
  5391. font-size:11px;
  5392. letter-spacing:normal;
  5393. color:#AAAAAA;
  5394. vertical-align:none;
  5395. text-align:left;
  5396. text-transform:none;
  5397. background-color:transparent;
  5398. border-color:transparent;
  5399. }
  5400. #u76130_div {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:123px;
  5406. height:23px;
  5407. background:inherit;
  5408. background-color:rgba(255, 255, 255, 1);
  5409. border:none;
  5410. border-radius:0px;
  5411. -moz-box-shadow:none;
  5412. -webkit-box-shadow:none;
  5413. box-shadow:none;
  5414. font-size:11px;
  5415. color:#AAAAAA;
  5416. }
  5417. #u76130 {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:508px;
  5421. top:118px;
  5422. width:123px;
  5423. height:23px;
  5424. display:flex;
  5425. font-size:11px;
  5426. color:#AAAAAA;
  5427. }
  5428. #u76130 .text {
  5429. position:absolute;
  5430. align-self:flex-start;
  5431. padding:2px 2px 2px 2px;
  5432. box-sizing:border-box;
  5433. width:100%;
  5434. }
  5435. #u76130_div.disabled {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:0px;
  5439. top:0px;
  5440. width:123px;
  5441. height:23px;
  5442. background:inherit;
  5443. background-color:rgba(240, 240, 240, 1);
  5444. border:none;
  5445. border-radius:0px;
  5446. -moz-box-shadow:none;
  5447. -webkit-box-shadow:none;
  5448. box-shadow:none;
  5449. font-size:11px;
  5450. color:#AAAAAA;
  5451. }
  5452. #u76130.disabled {
  5453. }
  5454. .u76130_input_option {
  5455. font-size:11px;
  5456. }
  5457. #u76131 {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:0px;
  5461. top:0px;
  5462. width:0px;
  5463. height:0px;
  5464. }
  5465. #u76132_div {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:0px;
  5469. top:0px;
  5470. width:140px;
  5471. height:30px;
  5472. background:inherit;
  5473. background-color:rgba(255, 255, 255, 1);
  5474. box-sizing:border-box;
  5475. border-width:1px;
  5476. border-style:solid;
  5477. border-color:rgba(215, 215, 215, 1);
  5478. border-radius:4px;
  5479. -moz-box-shadow:none;
  5480. -webkit-box-shadow:none;
  5481. box-shadow:none;
  5482. font-size:11px;
  5483. }
  5484. #u76132 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:802px;
  5488. top:116px;
  5489. width:140px;
  5490. height:30px;
  5491. display:flex;
  5492. font-size:11px;
  5493. }
  5494. #u76132 .text {
  5495. position:absolute;
  5496. align-self:center;
  5497. padding:2px 2px 2px 2px;
  5498. box-sizing:border-box;
  5499. width:100%;
  5500. }
  5501. #u76132_text {
  5502. border-width:0px;
  5503. word-wrap:break-word;
  5504. text-transform:none;
  5505. visibility:hidden;
  5506. }
  5507. #u76133_input {
  5508. position:absolute;
  5509. left:0px;
  5510. top:0px;
  5511. width:123px;
  5512. height:23px;
  5513. padding:2px 2px 2px 2px;
  5514. font-family:'ArialMT', 'Arial', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:11px;
  5518. letter-spacing:normal;
  5519. color:#AAAAAA;
  5520. vertical-align:none;
  5521. text-align:left;
  5522. text-transform:none;
  5523. background-color:transparent;
  5524. border-color:transparent;
  5525. }
  5526. #u76133_input.disabled {
  5527. position:absolute;
  5528. left:0px;
  5529. top:0px;
  5530. width:123px;
  5531. height:23px;
  5532. padding:2px 2px 2px 2px;
  5533. font-family:'ArialMT', 'Arial', sans-serif;
  5534. font-weight:400;
  5535. font-style:normal;
  5536. font-size:11px;
  5537. letter-spacing:normal;
  5538. color:#AAAAAA;
  5539. vertical-align:none;
  5540. text-align:left;
  5541. text-transform:none;
  5542. background-color:transparent;
  5543. border-color:transparent;
  5544. }
  5545. #u76133_div {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:123px;
  5551. height:23px;
  5552. background:inherit;
  5553. background-color:rgba(255, 255, 255, 1);
  5554. border:none;
  5555. border-radius:0px;
  5556. -moz-box-shadow:none;
  5557. -webkit-box-shadow:none;
  5558. box-shadow:none;
  5559. font-size:11px;
  5560. color:#AAAAAA;
  5561. }
  5562. #u76133 {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:808px;
  5566. top:118px;
  5567. width:123px;
  5568. height:23px;
  5569. display:flex;
  5570. font-size:11px;
  5571. color:#AAAAAA;
  5572. }
  5573. #u76133 .text {
  5574. position:absolute;
  5575. align-self:flex-start;
  5576. padding:2px 2px 2px 2px;
  5577. box-sizing:border-box;
  5578. width:100%;
  5579. }
  5580. #u76133_div.disabled {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:123px;
  5586. height:23px;
  5587. background:inherit;
  5588. background-color:rgba(240, 240, 240, 1);
  5589. border:none;
  5590. border-radius:0px;
  5591. -moz-box-shadow:none;
  5592. -webkit-box-shadow:none;
  5593. box-shadow:none;
  5594. font-size:11px;
  5595. color:#AAAAAA;
  5596. }
  5597. #u76133.disabled {
  5598. }
  5599. .u76133_input_option {
  5600. font-size:11px;
  5601. }
  5602. #u76134 {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:0px;
  5606. top:0px;
  5607. width:0px;
  5608. height:0px;
  5609. }
  5610. #u76135_div {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:0px;
  5615. width:140px;
  5616. height:30px;
  5617. background:inherit;
  5618. background-color:rgba(255, 255, 255, 1);
  5619. box-sizing:border-box;
  5620. border-width:1px;
  5621. border-style:solid;
  5622. border-color:rgba(215, 215, 215, 1);
  5623. border-radius:4px;
  5624. -moz-box-shadow:none;
  5625. -webkit-box-shadow:none;
  5626. box-shadow:none;
  5627. font-size:11px;
  5628. }
  5629. #u76135 {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:352px;
  5633. top:115px;
  5634. width:140px;
  5635. height:30px;
  5636. display:flex;
  5637. font-size:11px;
  5638. }
  5639. #u76135 .text {
  5640. position:absolute;
  5641. align-self:center;
  5642. padding:2px 2px 2px 2px;
  5643. box-sizing:border-box;
  5644. width:100%;
  5645. }
  5646. #u76135_text {
  5647. border-width:0px;
  5648. word-wrap:break-word;
  5649. text-transform:none;
  5650. visibility:hidden;
  5651. }
  5652. #u76136_input {
  5653. position:absolute;
  5654. left:0px;
  5655. top:0px;
  5656. width:123px;
  5657. height:23px;
  5658. padding:2px 2px 2px 2px;
  5659. font-family:'ArialMT', 'Arial', sans-serif;
  5660. font-weight:400;
  5661. font-style:normal;
  5662. font-size:11px;
  5663. letter-spacing:normal;
  5664. color:#AAAAAA;
  5665. vertical-align:none;
  5666. text-align:left;
  5667. text-transform:none;
  5668. background-color:transparent;
  5669. border-color:transparent;
  5670. }
  5671. #u76136_input.disabled {
  5672. position:absolute;
  5673. left:0px;
  5674. top:0px;
  5675. width:123px;
  5676. height:23px;
  5677. padding:2px 2px 2px 2px;
  5678. font-family:'ArialMT', 'Arial', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:11px;
  5682. letter-spacing:normal;
  5683. color:#AAAAAA;
  5684. vertical-align:none;
  5685. text-align:left;
  5686. text-transform:none;
  5687. background-color:transparent;
  5688. border-color:transparent;
  5689. }
  5690. #u76136_div {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:0px;
  5694. top:0px;
  5695. width:123px;
  5696. height:23px;
  5697. background:inherit;
  5698. background-color:rgba(255, 255, 255, 1);
  5699. border:none;
  5700. border-radius:0px;
  5701. -moz-box-shadow:none;
  5702. -webkit-box-shadow:none;
  5703. box-shadow:none;
  5704. font-size:11px;
  5705. color:#AAAAAA;
  5706. }
  5707. #u76136 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:358px;
  5711. top:117px;
  5712. width:123px;
  5713. height:23px;
  5714. display:flex;
  5715. font-size:11px;
  5716. color:#AAAAAA;
  5717. }
  5718. #u76136 .text {
  5719. position:absolute;
  5720. align-self:flex-start;
  5721. padding:2px 2px 2px 2px;
  5722. box-sizing:border-box;
  5723. width:100%;
  5724. }
  5725. #u76136_div.disabled {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:0px;
  5729. top:0px;
  5730. width:123px;
  5731. height:23px;
  5732. background:inherit;
  5733. background-color:rgba(240, 240, 240, 1);
  5734. border:none;
  5735. border-radius:0px;
  5736. -moz-box-shadow:none;
  5737. -webkit-box-shadow:none;
  5738. box-shadow:none;
  5739. font-size:11px;
  5740. color:#AAAAAA;
  5741. }
  5742. #u76136.disabled {
  5743. }
  5744. .u76136_input_option {
  5745. font-size:11px;
  5746. }
  5747. #u76137 {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:0px;
  5751. top:0px;
  5752. width:0px;
  5753. height:0px;
  5754. }
  5755. #u76138_div {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:140px;
  5761. height:30px;
  5762. background:inherit;
  5763. background-color:rgba(255, 255, 255, 1);
  5764. box-sizing:border-box;
  5765. border-width:1px;
  5766. border-style:solid;
  5767. border-color:rgba(201, 201, 201, 1);
  5768. border-radius:4px;
  5769. -moz-box-shadow:none;
  5770. -webkit-box-shadow:none;
  5771. box-shadow:none;
  5772. font-family:'Microsoft YaHei', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. font-size:14px;
  5776. color:#CCCCCC;
  5777. text-align:left;
  5778. }
  5779. #u76138 {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:1102px;
  5783. top:116px;
  5784. width:140px;
  5785. height:30px;
  5786. display:flex;
  5787. font-family:'Microsoft YaHei', sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. font-size:14px;
  5791. color:#CCCCCC;
  5792. text-align:left;
  5793. }
  5794. #u76138 .text {
  5795. position:absolute;
  5796. align-self:center;
  5797. padding:2px 8px 2px 8px;
  5798. box-sizing:border-box;
  5799. width:100%;
  5800. }
  5801. #u76138_text {
  5802. border-width:0px;
  5803. word-wrap:break-word;
  5804. text-transform:none;
  5805. visibility:hidden;
  5806. }
  5807. #u76139_input {
  5808. position:absolute;
  5809. left:0px;
  5810. top:0px;
  5811. width:127px;
  5812. height:25px;
  5813. padding:2px 2px 2px 2px;
  5814. font-family:'Microsoft YaHei', sans-serif;
  5815. font-weight:400;
  5816. font-style:normal;
  5817. font-size:10px;
  5818. letter-spacing:normal;
  5819. color:#000000;
  5820. vertical-align:none;
  5821. text-align:left;
  5822. text-transform:none;
  5823. background-color:transparent;
  5824. border-color:transparent;
  5825. }
  5826. #u76139_input.disabled {
  5827. position:absolute;
  5828. left:0px;
  5829. top:0px;
  5830. width:127px;
  5831. height:25px;
  5832. padding:2px 2px 2px 2px;
  5833. font-family:'Microsoft YaHei', sans-serif;
  5834. font-weight:400;
  5835. font-style:normal;
  5836. font-size:10px;
  5837. letter-spacing:normal;
  5838. color:#000000;
  5839. vertical-align:none;
  5840. text-align:left;
  5841. text-transform:none;
  5842. background-color:transparent;
  5843. border-color:transparent;
  5844. }
  5845. #u76139_div {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:0px;
  5849. top:0px;
  5850. width:127px;
  5851. height:25px;
  5852. background:inherit;
  5853. background-color:rgba(255, 255, 255, 1);
  5854. border:none;
  5855. border-radius:0px;
  5856. -moz-box-shadow:none;
  5857. -webkit-box-shadow:none;
  5858. box-shadow:none;
  5859. font-family:'Microsoft YaHei', sans-serif;
  5860. font-weight:400;
  5861. font-style:normal;
  5862. font-size:10px;
  5863. }
  5864. #u76139 {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:1110px;
  5868. top:117px;
  5869. width:127px;
  5870. height:25px;
  5871. display:flex;
  5872. font-family:'Microsoft YaHei', sans-serif;
  5873. font-weight:400;
  5874. font-style:normal;
  5875. font-size:10px;
  5876. }
  5877. #u76139 .text {
  5878. position:absolute;
  5879. align-self:center;
  5880. padding:2px 2px 2px 2px;
  5881. box-sizing:border-box;
  5882. width:100%;
  5883. }
  5884. #u76139_div.disabled {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:0px;
  5888. top:0px;
  5889. width:127px;
  5890. height:25px;
  5891. background:inherit;
  5892. background-color:rgba(240, 240, 240, 1);
  5893. border:none;
  5894. border-radius:0px;
  5895. -moz-box-shadow:none;
  5896. -webkit-box-shadow:none;
  5897. box-shadow:none;
  5898. font-family:'Microsoft YaHei', sans-serif;
  5899. font-weight:400;
  5900. font-style:normal;
  5901. font-size:10px;
  5902. }
  5903. #u76139.disabled {
  5904. }
  5905. #u76140_div {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:55px;
  5911. height:30px;
  5912. background:inherit;
  5913. background-color:rgba(255, 255, 255, 1);
  5914. box-sizing:border-box;
  5915. border-width:1px;
  5916. border-style:solid;
  5917. border-color:rgba(170, 170, 170, 1);
  5918. border-radius:4px;
  5919. -moz-box-shadow:none;
  5920. -webkit-box-shadow:none;
  5921. box-shadow:none;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:12px;
  5926. color:#555555;
  5927. }
  5928. #u76140 {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:504px;
  5932. top:165px;
  5933. width:55px;
  5934. height:30px;
  5935. display:flex;
  5936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. font-size:12px;
  5940. color:#555555;
  5941. }
  5942. #u76140 .text {
  5943. position:absolute;
  5944. align-self:center;
  5945. padding:5px 15px 5px 15px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u76140_text {
  5950. border-width:0px;
  5951. white-space:nowrap;
  5952. text-transform:none;
  5953. }
  5954. #u76141_div {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:19px;
  5960. height:18px;
  5961. background:inherit;
  5962. background-color:rgba(129, 211, 248, 0.0980392156862745);
  5963. box-sizing:border-box;
  5964. border-width:1px;
  5965. border-style:solid;
  5966. border-color:rgba(0, 153, 255, 1);
  5967. border-radius:4px;
  5968. -moz-box-shadow:none;
  5969. -webkit-box-shadow:none;
  5970. box-shadow:none;
  5971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. font-size:10px;
  5975. color:#0099FF;
  5976. }
  5977. #u76141 {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:576px;
  5981. top:256px;
  5982. width:19px;
  5983. height:18px;
  5984. display:flex;
  5985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5986. font-weight:400;
  5987. font-style:normal;
  5988. font-size:10px;
  5989. color:#0099FF;
  5990. }
  5991. #u76141 .text {
  5992. position:absolute;
  5993. align-self:center;
  5994. padding:2px 2px 2px 2px;
  5995. box-sizing:border-box;
  5996. width:100%;
  5997. }
  5998. #u76141_text {
  5999. border-width:0px;
  6000. word-wrap:break-word;
  6001. text-transform:none;
  6002. }
  6003. #u76142_div {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:0px;
  6007. top:0px;
  6008. width:19px;
  6009. height:18px;
  6010. background:inherit;
  6011. background-color:rgba(129, 211, 248, 0.0980392156862745);
  6012. box-sizing:border-box;
  6013. border-width:1px;
  6014. border-style:solid;
  6015. border-color:rgba(0, 153, 255, 1);
  6016. border-radius:4px;
  6017. -moz-box-shadow:none;
  6018. -webkit-box-shadow:none;
  6019. box-shadow:none;
  6020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6021. font-weight:400;
  6022. font-style:normal;
  6023. font-size:10px;
  6024. color:#0099FF;
  6025. }
  6026. #u76142 {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:576px;
  6030. top:293px;
  6031. width:19px;
  6032. height:18px;
  6033. display:flex;
  6034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6035. font-weight:400;
  6036. font-style:normal;
  6037. font-size:10px;
  6038. color:#0099FF;
  6039. }
  6040. #u76142 .text {
  6041. position:absolute;
  6042. align-self:center;
  6043. padding:2px 2px 2px 2px;
  6044. box-sizing:border-box;
  6045. width:100%;
  6046. }
  6047. #u76142_text {
  6048. border-width:0px;
  6049. word-wrap:break-word;
  6050. text-transform:none;
  6051. }
  6052. #u76143_div {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:38px;
  6058. height:24px;
  6059. background:inherit;
  6060. background-color:rgba(255, 255, 255, 1);
  6061. box-sizing:border-box;
  6062. border-width:1px;
  6063. border-style:solid;
  6064. border-color:rgba(170, 170, 170, 1);
  6065. border-radius:4px;
  6066. -moz-box-shadow:none;
  6067. -webkit-box-shadow:none;
  6068. box-shadow:none;
  6069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6070. font-weight:400;
  6071. font-style:normal;
  6072. font-size:10px;
  6073. color:#555555;
  6074. }
  6075. #u76143 {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:1330px;
  6079. top:256px;
  6080. width:38px;
  6081. height:24px;
  6082. display:flex;
  6083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6084. font-weight:400;
  6085. font-style:normal;
  6086. font-size:10px;
  6087. color:#555555;
  6088. }
  6089. #u76143 .text {
  6090. position:absolute;
  6091. align-self:center;
  6092. padding:5px 0px 5px 0px;
  6093. box-sizing:border-box;
  6094. width:100%;
  6095. }
  6096. #u76143_text {
  6097. border-width:0px;
  6098. word-wrap:break-word;
  6099. text-transform:none;
  6100. }
  6101. #u76144_div {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:0px;
  6105. top:0px;
  6106. width:38px;
  6107. height:24px;
  6108. background:inherit;
  6109. background-color:rgba(255, 255, 255, 1);
  6110. box-sizing:border-box;
  6111. border-width:1px;
  6112. border-style:solid;
  6113. border-color:rgba(170, 170, 170, 1);
  6114. border-radius:4px;
  6115. -moz-box-shadow:none;
  6116. -webkit-box-shadow:none;
  6117. box-shadow:none;
  6118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6119. font-weight:400;
  6120. font-style:normal;
  6121. font-size:10px;
  6122. color:#555555;
  6123. }
  6124. #u76144 {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:1330px;
  6128. top:293px;
  6129. width:38px;
  6130. height:24px;
  6131. display:flex;
  6132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6133. font-weight:400;
  6134. font-style:normal;
  6135. font-size:10px;
  6136. color:#555555;
  6137. }
  6138. #u76144 .text {
  6139. position:absolute;
  6140. align-self:center;
  6141. padding:5px 0px 5px 0px;
  6142. box-sizing:border-box;
  6143. width:100%;
  6144. }
  6145. #u76144_text {
  6146. border-width:0px;
  6147. word-wrap:break-word;
  6148. text-transform:none;
  6149. }
  6150. #u76145_div {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:0px;
  6154. top:0px;
  6155. width:38px;
  6156. height:24px;
  6157. background:inherit;
  6158. background-color:rgba(255, 255, 255, 1);
  6159. box-sizing:border-box;
  6160. border-width:1px;
  6161. border-style:solid;
  6162. border-color:rgba(170, 170, 170, 1);
  6163. border-radius:4px;
  6164. -moz-box-shadow:none;
  6165. -webkit-box-shadow:none;
  6166. box-shadow:none;
  6167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6168. font-weight:400;
  6169. font-style:normal;
  6170. font-size:10px;
  6171. color:#555555;
  6172. }
  6173. #u76145 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:1330px;
  6177. top:331px;
  6178. width:38px;
  6179. height:24px;
  6180. display:flex;
  6181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:10px;
  6185. color:#555555;
  6186. }
  6187. #u76145 .text {
  6188. position:absolute;
  6189. align-self:center;
  6190. padding:5px 0px 5px 0px;
  6191. box-sizing:border-box;
  6192. width:100%;
  6193. }
  6194. #u76145_text {
  6195. border-width:0px;
  6196. word-wrap:break-word;
  6197. text-transform:none;
  6198. }
  6199. #u76146_div {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:0px;
  6203. top:0px;
  6204. width:38px;
  6205. height:24px;
  6206. background:inherit;
  6207. background-color:rgba(255, 255, 255, 1);
  6208. box-sizing:border-box;
  6209. border-width:1px;
  6210. border-style:solid;
  6211. border-color:rgba(170, 170, 170, 1);
  6212. border-radius:4px;
  6213. -moz-box-shadow:none;
  6214. -webkit-box-shadow:none;
  6215. box-shadow:none;
  6216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:10px;
  6220. color:#555555;
  6221. }
  6222. #u76146 {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:1330px;
  6226. top:368px;
  6227. width:38px;
  6228. height:24px;
  6229. display:flex;
  6230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6231. font-weight:400;
  6232. font-style:normal;
  6233. font-size:10px;
  6234. color:#555555;
  6235. }
  6236. #u76146 .text {
  6237. position:absolute;
  6238. align-self:center;
  6239. padding:5px 0px 5px 0px;
  6240. box-sizing:border-box;
  6241. width:100%;
  6242. }
  6243. #u76146_text {
  6244. border-width:0px;
  6245. word-wrap:break-word;
  6246. text-transform:none;
  6247. }
  6248. #u76147_div {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:38px;
  6254. height:24px;
  6255. background:inherit;
  6256. background-color:rgba(255, 255, 255, 1);
  6257. box-sizing:border-box;
  6258. border-width:1px;
  6259. border-style:solid;
  6260. border-color:rgba(217, 0, 27, 1);
  6261. border-radius:4px;
  6262. -moz-box-shadow:none;
  6263. -webkit-box-shadow:none;
  6264. box-shadow:none;
  6265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6266. font-weight:400;
  6267. font-style:normal;
  6268. font-size:10px;
  6269. color:#D9001B;
  6270. }
  6271. #u76147 {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:1330px;
  6275. top:406px;
  6276. width:38px;
  6277. height:24px;
  6278. display:flex;
  6279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6280. font-weight:400;
  6281. font-style:normal;
  6282. font-size:10px;
  6283. color:#D9001B;
  6284. }
  6285. #u76147 .text {
  6286. position:absolute;
  6287. align-self:center;
  6288. padding:5px 0px 5px 0px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u76147_text {
  6293. border-width:0px;
  6294. word-wrap:break-word;
  6295. text-transform:none;
  6296. }
  6297. #u76148_div {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:38px;
  6303. height:24px;
  6304. background:inherit;
  6305. background-color:rgba(255, 255, 255, 1);
  6306. box-sizing:border-box;
  6307. border-width:1px;
  6308. border-style:solid;
  6309. border-color:rgba(170, 170, 170, 1);
  6310. border-radius:4px;
  6311. -moz-box-shadow:none;
  6312. -webkit-box-shadow:none;
  6313. box-shadow:none;
  6314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6315. font-weight:400;
  6316. font-style:normal;
  6317. font-size:10px;
  6318. color:#555555;
  6319. }
  6320. #u76148 {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:1330px;
  6324. top:441px;
  6325. width:38px;
  6326. height:24px;
  6327. display:flex;
  6328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6329. font-weight:400;
  6330. font-style:normal;
  6331. font-size:10px;
  6332. color:#555555;
  6333. }
  6334. #u76148 .text {
  6335. position:absolute;
  6336. align-self:center;
  6337. padding:5px 0px 5px 0px;
  6338. box-sizing:border-box;
  6339. width:100%;
  6340. }
  6341. #u76148_text {
  6342. border-width:0px;
  6343. word-wrap:break-word;
  6344. text-transform:none;
  6345. }
  6346. #u76149_div {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:55px;
  6352. height:30px;
  6353. background:inherit;
  6354. background-color:rgba(255, 255, 255, 1);
  6355. box-sizing:border-box;
  6356. border-width:1px;
  6357. border-style:solid;
  6358. border-color:rgba(170, 170, 170, 1);
  6359. border-radius:4px;
  6360. -moz-box-shadow:none;
  6361. -webkit-box-shadow:none;
  6362. box-shadow:none;
  6363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6364. font-weight:400;
  6365. font-style:normal;
  6366. font-size:12px;
  6367. color:#555555;
  6368. }
  6369. #u76149 {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:439px;
  6373. top:165px;
  6374. width:55px;
  6375. height:30px;
  6376. display:flex;
  6377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6378. font-weight:400;
  6379. font-style:normal;
  6380. font-size:12px;
  6381. color:#555555;
  6382. }
  6383. #u76149 .text {
  6384. position:absolute;
  6385. align-self:center;
  6386. padding:5px 15px 5px 15px;
  6387. box-sizing:border-box;
  6388. width:100%;
  6389. }
  6390. #u76149_text {
  6391. border-width:0px;
  6392. white-space:nowrap;
  6393. text-transform:none;
  6394. }
  6395. #u76151 {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:0px;
  6399. top:0px;
  6400. width:0px;
  6401. height:0px;
  6402. }
  6403. #u76152_img {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:0px;
  6407. top:0px;
  6408. width:200px;
  6409. height:1191px;
  6410. }
  6411. #u76152 {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:120px;
  6415. top:50px;
  6416. width:200px;
  6417. height:1191px;
  6418. display:flex;
  6419. }
  6420. #u76152 .text {
  6421. position:absolute;
  6422. align-self:center;
  6423. padding:2px 2px 2px 2px;
  6424. box-sizing:border-box;
  6425. width:100%;
  6426. }
  6427. #u76152_text {
  6428. border-width:0px;
  6429. word-wrap:break-word;
  6430. text-transform:none;
  6431. visibility:hidden;
  6432. }
  6433. #u76153_div {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:0px;
  6437. top:0px;
  6438. width:200px;
  6439. height:60px;
  6440. background:inherit;
  6441. background-color:rgba(224, 231, 247, 1);
  6442. border:none;
  6443. border-radius:0px;
  6444. -moz-box-shadow:none;
  6445. -webkit-box-shadow:none;
  6446. box-shadow:none;
  6447. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6448. font-weight:500;
  6449. font-style:normal;
  6450. font-size:18px;
  6451. }
  6452. #u76153 {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:120px;
  6456. top:50px;
  6457. width:200px;
  6458. height:60px;
  6459. display:flex;
  6460. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6461. font-weight:500;
  6462. font-style:normal;
  6463. font-size:18px;
  6464. }
  6465. #u76153 .text {
  6466. position:absolute;
  6467. align-self:center;
  6468. padding:0px 0px 0px 20px;
  6469. box-sizing:border-box;
  6470. width:100%;
  6471. }
  6472. #u76153_text {
  6473. border-width:0px;
  6474. word-wrap:break-word;
  6475. text-transform:none;
  6476. }
  6477. #u76154 {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:120px;
  6481. top:130px;
  6482. width:200px;
  6483. height:1078px;
  6484. }
  6485. #u76154_state0 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:0px;
  6489. top:0px;
  6490. width:200px;
  6491. height:1078px;
  6492. overflow:auto;
  6493. -webkit-overflow-scrolling:touch;
  6494. -ms-overflow-x:hidden;
  6495. overflow-x:hidden;
  6496. background-image:none;
  6497. border:none;
  6498. border-radius:0px;
  6499. -moz-box-shadow:none;
  6500. -webkit-box-shadow:none;
  6501. box-shadow:none;
  6502. }
  6503. #u76154_state0_content {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:0px;
  6507. top:0px;
  6508. width:1px;
  6509. height:1px;
  6510. }
  6511. #u76155_div {
  6512. border-width:0px;
  6513. position:absolute;
  6514. left:0px;
  6515. top:0px;
  6516. width:97px;
  6517. height:22px;
  6518. background:inherit;
  6519. background-color:rgba(255, 255, 255, 0);
  6520. border:none;
  6521. border-radius:0px;
  6522. -moz-box-shadow:none;
  6523. -webkit-box-shadow:none;
  6524. box-shadow:none;
  6525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6526. font-weight:400;
  6527. font-style:normal;
  6528. font-size:16px;
  6529. }
  6530. #u76155 {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:30px;
  6534. top:0px;
  6535. width:97px;
  6536. height:22px;
  6537. display:flex;
  6538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6539. font-weight:400;
  6540. font-style:normal;
  6541. font-size:16px;
  6542. }
  6543. #u76155 .text {
  6544. position:absolute;
  6545. align-self:flex-start;
  6546. padding:0px 0px 0px 0px;
  6547. box-sizing:border-box;
  6548. width:100%;
  6549. }
  6550. #u76155_text {
  6551. border-width:0px;
  6552. word-wrap:break-word;
  6553. text-transform:none;
  6554. }
  6555. #u76156_div {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:65px;
  6561. height:22px;
  6562. background:inherit;
  6563. background-color:rgba(255, 255, 255, 0);
  6564. border:none;
  6565. border-radius:0px;
  6566. -moz-box-shadow:none;
  6567. -webkit-box-shadow:none;
  6568. box-shadow:none;
  6569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6570. font-weight:400;
  6571. font-style:normal;
  6572. font-size:16px;
  6573. }
  6574. #u76156 {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:30px;
  6578. top:42px;
  6579. width:65px;
  6580. height:22px;
  6581. display:flex;
  6582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6583. font-weight:400;
  6584. font-style:normal;
  6585. font-size:16px;
  6586. }
  6587. #u76156 .text {
  6588. position:absolute;
  6589. align-self:flex-start;
  6590. padding:0px 0px 0px 0px;
  6591. box-sizing:border-box;
  6592. width:100%;
  6593. }
  6594. #u76156_text {
  6595. border-width:0px;
  6596. white-space:nowrap;
  6597. text-transform:none;
  6598. }
  6599. #u76157_div {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:49px;
  6605. height:22px;
  6606. background:inherit;
  6607. background-color:rgba(255, 255, 255, 0);
  6608. border:none;
  6609. border-radius:0px;
  6610. -moz-box-shadow:none;
  6611. -webkit-box-shadow:none;
  6612. box-shadow:none;
  6613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6614. font-weight:400;
  6615. font-style:normal;
  6616. font-size:16px;
  6617. }
  6618. #u76157 {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:30px;
  6622. top:145px;
  6623. width:49px;
  6624. height:22px;
  6625. display:flex;
  6626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6627. font-weight:400;
  6628. font-style:normal;
  6629. font-size:16px;
  6630. }
  6631. #u76157 .text {
  6632. position:absolute;
  6633. align-self:flex-start;
  6634. padding:0px 0px 0px 0px;
  6635. box-sizing:border-box;
  6636. width:100%;
  6637. }
  6638. #u76157_text {
  6639. border-width:0px;
  6640. white-space:nowrap;
  6641. text-transform:none;
  6642. }
  6643. #u76158_div {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:0px;
  6647. top:0px;
  6648. width:97px;
  6649. height:22px;
  6650. background:inherit;
  6651. background-color:rgba(255, 255, 255, 0);
  6652. border:none;
  6653. border-radius:0px;
  6654. -moz-box-shadow:none;
  6655. -webkit-box-shadow:none;
  6656. box-shadow:none;
  6657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6658. font-weight:400;
  6659. font-style:normal;
  6660. font-size:16px;
  6661. }
  6662. #u76158 {
  6663. border-width:0px;
  6664. position:absolute;
  6665. left:30px;
  6666. top:187px;
  6667. width:97px;
  6668. height:22px;
  6669. display:flex;
  6670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6671. font-weight:400;
  6672. font-style:normal;
  6673. font-size:16px;
  6674. }
  6675. #u76158 .text {
  6676. position:absolute;
  6677. align-self:flex-start;
  6678. padding:0px 0px 0px 0px;
  6679. box-sizing:border-box;
  6680. width:100%;
  6681. }
  6682. #u76158_text {
  6683. border-width:0px;
  6684. word-wrap:break-word;
  6685. text-transform:none;
  6686. }
  6687. #u76159_img {
  6688. border-width:0px;
  6689. position:absolute;
  6690. left:0px;
  6691. top:0px;
  6692. width:201px;
  6693. height:2px;
  6694. }
  6695. #u76159 {
  6696. border-width:0px;
  6697. position:absolute;
  6698. left:0px;
  6699. top:84px;
  6700. width:200px;
  6701. height:1px;
  6702. display:flex;
  6703. }
  6704. #u76159 .text {
  6705. position:absolute;
  6706. align-self:center;
  6707. padding:2px 2px 2px 2px;
  6708. box-sizing:border-box;
  6709. width:100%;
  6710. }
  6711. #u76159_text {
  6712. border-width:0px;
  6713. word-wrap:break-word;
  6714. text-transform:none;
  6715. visibility:hidden;
  6716. }
  6717. #u76160_div {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:0px;
  6721. top:0px;
  6722. width:49px;
  6723. height:17px;
  6724. background:inherit;
  6725. background-color:rgba(255, 255, 255, 0);
  6726. border:none;
  6727. border-radius:0px;
  6728. -moz-box-shadow:none;
  6729. -webkit-box-shadow:none;
  6730. box-shadow:none;
  6731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6732. font-weight:400;
  6733. font-style:normal;
  6734. font-size:12px;
  6735. color:#AAAAAA;
  6736. }
  6737. #u76160 {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:30px;
  6741. top:105px;
  6742. width:49px;
  6743. height:17px;
  6744. display:flex;
  6745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:12px;
  6749. color:#AAAAAA;
  6750. }
  6751. #u76160 .text {
  6752. position:absolute;
  6753. align-self:flex-start;
  6754. padding:0px 0px 0px 0px;
  6755. box-sizing:border-box;
  6756. width:100%;
  6757. }
  6758. #u76160_text {
  6759. border-width:0px;
  6760. white-space:nowrap;
  6761. text-transform:none;
  6762. }
  6763. #u76161_div {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:0px;
  6767. top:0px;
  6768. width:97px;
  6769. height:22px;
  6770. background:inherit;
  6771. background-color:rgba(255, 255, 255, 0);
  6772. border:none;
  6773. border-radius:0px;
  6774. -moz-box-shadow:none;
  6775. -webkit-box-shadow:none;
  6776. box-shadow:none;
  6777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6778. font-weight:400;
  6779. font-style:normal;
  6780. font-size:16px;
  6781. }
  6782. #u76161 {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:30px;
  6786. top:229px;
  6787. width:97px;
  6788. height:22px;
  6789. display:flex;
  6790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6791. font-weight:400;
  6792. font-style:normal;
  6793. font-size:16px;
  6794. }
  6795. #u76161 .text {
  6796. position:absolute;
  6797. align-self:flex-start;
  6798. padding:0px 0px 0px 0px;
  6799. box-sizing:border-box;
  6800. width:100%;
  6801. }
  6802. #u76161_text {
  6803. border-width:0px;
  6804. word-wrap:break-word;
  6805. text-transform:none;
  6806. }
  6807. #u76162_div {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:0px;
  6811. top:0px;
  6812. width:65px;
  6813. height:22px;
  6814. background:inherit;
  6815. background-color:rgba(255, 255, 255, 0);
  6816. border:none;
  6817. border-radius:0px;
  6818. -moz-box-shadow:none;
  6819. -webkit-box-shadow:none;
  6820. box-shadow:none;
  6821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6822. font-weight:400;
  6823. font-style:normal;
  6824. font-size:16px;
  6825. }
  6826. #u76162 {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:30px;
  6830. top:271px;
  6831. width:65px;
  6832. height:22px;
  6833. display:flex;
  6834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6835. font-weight:400;
  6836. font-style:normal;
  6837. font-size:16px;
  6838. }
  6839. #u76162 .text {
  6840. position:absolute;
  6841. align-self:flex-start;
  6842. padding:0px 0px 0px 0px;
  6843. box-sizing:border-box;
  6844. width:100%;
  6845. }
  6846. #u76162_text {
  6847. border-width:0px;
  6848. white-space:nowrap;
  6849. text-transform:none;
  6850. }
  6851. #u76163_img {
  6852. border-width:0px;
  6853. position:absolute;
  6854. left:0px;
  6855. top:0px;
  6856. width:201px;
  6857. height:2px;
  6858. }
  6859. #u76163 {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:313px;
  6864. width:200px;
  6865. height:1px;
  6866. display:flex;
  6867. }
  6868. #u76163 .text {
  6869. position:absolute;
  6870. align-self:center;
  6871. padding:2px 2px 2px 2px;
  6872. box-sizing:border-box;
  6873. width:100%;
  6874. }
  6875. #u76163_text {
  6876. border-width:0px;
  6877. word-wrap:break-word;
  6878. text-transform:none;
  6879. visibility:hidden;
  6880. }
  6881. #u76164_div {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:0px;
  6885. top:0px;
  6886. width:65px;
  6887. height:22px;
  6888. background:inherit;
  6889. background-color:rgba(255, 255, 255, 0);
  6890. border:none;
  6891. border-radius:0px;
  6892. -moz-box-shadow:none;
  6893. -webkit-box-shadow:none;
  6894. box-shadow:none;
  6895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6896. font-weight:400;
  6897. font-style:normal;
  6898. font-size:16px;
  6899. }
  6900. #u76164 {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:30px;
  6904. top:370px;
  6905. width:65px;
  6906. height:22px;
  6907. display:flex;
  6908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6909. font-weight:400;
  6910. font-style:normal;
  6911. font-size:16px;
  6912. }
  6913. #u76164 .text {
  6914. position:absolute;
  6915. align-self:flex-start;
  6916. padding:0px 0px 0px 0px;
  6917. box-sizing:border-box;
  6918. width:100%;
  6919. }
  6920. #u76164_text {
  6921. border-width:0px;
  6922. white-space:nowrap;
  6923. text-transform:none;
  6924. }
  6925. #u76165_div {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:0px;
  6929. top:0px;
  6930. width:49px;
  6931. height:17px;
  6932. background:inherit;
  6933. background-color:rgba(255, 255, 255, 0);
  6934. border:none;
  6935. border-radius:0px;
  6936. -moz-box-shadow:none;
  6937. -webkit-box-shadow:none;
  6938. box-shadow:none;
  6939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6940. font-weight:400;
  6941. font-style:normal;
  6942. font-size:12px;
  6943. color:#AAAAAA;
  6944. }
  6945. #u76165 {
  6946. border-width:0px;
  6947. position:absolute;
  6948. left:30px;
  6949. top:334px;
  6950. width:49px;
  6951. height:17px;
  6952. display:flex;
  6953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6954. font-weight:400;
  6955. font-style:normal;
  6956. font-size:12px;
  6957. color:#AAAAAA;
  6958. }
  6959. #u76165 .text {
  6960. position:absolute;
  6961. align-self:flex-start;
  6962. padding:0px 0px 0px 0px;
  6963. box-sizing:border-box;
  6964. width:100%;
  6965. }
  6966. #u76165_text {
  6967. border-width:0px;
  6968. white-space:nowrap;
  6969. text-transform:none;
  6970. }
  6971. #u76166_div {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:0px;
  6975. top:0px;
  6976. width:65px;
  6977. height:22px;
  6978. background:inherit;
  6979. background-color:rgba(255, 255, 255, 0);
  6980. border:none;
  6981. border-radius:0px;
  6982. -moz-box-shadow:none;
  6983. -webkit-box-shadow:none;
  6984. box-shadow:none;
  6985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6986. font-weight:400;
  6987. font-style:normal;
  6988. font-size:16px;
  6989. }
  6990. #u76166 {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:30px;
  6994. top:412px;
  6995. width:65px;
  6996. height:22px;
  6997. display:flex;
  6998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6999. font-weight:400;
  7000. font-style:normal;
  7001. font-size:16px;
  7002. }
  7003. #u76166 .text {
  7004. position:absolute;
  7005. align-self:flex-start;
  7006. padding:0px 0px 0px 0px;
  7007. box-sizing:border-box;
  7008. width:100%;
  7009. }
  7010. #u76166_text {
  7011. border-width:0px;
  7012. white-space:nowrap;
  7013. text-transform:none;
  7014. }
  7015. #u76167_div {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:0px;
  7019. top:0px;
  7020. width:65px;
  7021. height:22px;
  7022. background:inherit;
  7023. background-color:rgba(255, 255, 255, 0);
  7024. border:none;
  7025. border-radius:0px;
  7026. -moz-box-shadow:none;
  7027. -webkit-box-shadow:none;
  7028. box-shadow:none;
  7029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7030. font-weight:400;
  7031. font-style:normal;
  7032. font-size:16px;
  7033. }
  7034. #u76167 {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:30px;
  7038. top:454px;
  7039. width:65px;
  7040. height:22px;
  7041. display:flex;
  7042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7043. font-weight:400;
  7044. font-style:normal;
  7045. font-size:16px;
  7046. }
  7047. #u76167 .text {
  7048. position:absolute;
  7049. align-self:flex-start;
  7050. padding:0px 0px 0px 0px;
  7051. box-sizing:border-box;
  7052. width:100%;
  7053. }
  7054. #u76167_text {
  7055. border-width:0px;
  7056. white-space:nowrap;
  7057. text-transform:none;
  7058. }
  7059. #u76168_div {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:0px;
  7063. top:0px;
  7064. width:65px;
  7065. height:22px;
  7066. background:inherit;
  7067. background-color:rgba(255, 255, 255, 0);
  7068. border:none;
  7069. border-radius:0px;
  7070. -moz-box-shadow:none;
  7071. -webkit-box-shadow:none;
  7072. box-shadow:none;
  7073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7074. font-weight:400;
  7075. font-style:normal;
  7076. font-size:16px;
  7077. }
  7078. #u76168 {
  7079. border-width:0px;
  7080. position:absolute;
  7081. left:30px;
  7082. top:496px;
  7083. width:65px;
  7084. height:22px;
  7085. display:flex;
  7086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7087. font-weight:400;
  7088. font-style:normal;
  7089. font-size:16px;
  7090. }
  7091. #u76168 .text {
  7092. position:absolute;
  7093. align-self:flex-start;
  7094. padding:0px 0px 0px 0px;
  7095. box-sizing:border-box;
  7096. width:100%;
  7097. }
  7098. #u76168_text {
  7099. border-width:0px;
  7100. white-space:nowrap;
  7101. text-transform:none;
  7102. }
  7103. #u76169_div {
  7104. border-width:0px;
  7105. position:absolute;
  7106. left:0px;
  7107. top:0px;
  7108. width:65px;
  7109. height:22px;
  7110. background:inherit;
  7111. background-color:rgba(255, 255, 255, 0);
  7112. border:none;
  7113. border-radius:0px;
  7114. -moz-box-shadow:none;
  7115. -webkit-box-shadow:none;
  7116. box-shadow:none;
  7117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7118. font-weight:400;
  7119. font-style:normal;
  7120. font-size:16px;
  7121. }
  7122. #u76169 {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:30px;
  7126. top:538px;
  7127. width:65px;
  7128. height:22px;
  7129. display:flex;
  7130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7131. font-weight:400;
  7132. font-style:normal;
  7133. font-size:16px;
  7134. }
  7135. #u76169 .text {
  7136. position:absolute;
  7137. align-self:flex-start;
  7138. padding:0px 0px 0px 0px;
  7139. box-sizing:border-box;
  7140. width:100%;
  7141. }
  7142. #u76169_text {
  7143. border-width:0px;
  7144. white-space:nowrap;
  7145. text-transform:none;
  7146. }
  7147. #u76170_div {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:0px;
  7151. top:0px;
  7152. width:65px;
  7153. height:22px;
  7154. background:inherit;
  7155. background-color:rgba(255, 255, 255, 0);
  7156. border:none;
  7157. border-radius:0px;
  7158. -moz-box-shadow:none;
  7159. -webkit-box-shadow:none;
  7160. box-shadow:none;
  7161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:16px;
  7165. }
  7166. #u76170 {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:30px;
  7170. top:580px;
  7171. width:65px;
  7172. height:22px;
  7173. display:flex;
  7174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7175. font-weight:400;
  7176. font-style:normal;
  7177. font-size:16px;
  7178. }
  7179. #u76170 .text {
  7180. position:absolute;
  7181. align-self:flex-start;
  7182. padding:0px 0px 0px 0px;
  7183. box-sizing:border-box;
  7184. width:100%;
  7185. }
  7186. #u76170_text {
  7187. border-width:0px;
  7188. white-space:nowrap;
  7189. text-transform:none;
  7190. }
  7191. #u76171_img {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:201px;
  7197. height:2px;
  7198. }
  7199. #u76171 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:0px;
  7203. top:1289px;
  7204. width:200px;
  7205. height:1px;
  7206. display:flex;
  7207. }
  7208. #u76171 .text {
  7209. position:absolute;
  7210. align-self:center;
  7211. padding:2px 2px 2px 2px;
  7212. box-sizing:border-box;
  7213. width:100%;
  7214. }
  7215. #u76171_text {
  7216. border-width:0px;
  7217. word-wrap:break-word;
  7218. text-transform:none;
  7219. visibility:hidden;
  7220. }
  7221. #u76172_div {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:0px;
  7225. top:0px;
  7226. width:65px;
  7227. height:22px;
  7228. background:inherit;
  7229. background-color:rgba(255, 255, 255, 0);
  7230. border:none;
  7231. border-radius:0px;
  7232. -moz-box-shadow:none;
  7233. -webkit-box-shadow:none;
  7234. box-shadow:none;
  7235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7236. font-weight:400;
  7237. font-style:normal;
  7238. font-size:16px;
  7239. }
  7240. #u76172 {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:30px;
  7244. top:1346px;
  7245. width:65px;
  7246. height:22px;
  7247. display:flex;
  7248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7249. font-weight:400;
  7250. font-style:normal;
  7251. font-size:16px;
  7252. }
  7253. #u76172 .text {
  7254. position:absolute;
  7255. align-self:flex-start;
  7256. padding:0px 0px 0px 0px;
  7257. box-sizing:border-box;
  7258. width:100%;
  7259. }
  7260. #u76172_text {
  7261. border-width:0px;
  7262. white-space:nowrap;
  7263. text-transform:none;
  7264. }
  7265. #u76173_div {
  7266. border-width:0px;
  7267. position:absolute;
  7268. left:0px;
  7269. top:0px;
  7270. width:49px;
  7271. height:17px;
  7272. background:inherit;
  7273. background-color:rgba(255, 255, 255, 0);
  7274. border:none;
  7275. border-radius:0px;
  7276. -moz-box-shadow:none;
  7277. -webkit-box-shadow:none;
  7278. box-shadow:none;
  7279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7280. font-weight:400;
  7281. font-style:normal;
  7282. font-size:12px;
  7283. color:#AAAAAA;
  7284. }
  7285. #u76173 {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:30px;
  7289. top:1310px;
  7290. width:49px;
  7291. height:17px;
  7292. display:flex;
  7293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7294. font-weight:400;
  7295. font-style:normal;
  7296. font-size:12px;
  7297. color:#AAAAAA;
  7298. }
  7299. #u76173 .text {
  7300. position:absolute;
  7301. align-self:flex-start;
  7302. padding:0px 0px 0px 0px;
  7303. box-sizing:border-box;
  7304. width:100%;
  7305. }
  7306. #u76173_text {
  7307. border-width:0px;
  7308. white-space:nowrap;
  7309. text-transform:none;
  7310. }
  7311. #u76174_div {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:0px;
  7315. top:0px;
  7316. width:65px;
  7317. height:22px;
  7318. background:inherit;
  7319. background-color:rgba(255, 255, 255, 0);
  7320. border:none;
  7321. border-radius:0px;
  7322. -moz-box-shadow:none;
  7323. -webkit-box-shadow:none;
  7324. box-shadow:none;
  7325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7326. font-weight:400;
  7327. font-style:normal;
  7328. font-size:16px;
  7329. }
  7330. #u76174 {
  7331. border-width:0px;
  7332. position:absolute;
  7333. left:30px;
  7334. top:1388px;
  7335. width:65px;
  7336. height:22px;
  7337. display:flex;
  7338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7339. font-weight:400;
  7340. font-style:normal;
  7341. font-size:16px;
  7342. }
  7343. #u76174 .text {
  7344. position:absolute;
  7345. align-self:flex-start;
  7346. padding:0px 0px 0px 0px;
  7347. box-sizing:border-box;
  7348. width:100%;
  7349. }
  7350. #u76174_text {
  7351. border-width:0px;
  7352. white-space:nowrap;
  7353. text-transform:none;
  7354. }
  7355. #u76175_div {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:0px;
  7359. top:0px;
  7360. width:65px;
  7361. height:22px;
  7362. background:inherit;
  7363. background-color:rgba(255, 255, 255, 0);
  7364. border:none;
  7365. border-radius:0px;
  7366. -moz-box-shadow:none;
  7367. -webkit-box-shadow:none;
  7368. box-shadow:none;
  7369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7370. font-weight:400;
  7371. font-style:normal;
  7372. font-size:16px;
  7373. }
  7374. #u76175 {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:30px;
  7378. top:1472px;
  7379. width:65px;
  7380. height:22px;
  7381. display:flex;
  7382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7383. font-weight:400;
  7384. font-style:normal;
  7385. font-size:16px;
  7386. }
  7387. #u76175 .text {
  7388. position:absolute;
  7389. align-self:flex-start;
  7390. padding:0px 0px 0px 0px;
  7391. box-sizing:border-box;
  7392. width:100%;
  7393. }
  7394. #u76175_text {
  7395. border-width:0px;
  7396. white-space:nowrap;
  7397. text-transform:none;
  7398. }
  7399. #u76176_img {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:0px;
  7403. top:0px;
  7404. width:201px;
  7405. height:2px;
  7406. }
  7407. #u76176 {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:0px;
  7411. top:1514px;
  7412. width:200px;
  7413. height:1px;
  7414. display:flex;
  7415. }
  7416. #u76176 .text {
  7417. position:absolute;
  7418. align-self:center;
  7419. padding:2px 2px 2px 2px;
  7420. box-sizing:border-box;
  7421. width:100%;
  7422. }
  7423. #u76176_text {
  7424. border-width:0px;
  7425. word-wrap:break-word;
  7426. text-transform:none;
  7427. visibility:hidden;
  7428. }
  7429. #u76177_div {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:0px;
  7433. top:0px;
  7434. width:49px;
  7435. height:22px;
  7436. background:inherit;
  7437. background-color:rgba(255, 255, 255, 0);
  7438. border:none;
  7439. border-radius:0px;
  7440. -moz-box-shadow:none;
  7441. -webkit-box-shadow:none;
  7442. box-shadow:none;
  7443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7444. font-weight:400;
  7445. font-style:normal;
  7446. font-size:16px;
  7447. }
  7448. #u76177 {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:30px;
  7452. top:1571px;
  7453. width:49px;
  7454. height:22px;
  7455. display:flex;
  7456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7457. font-weight:400;
  7458. font-style:normal;
  7459. font-size:16px;
  7460. }
  7461. #u76177 .text {
  7462. position:absolute;
  7463. align-self:flex-start;
  7464. padding:0px 0px 0px 0px;
  7465. box-sizing:border-box;
  7466. width:100%;
  7467. }
  7468. #u76177_text {
  7469. border-width:0px;
  7470. white-space:nowrap;
  7471. text-transform:none;
  7472. }
  7473. #u76178_div {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:0px;
  7477. top:0px;
  7478. width:49px;
  7479. height:17px;
  7480. background:inherit;
  7481. background-color:rgba(255, 255, 255, 0);
  7482. border:none;
  7483. border-radius:0px;
  7484. -moz-box-shadow:none;
  7485. -webkit-box-shadow:none;
  7486. box-shadow:none;
  7487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7488. font-weight:400;
  7489. font-style:normal;
  7490. font-size:12px;
  7491. color:#AAAAAA;
  7492. }
  7493. #u76178 {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:30px;
  7497. top:1535px;
  7498. width:49px;
  7499. height:17px;
  7500. display:flex;
  7501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7502. font-weight:400;
  7503. font-style:normal;
  7504. font-size:12px;
  7505. color:#AAAAAA;
  7506. }
  7507. #u76178 .text {
  7508. position:absolute;
  7509. align-self:flex-start;
  7510. padding:0px 0px 0px 0px;
  7511. box-sizing:border-box;
  7512. width:100%;
  7513. }
  7514. #u76178_text {
  7515. border-width:0px;
  7516. white-space:nowrap;
  7517. text-transform:none;
  7518. }
  7519. #u76179_div {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:0px;
  7523. top:0px;
  7524. width:49px;
  7525. height:22px;
  7526. background:inherit;
  7527. background-color:rgba(255, 255, 255, 0);
  7528. border:none;
  7529. border-radius:0px;
  7530. -moz-box-shadow:none;
  7531. -webkit-box-shadow:none;
  7532. box-shadow:none;
  7533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7534. font-weight:400;
  7535. font-style:normal;
  7536. font-size:16px;
  7537. }
  7538. #u76179 {
  7539. border-width:0px;
  7540. position:absolute;
  7541. left:30px;
  7542. top:1613px;
  7543. width:49px;
  7544. height:22px;
  7545. display:flex;
  7546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7547. font-weight:400;
  7548. font-style:normal;
  7549. font-size:16px;
  7550. }
  7551. #u76179 .text {
  7552. position:absolute;
  7553. align-self:flex-start;
  7554. padding:0px 0px 0px 0px;
  7555. box-sizing:border-box;
  7556. width:100%;
  7557. }
  7558. #u76179_text {
  7559. border-width:0px;
  7560. white-space:nowrap;
  7561. text-transform:none;
  7562. }
  7563. #u76180_div {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:0px;
  7567. top:0px;
  7568. width:65px;
  7569. height:22px;
  7570. background:inherit;
  7571. background-color:rgba(255, 255, 255, 0);
  7572. border:none;
  7573. border-radius:0px;
  7574. -moz-box-shadow:none;
  7575. -webkit-box-shadow:none;
  7576. box-shadow:none;
  7577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7578. font-weight:400;
  7579. font-style:normal;
  7580. font-size:16px;
  7581. }
  7582. #u76180 {
  7583. border-width:0px;
  7584. position:absolute;
  7585. left:30px;
  7586. top:1655px;
  7587. width:65px;
  7588. height:22px;
  7589. display:flex;
  7590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7591. font-weight:400;
  7592. font-style:normal;
  7593. font-size:16px;
  7594. }
  7595. #u76180 .text {
  7596. position:absolute;
  7597. align-self:flex-start;
  7598. padding:0px 0px 0px 0px;
  7599. box-sizing:border-box;
  7600. width:100%;
  7601. }
  7602. #u76180_text {
  7603. border-width:0px;
  7604. white-space:nowrap;
  7605. text-transform:none;
  7606. }
  7607. #u76181_img {
  7608. border-width:0px;
  7609. position:absolute;
  7610. left:0px;
  7611. top:0px;
  7612. width:201px;
  7613. height:2px;
  7614. }
  7615. #u76181 {
  7616. border-width:0px;
  7617. position:absolute;
  7618. left:0px;
  7619. top:1697px;
  7620. width:200px;
  7621. height:1px;
  7622. display:flex;
  7623. }
  7624. #u76181 .text {
  7625. position:absolute;
  7626. align-self:center;
  7627. padding:2px 2px 2px 2px;
  7628. box-sizing:border-box;
  7629. width:100%;
  7630. }
  7631. #u76181_text {
  7632. border-width:0px;
  7633. word-wrap:break-word;
  7634. text-transform:none;
  7635. visibility:hidden;
  7636. }
  7637. #u76182_div {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:0px;
  7641. top:0px;
  7642. width:81px;
  7643. height:22px;
  7644. background:inherit;
  7645. background-color:rgba(255, 255, 255, 0);
  7646. border:none;
  7647. border-radius:0px;
  7648. -moz-box-shadow:none;
  7649. -webkit-box-shadow:none;
  7650. box-shadow:none;
  7651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:16px;
  7655. }
  7656. #u76182 {
  7657. border-width:0px;
  7658. position:absolute;
  7659. left:30px;
  7660. top:1754px;
  7661. width:81px;
  7662. height:22px;
  7663. display:flex;
  7664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7665. font-weight:400;
  7666. font-style:normal;
  7667. font-size:16px;
  7668. }
  7669. #u76182 .text {
  7670. position:absolute;
  7671. align-self:flex-start;
  7672. padding:0px 0px 0px 0px;
  7673. box-sizing:border-box;
  7674. width:100%;
  7675. }
  7676. #u76182_text {
  7677. border-width:0px;
  7678. white-space:nowrap;
  7679. text-transform:none;
  7680. }
  7681. #u76183_div {
  7682. border-width:0px;
  7683. position:absolute;
  7684. left:0px;
  7685. top:0px;
  7686. width:49px;
  7687. height:17px;
  7688. background:inherit;
  7689. background-color:rgba(255, 255, 255, 0);
  7690. border:none;
  7691. border-radius:0px;
  7692. -moz-box-shadow:none;
  7693. -webkit-box-shadow:none;
  7694. box-shadow:none;
  7695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7696. font-weight:400;
  7697. font-style:normal;
  7698. font-size:12px;
  7699. color:#AAAAAA;
  7700. }
  7701. #u76183 {
  7702. border-width:0px;
  7703. position:absolute;
  7704. left:30px;
  7705. top:1718px;
  7706. width:49px;
  7707. height:17px;
  7708. display:flex;
  7709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7710. font-weight:400;
  7711. font-style:normal;
  7712. font-size:12px;
  7713. color:#AAAAAA;
  7714. }
  7715. #u76183 .text {
  7716. position:absolute;
  7717. align-self:flex-start;
  7718. padding:0px 0px 0px 0px;
  7719. box-sizing:border-box;
  7720. width:100%;
  7721. }
  7722. #u76183_text {
  7723. border-width:0px;
  7724. white-space:nowrap;
  7725. text-transform:none;
  7726. }
  7727. #u76184_div {
  7728. border-width:0px;
  7729. position:absolute;
  7730. left:0px;
  7731. top:0px;
  7732. width:81px;
  7733. height:22px;
  7734. background:inherit;
  7735. background-color:rgba(255, 255, 255, 0);
  7736. border:none;
  7737. border-radius:0px;
  7738. -moz-box-shadow:none;
  7739. -webkit-box-shadow:none;
  7740. box-shadow:none;
  7741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7742. font-weight:400;
  7743. font-style:normal;
  7744. font-size:16px;
  7745. }
  7746. #u76184 {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:30px;
  7750. top:1796px;
  7751. width:81px;
  7752. height:22px;
  7753. display:flex;
  7754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7755. font-weight:400;
  7756. font-style:normal;
  7757. font-size:16px;
  7758. }
  7759. #u76184 .text {
  7760. position:absolute;
  7761. align-self:flex-start;
  7762. padding:0px 0px 0px 0px;
  7763. box-sizing:border-box;
  7764. width:100%;
  7765. }
  7766. #u76184_text {
  7767. border-width:0px;
  7768. white-space:nowrap;
  7769. text-transform:none;
  7770. }
  7771. #u76185_div {
  7772. border-width:0px;
  7773. position:absolute;
  7774. left:0px;
  7775. top:0px;
  7776. width:81px;
  7777. height:22px;
  7778. background:inherit;
  7779. background-color:rgba(255, 255, 255, 0);
  7780. border:none;
  7781. border-radius:0px;
  7782. -moz-box-shadow:none;
  7783. -webkit-box-shadow:none;
  7784. box-shadow:none;
  7785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7786. font-weight:400;
  7787. font-style:normal;
  7788. font-size:16px;
  7789. }
  7790. #u76185 {
  7791. border-width:0px;
  7792. position:absolute;
  7793. left:30px;
  7794. top:1838px;
  7795. width:81px;
  7796. height:22px;
  7797. display:flex;
  7798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7799. font-weight:400;
  7800. font-style:normal;
  7801. font-size:16px;
  7802. }
  7803. #u76185 .text {
  7804. position:absolute;
  7805. align-self:flex-start;
  7806. padding:0px 0px 0px 0px;
  7807. box-sizing:border-box;
  7808. width:100%;
  7809. }
  7810. #u76185_text {
  7811. border-width:0px;
  7812. white-space:nowrap;
  7813. text-transform:none;
  7814. }
  7815. #u76186_div {
  7816. border-width:0px;
  7817. position:absolute;
  7818. left:0px;
  7819. top:0px;
  7820. width:65px;
  7821. height:22px;
  7822. background:inherit;
  7823. background-color:rgba(255, 255, 255, 0);
  7824. border:none;
  7825. border-radius:0px;
  7826. -moz-box-shadow:none;
  7827. -webkit-box-shadow:none;
  7828. box-shadow:none;
  7829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7830. font-weight:400;
  7831. font-style:normal;
  7832. font-size:16px;
  7833. }
  7834. #u76186 {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:30px;
  7838. top:1430px;
  7839. width:65px;
  7840. height:22px;
  7841. display:flex;
  7842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7843. font-weight:400;
  7844. font-style:normal;
  7845. font-size:16px;
  7846. }
  7847. #u76186 .text {
  7848. position:absolute;
  7849. align-self:flex-start;
  7850. padding:0px 0px 0px 0px;
  7851. box-sizing:border-box;
  7852. width:100%;
  7853. }
  7854. #u76186_text {
  7855. border-width:0px;
  7856. white-space:nowrap;
  7857. text-transform:none;
  7858. }
  7859. #u76187_img {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:0px;
  7863. top:0px;
  7864. width:201px;
  7865. height:2px;
  7866. }
  7867. #u76187 {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:0px;
  7871. top:669px;
  7872. width:200px;
  7873. height:1px;
  7874. display:flex;
  7875. }
  7876. #u76187 .text {
  7877. position:absolute;
  7878. align-self:center;
  7879. padding:2px 2px 2px 2px;
  7880. box-sizing:border-box;
  7881. width:100%;
  7882. }
  7883. #u76187_text {
  7884. border-width:0px;
  7885. word-wrap:break-word;
  7886. text-transform:none;
  7887. visibility:hidden;
  7888. }
  7889. #u76188_div {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:0px;
  7893. top:0px;
  7894. width:65px;
  7895. height:22px;
  7896. background:inherit;
  7897. background-color:rgba(255, 255, 255, 0);
  7898. border:none;
  7899. border-radius:0px;
  7900. -moz-box-shadow:none;
  7901. -webkit-box-shadow:none;
  7902. box-shadow:none;
  7903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7904. font-weight:400;
  7905. font-style:normal;
  7906. font-size:16px;
  7907. }
  7908. #u76188 {
  7909. border-width:0px;
  7910. position:absolute;
  7911. left:30px;
  7912. top:726px;
  7913. width:65px;
  7914. height:22px;
  7915. display:flex;
  7916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7917. font-weight:400;
  7918. font-style:normal;
  7919. font-size:16px;
  7920. }
  7921. #u76188 .text {
  7922. position:absolute;
  7923. align-self:flex-start;
  7924. padding:0px 0px 0px 0px;
  7925. box-sizing:border-box;
  7926. width:100%;
  7927. }
  7928. #u76188_text {
  7929. border-width:0px;
  7930. white-space:nowrap;
  7931. text-transform:none;
  7932. }
  7933. #u76189_div {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:0px;
  7937. top:0px;
  7938. width:49px;
  7939. height:17px;
  7940. background:inherit;
  7941. background-color:rgba(255, 255, 255, 0);
  7942. border:none;
  7943. border-radius:0px;
  7944. -moz-box-shadow:none;
  7945. -webkit-box-shadow:none;
  7946. box-shadow:none;
  7947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7948. font-weight:400;
  7949. font-style:normal;
  7950. font-size:12px;
  7951. color:#AAAAAA;
  7952. }
  7953. #u76189 {
  7954. border-width:0px;
  7955. position:absolute;
  7956. left:30px;
  7957. top:690px;
  7958. width:49px;
  7959. height:17px;
  7960. display:flex;
  7961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7962. font-weight:400;
  7963. font-style:normal;
  7964. font-size:12px;
  7965. color:#AAAAAA;
  7966. }
  7967. #u76189 .text {
  7968. position:absolute;
  7969. align-self:flex-start;
  7970. padding:0px 0px 0px 0px;
  7971. box-sizing:border-box;
  7972. width:100%;
  7973. }
  7974. #u76189_text {
  7975. border-width:0px;
  7976. white-space:nowrap;
  7977. text-transform:none;
  7978. }
  7979. #u76190_div {
  7980. border-width:0px;
  7981. position:absolute;
  7982. left:0px;
  7983. top:0px;
  7984. width:65px;
  7985. height:22px;
  7986. background:inherit;
  7987. background-color:rgba(255, 255, 255, 0);
  7988. border:none;
  7989. border-radius:0px;
  7990. -moz-box-shadow:none;
  7991. -webkit-box-shadow:none;
  7992. box-shadow:none;
  7993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7994. font-weight:400;
  7995. font-style:normal;
  7996. font-size:16px;
  7997. }
  7998. #u76190 {
  7999. border-width:0px;
  8000. position:absolute;
  8001. left:30px;
  8002. top:768px;
  8003. width:65px;
  8004. height:22px;
  8005. display:flex;
  8006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8007. font-weight:400;
  8008. font-style:normal;
  8009. font-size:16px;
  8010. }
  8011. #u76190 .text {
  8012. position:absolute;
  8013. align-self:flex-start;
  8014. padding:0px 0px 0px 0px;
  8015. box-sizing:border-box;
  8016. width:100%;
  8017. }
  8018. #u76190_text {
  8019. border-width:0px;
  8020. white-space:nowrap;
  8021. text-transform:none;
  8022. }
  8023. #u76191_div {
  8024. border-width:0px;
  8025. position:absolute;
  8026. left:0px;
  8027. top:0px;
  8028. width:65px;
  8029. height:22px;
  8030. background:inherit;
  8031. background-color:rgba(255, 255, 255, 0);
  8032. border:none;
  8033. border-radius:0px;
  8034. -moz-box-shadow:none;
  8035. -webkit-box-shadow:none;
  8036. box-shadow:none;
  8037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8038. font-weight:400;
  8039. font-style:normal;
  8040. font-size:16px;
  8041. }
  8042. #u76191 {
  8043. border-width:0px;
  8044. position:absolute;
  8045. left:30px;
  8046. top:852px;
  8047. width:65px;
  8048. height:22px;
  8049. display:flex;
  8050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8051. font-weight:400;
  8052. font-style:normal;
  8053. font-size:16px;
  8054. }
  8055. #u76191 .text {
  8056. position:absolute;
  8057. align-self:flex-start;
  8058. padding:0px 0px 0px 0px;
  8059. box-sizing:border-box;
  8060. width:100%;
  8061. }
  8062. #u76191_text {
  8063. border-width:0px;
  8064. white-space:nowrap;
  8065. text-transform:none;
  8066. }
  8067. #u76192_div {
  8068. border-width:0px;
  8069. position:absolute;
  8070. left:0px;
  8071. top:0px;
  8072. width:65px;
  8073. height:22px;
  8074. background:inherit;
  8075. background-color:rgba(255, 255, 255, 0);
  8076. border:none;
  8077. border-radius:0px;
  8078. -moz-box-shadow:none;
  8079. -webkit-box-shadow:none;
  8080. box-shadow:none;
  8081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8082. font-weight:400;
  8083. font-style:normal;
  8084. font-size:16px;
  8085. }
  8086. #u76192 {
  8087. border-width:0px;
  8088. position:absolute;
  8089. left:30px;
  8090. top:810px;
  8091. width:65px;
  8092. height:22px;
  8093. display:flex;
  8094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8095. font-weight:400;
  8096. font-style:normal;
  8097. font-size:16px;
  8098. }
  8099. #u76192 .text {
  8100. position:absolute;
  8101. align-self:flex-start;
  8102. padding:0px 0px 0px 0px;
  8103. box-sizing:border-box;
  8104. width:100%;
  8105. }
  8106. #u76192_text {
  8107. border-width:0px;
  8108. white-space:nowrap;
  8109. text-transform:none;
  8110. }
  8111. #u76193_div {
  8112. border-width:0px;
  8113. position:absolute;
  8114. left:0px;
  8115. top:0px;
  8116. width:65px;
  8117. height:22px;
  8118. background:inherit;
  8119. background-color:rgba(255, 255, 255, 0);
  8120. border:none;
  8121. border-radius:0px;
  8122. -moz-box-shadow:none;
  8123. -webkit-box-shadow:none;
  8124. box-shadow:none;
  8125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8126. font-weight:400;
  8127. font-style:normal;
  8128. font-size:16px;
  8129. }
  8130. #u76193 {
  8131. border-width:0px;
  8132. position:absolute;
  8133. left:30px;
  8134. top:894px;
  8135. width:65px;
  8136. height:22px;
  8137. display:flex;
  8138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8139. font-weight:400;
  8140. font-style:normal;
  8141. font-size:16px;
  8142. }
  8143. #u76193 .text {
  8144. position:absolute;
  8145. align-self:flex-start;
  8146. padding:0px 0px 0px 0px;
  8147. box-sizing:border-box;
  8148. width:100%;
  8149. }
  8150. #u76193_text {
  8151. border-width:0px;
  8152. white-space:nowrap;
  8153. text-transform:none;
  8154. }
  8155. #u76194_div {
  8156. border-width:0px;
  8157. position:absolute;
  8158. left:0px;
  8159. top:0px;
  8160. width:65px;
  8161. height:22px;
  8162. background:inherit;
  8163. background-color:rgba(255, 255, 255, 0);
  8164. border:none;
  8165. border-radius:0px;
  8166. -moz-box-shadow:none;
  8167. -webkit-box-shadow:none;
  8168. box-shadow:none;
  8169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8170. font-weight:400;
  8171. font-style:normal;
  8172. font-size:16px;
  8173. }
  8174. #u76194 {
  8175. border-width:0px;
  8176. position:absolute;
  8177. left:30px;
  8178. top:936px;
  8179. width:65px;
  8180. height:22px;
  8181. display:flex;
  8182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8183. font-weight:400;
  8184. font-style:normal;
  8185. font-size:16px;
  8186. }
  8187. #u76194 .text {
  8188. position:absolute;
  8189. align-self:flex-start;
  8190. padding:0px 0px 0px 0px;
  8191. box-sizing:border-box;
  8192. width:100%;
  8193. }
  8194. #u76194_text {
  8195. border-width:0px;
  8196. white-space:nowrap;
  8197. text-transform:none;
  8198. }
  8199. #u76195_img {
  8200. border-width:0px;
  8201. position:absolute;
  8202. left:0px;
  8203. top:0px;
  8204. width:201px;
  8205. height:2px;
  8206. }
  8207. #u76195 {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:0px;
  8211. top:1018px;
  8212. width:200px;
  8213. height:1px;
  8214. display:flex;
  8215. }
  8216. #u76195 .text {
  8217. position:absolute;
  8218. align-self:center;
  8219. padding:2px 2px 2px 2px;
  8220. box-sizing:border-box;
  8221. width:100%;
  8222. }
  8223. #u76195_text {
  8224. border-width:0px;
  8225. word-wrap:break-word;
  8226. text-transform:none;
  8227. visibility:hidden;
  8228. }
  8229. #u76196_div {
  8230. border-width:0px;
  8231. position:absolute;
  8232. left:0px;
  8233. top:0px;
  8234. width:65px;
  8235. height:22px;
  8236. background:inherit;
  8237. background-color:rgba(255, 255, 255, 0);
  8238. border:none;
  8239. border-radius:0px;
  8240. -moz-box-shadow:none;
  8241. -webkit-box-shadow:none;
  8242. box-shadow:none;
  8243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8244. font-weight:400;
  8245. font-style:normal;
  8246. font-size:16px;
  8247. }
  8248. #u76196 {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:30px;
  8252. top:1075px;
  8253. width:65px;
  8254. height:22px;
  8255. display:flex;
  8256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8257. font-weight:400;
  8258. font-style:normal;
  8259. font-size:16px;
  8260. }
  8261. #u76196 .text {
  8262. position:absolute;
  8263. align-self:flex-start;
  8264. padding:0px 0px 0px 0px;
  8265. box-sizing:border-box;
  8266. width:100%;
  8267. }
  8268. #u76196_text {
  8269. border-width:0px;
  8270. white-space:nowrap;
  8271. text-transform:none;
  8272. }
  8273. #u76197_div {
  8274. border-width:0px;
  8275. position:absolute;
  8276. left:0px;
  8277. top:0px;
  8278. width:49px;
  8279. height:17px;
  8280. background:inherit;
  8281. background-color:rgba(255, 255, 255, 0);
  8282. border:none;
  8283. border-radius:0px;
  8284. -moz-box-shadow:none;
  8285. -webkit-box-shadow:none;
  8286. box-shadow:none;
  8287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8288. font-weight:400;
  8289. font-style:normal;
  8290. font-size:12px;
  8291. color:#AAAAAA;
  8292. }
  8293. #u76197 {
  8294. border-width:0px;
  8295. position:absolute;
  8296. left:30px;
  8297. top:1039px;
  8298. width:49px;
  8299. height:17px;
  8300. display:flex;
  8301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8302. font-weight:400;
  8303. font-style:normal;
  8304. font-size:12px;
  8305. color:#AAAAAA;
  8306. }
  8307. #u76197 .text {
  8308. position:absolute;
  8309. align-self:flex-start;
  8310. padding:0px 0px 0px 0px;
  8311. box-sizing:border-box;
  8312. width:100%;
  8313. }
  8314. #u76197_text {
  8315. border-width:0px;
  8316. white-space:nowrap;
  8317. text-transform:none;
  8318. }
  8319. #u76198_div {
  8320. border-width:0px;
  8321. position:absolute;
  8322. left:0px;
  8323. top:0px;
  8324. width:65px;
  8325. height:22px;
  8326. background:inherit;
  8327. background-color:rgba(255, 255, 255, 0);
  8328. border:none;
  8329. border-radius:0px;
  8330. -moz-box-shadow:none;
  8331. -webkit-box-shadow:none;
  8332. box-shadow:none;
  8333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8334. font-weight:400;
  8335. font-style:normal;
  8336. font-size:16px;
  8337. }
  8338. #u76198 {
  8339. border-width:0px;
  8340. position:absolute;
  8341. left:30px;
  8342. top:1117px;
  8343. width:65px;
  8344. height:22px;
  8345. display:flex;
  8346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8347. font-weight:400;
  8348. font-style:normal;
  8349. font-size:16px;
  8350. }
  8351. #u76198 .text {
  8352. position:absolute;
  8353. align-self:flex-start;
  8354. padding:0px 0px 0px 0px;
  8355. box-sizing:border-box;
  8356. width:100%;
  8357. }
  8358. #u76198_text {
  8359. border-width:0px;
  8360. white-space:nowrap;
  8361. text-transform:none;
  8362. }
  8363. #u76199_div {
  8364. border-width:0px;
  8365. position:absolute;
  8366. left:0px;
  8367. top:0px;
  8368. width:65px;
  8369. height:22px;
  8370. background:inherit;
  8371. background-color:rgba(255, 255, 255, 0);
  8372. border:none;
  8373. border-radius:0px;
  8374. -moz-box-shadow:none;
  8375. -webkit-box-shadow:none;
  8376. box-shadow:none;
  8377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8378. font-weight:400;
  8379. font-style:normal;
  8380. font-size:16px;
  8381. }
  8382. #u76199 {
  8383. border-width:0px;
  8384. position:absolute;
  8385. left:30px;
  8386. top:1201px;
  8387. width:65px;
  8388. height:22px;
  8389. display:flex;
  8390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8391. font-weight:400;
  8392. font-style:normal;
  8393. font-size:16px;
  8394. }
  8395. #u76199 .text {
  8396. position:absolute;
  8397. align-self:flex-start;
  8398. padding:0px 0px 0px 0px;
  8399. box-sizing:border-box;
  8400. width:100%;
  8401. }
  8402. #u76199_text {
  8403. border-width:0px;
  8404. white-space:nowrap;
  8405. text-transform:none;
  8406. }
  8407. #u76200_div {
  8408. border-width:0px;
  8409. position:absolute;
  8410. left:0px;
  8411. top:0px;
  8412. width:65px;
  8413. height:22px;
  8414. background:inherit;
  8415. background-color:rgba(255, 255, 255, 0);
  8416. border:none;
  8417. border-radius:0px;
  8418. -moz-box-shadow:none;
  8419. -webkit-box-shadow:none;
  8420. box-shadow:none;
  8421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8422. font-weight:400;
  8423. font-style:normal;
  8424. font-size:16px;
  8425. }
  8426. #u76200 {
  8427. border-width:0px;
  8428. position:absolute;
  8429. left:30px;
  8430. top:1159px;
  8431. width:65px;
  8432. height:22px;
  8433. display:flex;
  8434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8435. font-weight:400;
  8436. font-style:normal;
  8437. font-size:16px;
  8438. }
  8439. #u76200 .text {
  8440. position:absolute;
  8441. align-self:flex-start;
  8442. padding:0px 0px 0px 0px;
  8443. box-sizing:border-box;
  8444. width:100%;
  8445. }
  8446. #u76200_text {
  8447. border-width:0px;
  8448. white-space:nowrap;
  8449. text-transform:none;
  8450. }
  8451. #u76201_div {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:0px;
  8455. top:0px;
  8456. width:65px;
  8457. height:22px;
  8458. background:inherit;
  8459. background-color:rgba(255, 255, 255, 0);
  8460. border:none;
  8461. border-radius:0px;
  8462. -moz-box-shadow:none;
  8463. -webkit-box-shadow:none;
  8464. box-shadow:none;
  8465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8466. font-weight:400;
  8467. font-style:normal;
  8468. font-size:16px;
  8469. }
  8470. #u76201 {
  8471. border-width:0px;
  8472. position:absolute;
  8473. left:30px;
  8474. top:1243px;
  8475. width:65px;
  8476. height:22px;
  8477. display:flex;
  8478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8479. font-weight:400;
  8480. font-style:normal;
  8481. font-size:16px;
  8482. }
  8483. #u76201 .text {
  8484. position:absolute;
  8485. align-self:flex-start;
  8486. padding:0px 0px 0px 0px;
  8487. box-sizing:border-box;
  8488. width:100%;
  8489. }
  8490. #u76201_text {
  8491. border-width:0px;
  8492. white-space:nowrap;
  8493. text-transform:none;
  8494. }
  8495. #u76202_div {
  8496. border-width:0px;
  8497. position:absolute;
  8498. left:0px;
  8499. top:0px;
  8500. width:65px;
  8501. height:22px;
  8502. background:inherit;
  8503. background-color:rgba(255, 255, 255, 0);
  8504. border:none;
  8505. border-radius:0px;
  8506. -moz-box-shadow:none;
  8507. -webkit-box-shadow:none;
  8508. box-shadow:none;
  8509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8510. font-weight:400;
  8511. font-style:normal;
  8512. font-size:16px;
  8513. }
  8514. #u76202 {
  8515. border-width:0px;
  8516. position:absolute;
  8517. left:30px;
  8518. top:978px;
  8519. width:65px;
  8520. height:22px;
  8521. display:flex;
  8522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8523. font-weight:400;
  8524. font-style:normal;
  8525. font-size:16px;
  8526. }
  8527. #u76202 .text {
  8528. position:absolute;
  8529. align-self:flex-start;
  8530. padding:0px 0px 0px 0px;
  8531. box-sizing:border-box;
  8532. width:100%;
  8533. }
  8534. #u76202_text {
  8535. border-width:0px;
  8536. white-space:nowrap;
  8537. text-transform:none;
  8538. }
  8539. #u76203_div {
  8540. border-width:0px;
  8541. position:absolute;
  8542. left:0px;
  8543. top:0px;
  8544. width:65px;
  8545. height:22px;
  8546. background:inherit;
  8547. background-color:rgba(255, 255, 255, 0);
  8548. border:none;
  8549. border-radius:0px;
  8550. -moz-box-shadow:none;
  8551. -webkit-box-shadow:none;
  8552. box-shadow:none;
  8553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8554. font-weight:400;
  8555. font-style:normal;
  8556. font-size:16px;
  8557. }
  8558. #u76203 {
  8559. border-width:0px;
  8560. position:absolute;
  8561. left:30px;
  8562. top:622px;
  8563. width:65px;
  8564. height:22px;
  8565. display:flex;
  8566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8567. font-weight:400;
  8568. font-style:normal;
  8569. font-size:16px;
  8570. }
  8571. #u76203 .text {
  8572. position:absolute;
  8573. align-self:flex-start;
  8574. padding:0px 0px 0px 0px;
  8575. box-sizing:border-box;
  8576. width:100%;
  8577. }
  8578. #u76203_text {
  8579. border-width:0px;
  8580. white-space:nowrap;
  8581. text-transform:none;
  8582. }
  8583. #u76204 label {
  8584. left:0px;
  8585. width:100%;
  8586. }
  8587. #u76204_img {
  8588. border-width:0px;
  8589. position:absolute;
  8590. left:0px;
  8591. top:4px;
  8592. width:12px;
  8593. height:12px;
  8594. }
  8595. #u76204 {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:576px;
  8599. top:173px;
  8600. width:100px;
  8601. height:20px;
  8602. display:flex;
  8603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8604. font-weight:400;
  8605. font-style:normal;
  8606. font-size:14px;
  8607. }
  8608. #u76204 .text {
  8609. position:absolute;
  8610. align-self:center;
  8611. padding:0px 2px 0px 2px;
  8612. box-sizing:border-box;
  8613. }
  8614. #u76204_img.selected {
  8615. }
  8616. #u76204.selected {
  8617. }
  8618. #u76204_img.disabled {
  8619. }
  8620. #u76204.disabled {
  8621. }
  8622. #u76204_img.selectedDisabled {
  8623. }
  8624. #u76204.selectedDisabled {
  8625. }
  8626. #u76204_text {
  8627. border-width:0px;
  8628. position:absolute;
  8629. left:14px;
  8630. top:0px;
  8631. width:84px;
  8632. word-wrap:break-word;
  8633. text-transform:none;
  8634. }
  8635. #u76204_input {
  8636. border-width:0px;
  8637. position:absolute;
  8638. left:0px;
  8639. top:0px;
  8640. width:0px;
  8641. height:0px;
  8642. opacity:0;
  8643. }
  8644. #u76205_div {
  8645. border-width:0px;
  8646. position:absolute;
  8647. left:0px;
  8648. top:0px;
  8649. width:1040px;
  8650. height:200px;
  8651. background:inherit;
  8652. background-color:rgba(255, 255, 255, 0);
  8653. border:none;
  8654. border-radius:0px;
  8655. -moz-box-shadow:none;
  8656. -webkit-box-shadow:none;
  8657. box-shadow:none;
  8658. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8659. font-style:normal;
  8660. font-size:18px;
  8661. line-height:40px;
  8662. }
  8663. #u76205 {
  8664. border-width:0px;
  8665. position:absolute;
  8666. left:371px;
  8667. top:546px;
  8668. width:1040px;
  8669. height:200px;
  8670. display:flex;
  8671. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8672. font-style:normal;
  8673. font-size:18px;
  8674. line-height:40px;
  8675. }
  8676. #u76205 .text {
  8677. position:absolute;
  8678. align-self:flex-start;
  8679. padding:0px 0px 0px 0px;
  8680. box-sizing:border-box;
  8681. width:100%;
  8682. }
  8683. #u76205_text {
  8684. border-width:0px;
  8685. white-space:nowrap;
  8686. text-transform:none;
  8687. }
  8688. #u76206_div {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:0px;
  8692. top:0px;
  8693. width:38px;
  8694. height:24px;
  8695. background:inherit;
  8696. background-color:rgba(255, 255, 255, 1);
  8697. box-sizing:border-box;
  8698. border-width:1px;
  8699. border-style:solid;
  8700. border-color:rgba(170, 170, 170, 1);
  8701. border-radius:4px;
  8702. -moz-box-shadow:none;
  8703. -webkit-box-shadow:none;
  8704. box-shadow:none;
  8705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8706. font-weight:400;
  8707. font-style:normal;
  8708. font-size:10px;
  8709. color:#555555;
  8710. }
  8711. #u76206 {
  8712. border-width:0px;
  8713. position:absolute;
  8714. left:1330px;
  8715. top:476px;
  8716. width:38px;
  8717. height:24px;
  8718. display:flex;
  8719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8720. font-weight:400;
  8721. font-style:normal;
  8722. font-size:10px;
  8723. color:#555555;
  8724. }
  8725. #u76206 .text {
  8726. position:absolute;
  8727. align-self:center;
  8728. padding:5px 0px 5px 0px;
  8729. box-sizing:border-box;
  8730. width:100%;
  8731. }
  8732. #u76206_text {
  8733. border-width:0px;
  8734. word-wrap:break-word;
  8735. text-transform:none;
  8736. }