styles.css 149 KB

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