styles.css 174 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1712px;
  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. #u50210_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. #u50210 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u50210 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u50210_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u50211_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. #u50211 {
  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. #u50211 .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. #u50211_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u50212_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. #u50212 {
  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. #u50212 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u50212_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u50213 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u50214_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u50214 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u50214 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u50214_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u50215_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. #u50215 {
  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. #u50215 .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. #u50215_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u50216_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. #u50216 {
  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. #u50216 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u50216_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u50217 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u50218_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. #u50218 {
  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. #u50218 .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. #u50218_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u50219_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u50219 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u50219 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u50219_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u50220 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u50221_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. #u50221 {
  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. #u50221 .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. #u50221_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u50222_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u50222 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u50222 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u50222_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u50223 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u50224_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. #u50224 {
  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. #u50224 .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. #u50224_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u50225_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u50225 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u50225 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u50225_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u50226 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u50227_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. #u50227 {
  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. #u50227 .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. #u50227_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u50228_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u50228 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u50228 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u50228_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u50229 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u50230_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. #u50230 {
  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. #u50230 .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. #u50230_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u50231_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u50231 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u50231 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u50231_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u50232 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u50233_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. #u50233 {
  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. #u50233 .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. #u50233_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u50234_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u50234 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u50234 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u50234_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u50235 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u50236_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. #u50236 {
  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. #u50236 .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. #u50236_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u50237_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u50237 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u50237 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u50237_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u50238 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u50239_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. #u50239 {
  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. #u50239 .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. #u50239_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u50240_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u50240 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u50240 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u50240_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u50241 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u50242_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. #u50242 {
  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. #u50242 .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. #u50242_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u50243_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u50243 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u50243 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u50243_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u50244_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. #u50244 {
  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. #u50244 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u50244_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u50245_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u50245 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u50245 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u50245_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u50246_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. #u50246 {
  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. #u50246 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u50246_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u50247_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u50247 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u50247 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u50247_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u50248 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u50249_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. #u50249 {
  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. #u50249 .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. #u50249_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u50250_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u50250 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u50250 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u50250_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u50251 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u50252_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. #u50252 {
  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. #u50252 .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. #u50252_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u50253_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u50253 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u50253 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u50253_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u50254 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u50255_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. #u50255_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. #u50255_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. #u50255 {
  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. #u50255 .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. #u50255_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. #u50255.disabled {
  1428. }
  1429. .u50255_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u50256_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u50256 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u50256 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u50256_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u50257_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. #u50257 {
  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. #u50257 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u50257_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u50258_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u50258 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u50258 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u50258_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u50259_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1257px;
  1544. height:1193px;
  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. #u50259 {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:331px;
  1563. top:50px;
  1564. width:1257px;
  1565. height:1193px;
  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. #u50259 .text {
  1575. position:absolute;
  1576. align-self:center;
  1577. padding:2px 2px 2px 50px;
  1578. box-sizing:border-box;
  1579. width:100%;
  1580. }
  1581. #u50259_text {
  1582. border-width:0px;
  1583. word-wrap:break-word;
  1584. text-transform:none;
  1585. visibility:hidden;
  1586. }
  1587. #u50260_div {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:0px;
  1591. top:0px;
  1592. width:109px;
  1593. height:50px;
  1594. background:inherit;
  1595. background-color:rgba(255, 255, 255, 0);
  1596. border:none;
  1597. border-left:0px;
  1598. border-top:0px;
  1599. border-right:0px;
  1600. border-radius:0px;
  1601. border-bottom-right-radius:0px;
  1602. border-bottom-left-radius:0px;
  1603. -moz-box-shadow:none;
  1604. -webkit-box-shadow:none;
  1605. box-shadow:none;
  1606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1607. font-weight:400;
  1608. font-style:normal;
  1609. font-size:18px;
  1610. }
  1611. #u50260 {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:350px;
  1615. top:50px;
  1616. width:109px;
  1617. height:50px;
  1618. display:flex;
  1619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1620. font-weight:400;
  1621. font-style:normal;
  1622. font-size:18px;
  1623. }
  1624. #u50260 .text {
  1625. position:absolute;
  1626. align-self:center;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u50260_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u50261 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:0px;
  1642. height:0px;
  1643. }
  1644. #u50262_div {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:0px;
  1648. top:0px;
  1649. width:59px;
  1650. height:30px;
  1651. background:inherit;
  1652. background-color:rgba(24, 144, 255, 1);
  1653. box-sizing:border-box;
  1654. border-width:1px;
  1655. border-style:solid;
  1656. border-color:rgba(0, 153, 255, 1);
  1657. border-radius:4px;
  1658. -moz-box-shadow:none;
  1659. -webkit-box-shadow:none;
  1660. box-shadow:none;
  1661. font-family:'Microsoft YaHei', sans-serif;
  1662. font-weight:400;
  1663. font-style:normal;
  1664. font-size:14px;
  1665. color:#FFFFFF;
  1666. }
  1667. #u50262 {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:951px;
  1671. top:102px;
  1672. width:59px;
  1673. height:30px;
  1674. display:flex;
  1675. font-family:'Microsoft YaHei', sans-serif;
  1676. font-weight:400;
  1677. font-style:normal;
  1678. font-size:14px;
  1679. color:#FFFFFF;
  1680. }
  1681. #u50262 .text {
  1682. position:absolute;
  1683. align-self:center;
  1684. padding:5px 15px 5px 15px;
  1685. box-sizing:border-box;
  1686. width:100%;
  1687. }
  1688. #u50262_text {
  1689. border-width:0px;
  1690. white-space:nowrap;
  1691. text-transform:none;
  1692. }
  1693. #u50263_div {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:0px;
  1697. top:0px;
  1698. width:55px;
  1699. height:30px;
  1700. background:inherit;
  1701. background-color:rgba(255, 255, 255, 1);
  1702. box-sizing:border-box;
  1703. border-width:1px;
  1704. border-style:solid;
  1705. border-color:rgba(170, 170, 170, 1);
  1706. border-radius:4px;
  1707. -moz-box-shadow:none;
  1708. -webkit-box-shadow:none;
  1709. box-shadow:none;
  1710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1711. font-weight:400;
  1712. font-style:normal;
  1713. font-size:12px;
  1714. color:#555555;
  1715. }
  1716. #u50263 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:1020px;
  1720. top:102px;
  1721. width:55px;
  1722. height:30px;
  1723. display:flex;
  1724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1725. font-weight:400;
  1726. font-style:normal;
  1727. font-size:12px;
  1728. color:#555555;
  1729. }
  1730. #u50263 .text {
  1731. position:absolute;
  1732. align-self:center;
  1733. padding:5px 15px 5px 15px;
  1734. box-sizing:border-box;
  1735. width:100%;
  1736. }
  1737. #u50263_text {
  1738. border-width:0px;
  1739. white-space:nowrap;
  1740. text-transform:none;
  1741. }
  1742. #u50264 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:0px;
  1747. width:0px;
  1748. height:0px;
  1749. }
  1750. #u50265_div {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:0px;
  1754. top:0px;
  1755. width:140px;
  1756. height:28px;
  1757. background:inherit;
  1758. background-color:rgba(255, 255, 255, 1);
  1759. box-sizing:border-box;
  1760. border-width:1px;
  1761. border-style:solid;
  1762. border-color:rgba(201, 201, 201, 1);
  1763. border-radius:4px;
  1764. -moz-box-shadow:none;
  1765. -webkit-box-shadow:none;
  1766. box-shadow:none;
  1767. font-family:'Microsoft YaHei', sans-serif;
  1768. font-weight:400;
  1769. font-style:normal;
  1770. font-size:14px;
  1771. color:#CCCCCC;
  1772. text-align:left;
  1773. }
  1774. #u50265 {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:351px;
  1778. top:101px;
  1779. width:140px;
  1780. height:28px;
  1781. display:flex;
  1782. font-family:'Microsoft YaHei', sans-serif;
  1783. font-weight:400;
  1784. font-style:normal;
  1785. font-size:14px;
  1786. color:#CCCCCC;
  1787. text-align:left;
  1788. }
  1789. #u50265 .text {
  1790. position:absolute;
  1791. align-self:center;
  1792. padding:2px 8px 2px 8px;
  1793. box-sizing:border-box;
  1794. width:100%;
  1795. }
  1796. #u50265_text {
  1797. border-width:0px;
  1798. word-wrap:break-word;
  1799. text-transform:none;
  1800. visibility:hidden;
  1801. }
  1802. #u50266_input {
  1803. position:absolute;
  1804. left:0px;
  1805. top:0px;
  1806. width:114px;
  1807. height:26px;
  1808. padding:2px 2px 2px 2px;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:14px;
  1813. letter-spacing:normal;
  1814. color:#000000;
  1815. vertical-align:none;
  1816. text-align:left;
  1817. text-transform:none;
  1818. background-color:transparent;
  1819. border-color:transparent;
  1820. }
  1821. #u50266_input.disabled {
  1822. position:absolute;
  1823. left:0px;
  1824. top:0px;
  1825. width:114px;
  1826. height:26px;
  1827. padding:2px 2px 2px 2px;
  1828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1829. font-weight:400;
  1830. font-style:normal;
  1831. font-size:14px;
  1832. letter-spacing:normal;
  1833. color:#000000;
  1834. vertical-align:none;
  1835. text-align:left;
  1836. text-transform:none;
  1837. background-color:transparent;
  1838. border-color:transparent;
  1839. }
  1840. #u50266_div {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:0px;
  1844. top:0px;
  1845. width:114px;
  1846. height:26px;
  1847. background:inherit;
  1848. background-color:rgba(255, 255, 255, 1);
  1849. border:none;
  1850. border-radius:0px;
  1851. -moz-box-shadow:none;
  1852. -webkit-box-shadow:none;
  1853. box-shadow:none;
  1854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:14px;
  1858. }
  1859. #u50266 {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:357px;
  1863. top:102px;
  1864. width:114px;
  1865. height:26px;
  1866. display:flex;
  1867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1868. font-weight:400;
  1869. font-style:normal;
  1870. font-size:14px;
  1871. }
  1872. #u50266 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:2px 2px 2px 2px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u50266_div.disabled {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:114px;
  1885. height:26px;
  1886. background:inherit;
  1887. background-color:rgba(240, 240, 240, 1);
  1888. border:none;
  1889. border-radius:0px;
  1890. -moz-box-shadow:none;
  1891. -webkit-box-shadow:none;
  1892. box-shadow:none;
  1893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1894. font-weight:400;
  1895. font-style:normal;
  1896. font-size:14px;
  1897. }
  1898. #u50266.disabled {
  1899. }
  1900. #u50267_img {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:13px;
  1906. height:15px;
  1907. }
  1908. #u50267 {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:471px;
  1912. top:108px;
  1913. width:13px;
  1914. height:15px;
  1915. display:flex;
  1916. }
  1917. #u50267 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:2px 2px 2px 2px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u50267_text {
  1925. border-width:0px;
  1926. word-wrap:break-word;
  1927. text-transform:none;
  1928. visibility:hidden;
  1929. }
  1930. #u50268 {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:0px;
  1936. height:0px;
  1937. }
  1938. #u50269_div {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:140px;
  1944. height:30px;
  1945. background:inherit;
  1946. background-color:rgba(255, 255, 255, 1);
  1947. box-sizing:border-box;
  1948. border-width:1px;
  1949. border-style:solid;
  1950. border-color:rgba(201, 201, 201, 1);
  1951. border-radius:4px;
  1952. -moz-box-shadow:none;
  1953. -webkit-box-shadow:none;
  1954. box-shadow:none;
  1955. font-family:'Microsoft YaHei', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:14px;
  1959. color:#CCCCCC;
  1960. text-align:left;
  1961. }
  1962. #u50269 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:651px;
  1966. top:103px;
  1967. width:140px;
  1968. height:30px;
  1969. display:flex;
  1970. font-family:'Microsoft YaHei', sans-serif;
  1971. font-weight:400;
  1972. font-style:normal;
  1973. font-size:14px;
  1974. color:#CCCCCC;
  1975. text-align:left;
  1976. }
  1977. #u50269 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:2px 8px 2px 8px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u50269_text {
  1985. border-width:0px;
  1986. word-wrap:break-word;
  1987. text-transform:none;
  1988. visibility:hidden;
  1989. }
  1990. #u50270_input {
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:127px;
  1995. height:25px;
  1996. padding:2px 2px 2px 2px;
  1997. font-family:'Microsoft YaHei', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:10px;
  2001. letter-spacing:normal;
  2002. color:#000000;
  2003. vertical-align:none;
  2004. text-align:left;
  2005. text-transform:none;
  2006. background-color:transparent;
  2007. border-color:transparent;
  2008. }
  2009. #u50270_input.disabled {
  2010. position:absolute;
  2011. left:0px;
  2012. top:0px;
  2013. width:127px;
  2014. height:25px;
  2015. padding:2px 2px 2px 2px;
  2016. font-family:'Microsoft YaHei', sans-serif;
  2017. font-weight:400;
  2018. font-style:normal;
  2019. font-size:10px;
  2020. letter-spacing:normal;
  2021. color:#000000;
  2022. vertical-align:none;
  2023. text-align:left;
  2024. text-transform:none;
  2025. background-color:transparent;
  2026. border-color:transparent;
  2027. }
  2028. #u50270_div {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:127px;
  2034. height:25px;
  2035. background:inherit;
  2036. background-color:rgba(255, 255, 255, 1);
  2037. border:none;
  2038. border-radius:0px;
  2039. -moz-box-shadow:none;
  2040. -webkit-box-shadow:none;
  2041. box-shadow:none;
  2042. font-family:'Microsoft YaHei', sans-serif;
  2043. font-weight:400;
  2044. font-style:normal;
  2045. font-size:10px;
  2046. }
  2047. #u50270 {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:659px;
  2051. top:104px;
  2052. width:127px;
  2053. height:25px;
  2054. display:flex;
  2055. font-family:'Microsoft YaHei', sans-serif;
  2056. font-weight:400;
  2057. font-style:normal;
  2058. font-size:10px;
  2059. }
  2060. #u50270 .text {
  2061. position:absolute;
  2062. align-self:center;
  2063. padding:2px 2px 2px 2px;
  2064. box-sizing:border-box;
  2065. width:100%;
  2066. }
  2067. #u50270_div.disabled {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:127px;
  2073. height:25px;
  2074. background:inherit;
  2075. background-color:rgba(240, 240, 240, 1);
  2076. border:none;
  2077. border-radius:0px;
  2078. -moz-box-shadow:none;
  2079. -webkit-box-shadow:none;
  2080. box-shadow:none;
  2081. font-family:'Microsoft YaHei', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:10px;
  2085. }
  2086. #u50270.disabled {
  2087. }
  2088. #u50271_div {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:55px;
  2094. height:30px;
  2095. background:inherit;
  2096. background-color:rgba(255, 255, 255, 1);
  2097. box-sizing:border-box;
  2098. border-width:1px;
  2099. border-style:solid;
  2100. border-color:rgba(170, 170, 170, 1);
  2101. border-radius:4px;
  2102. -moz-box-shadow:none;
  2103. -webkit-box-shadow:none;
  2104. box-shadow:none;
  2105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2106. font-weight:400;
  2107. font-style:normal;
  2108. font-size:12px;
  2109. color:#555555;
  2110. }
  2111. #u50271 {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:351px;
  2115. top:149px;
  2116. width:55px;
  2117. height:30px;
  2118. display:flex;
  2119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2120. font-weight:400;
  2121. font-style:normal;
  2122. font-size:12px;
  2123. color:#555555;
  2124. }
  2125. #u50271 .text {
  2126. position:absolute;
  2127. align-self:center;
  2128. padding:5px 15px 5px 15px;
  2129. box-sizing:border-box;
  2130. width:100%;
  2131. }
  2132. #u50271_text {
  2133. border-width:0px;
  2134. white-space:nowrap;
  2135. text-transform:none;
  2136. }
  2137. #u50272 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:0px;
  2143. height:0px;
  2144. }
  2145. #u50273_div {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:140px;
  2151. height:30px;
  2152. background:inherit;
  2153. background-color:rgba(255, 255, 255, 1);
  2154. box-sizing:border-box;
  2155. border-width:1px;
  2156. border-style:solid;
  2157. border-color:rgba(201, 201, 201, 1);
  2158. border-radius:4px;
  2159. -moz-box-shadow:none;
  2160. -webkit-box-shadow:none;
  2161. box-shadow:none;
  2162. font-family:'Microsoft YaHei', sans-serif;
  2163. font-weight:400;
  2164. font-style:normal;
  2165. font-size:14px;
  2166. color:#CCCCCC;
  2167. text-align:left;
  2168. }
  2169. #u50273 {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:801px;
  2173. top:102px;
  2174. width:140px;
  2175. height:30px;
  2176. display:flex;
  2177. font-family:'Microsoft YaHei', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:14px;
  2181. color:#CCCCCC;
  2182. text-align:left;
  2183. }
  2184. #u50273 .text {
  2185. position:absolute;
  2186. align-self:center;
  2187. padding:2px 8px 2px 8px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u50273_text {
  2192. border-width:0px;
  2193. word-wrap:break-word;
  2194. text-transform:none;
  2195. visibility:hidden;
  2196. }
  2197. #u50274_input {
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:127px;
  2202. height:25px;
  2203. padding:2px 2px 2px 2px;
  2204. font-family:'Microsoft YaHei', sans-serif;
  2205. font-weight:400;
  2206. font-style:normal;
  2207. font-size:10px;
  2208. letter-spacing:normal;
  2209. color:#000000;
  2210. vertical-align:none;
  2211. text-align:left;
  2212. text-transform:none;
  2213. background-color:transparent;
  2214. border-color:transparent;
  2215. }
  2216. #u50274_input.disabled {
  2217. position:absolute;
  2218. left:0px;
  2219. top:0px;
  2220. width:127px;
  2221. height:25px;
  2222. padding:2px 2px 2px 2px;
  2223. font-family:'Microsoft YaHei', sans-serif;
  2224. font-weight:400;
  2225. font-style:normal;
  2226. font-size:10px;
  2227. letter-spacing:normal;
  2228. color:#000000;
  2229. vertical-align:none;
  2230. text-align:left;
  2231. text-transform:none;
  2232. background-color:transparent;
  2233. border-color:transparent;
  2234. }
  2235. #u50274_div {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:127px;
  2241. height:25px;
  2242. background:inherit;
  2243. background-color:rgba(255, 255, 255, 1);
  2244. border:none;
  2245. border-radius:0px;
  2246. -moz-box-shadow:none;
  2247. -webkit-box-shadow:none;
  2248. box-shadow:none;
  2249. font-family:'Microsoft YaHei', sans-serif;
  2250. font-weight:400;
  2251. font-style:normal;
  2252. font-size:10px;
  2253. }
  2254. #u50274 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:809px;
  2258. top:103px;
  2259. width:127px;
  2260. height:25px;
  2261. display:flex;
  2262. font-family:'Microsoft YaHei', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. font-size:10px;
  2266. }
  2267. #u50274 .text {
  2268. position:absolute;
  2269. align-self:center;
  2270. padding:2px 2px 2px 2px;
  2271. box-sizing:border-box;
  2272. width:100%;
  2273. }
  2274. #u50274_div.disabled {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:127px;
  2280. height:25px;
  2281. background:inherit;
  2282. background-color:rgba(240, 240, 240, 1);
  2283. border:none;
  2284. border-radius:0px;
  2285. -moz-box-shadow:none;
  2286. -webkit-box-shadow:none;
  2287. box-shadow:none;
  2288. font-family:'Microsoft YaHei', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:10px;
  2292. }
  2293. #u50274.disabled {
  2294. }
  2295. #u50275 {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:0px;
  2301. height:0px;
  2302. }
  2303. #u50276_div {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:140px;
  2309. height:28px;
  2310. background:inherit;
  2311. background-color:rgba(255, 255, 255, 1);
  2312. box-sizing:border-box;
  2313. border-width:1px;
  2314. border-style:solid;
  2315. border-color:rgba(201, 201, 201, 1);
  2316. border-radius:4px;
  2317. -moz-box-shadow:none;
  2318. -webkit-box-shadow:none;
  2319. box-shadow:none;
  2320. font-family:'Microsoft YaHei', sans-serif;
  2321. font-weight:400;
  2322. font-style:normal;
  2323. font-size:14px;
  2324. color:#CCCCCC;
  2325. text-align:left;
  2326. }
  2327. #u50276 {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:501px;
  2331. top:101px;
  2332. width:140px;
  2333. height:28px;
  2334. display:flex;
  2335. font-family:'Microsoft YaHei', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:14px;
  2339. color:#CCCCCC;
  2340. text-align:left;
  2341. }
  2342. #u50276 .text {
  2343. position:absolute;
  2344. align-self:center;
  2345. padding:2px 8px 2px 8px;
  2346. box-sizing:border-box;
  2347. width:100%;
  2348. }
  2349. #u50276_text {
  2350. border-width:0px;
  2351. word-wrap:break-word;
  2352. text-transform:none;
  2353. visibility:hidden;
  2354. }
  2355. #u50277_input {
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:114px;
  2360. height:26px;
  2361. padding:2px 2px 2px 2px;
  2362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2363. font-weight:400;
  2364. font-style:normal;
  2365. font-size:14px;
  2366. letter-spacing:normal;
  2367. color:#000000;
  2368. vertical-align:none;
  2369. text-align:left;
  2370. text-transform:none;
  2371. background-color:transparent;
  2372. border-color:transparent;
  2373. }
  2374. #u50277_input.disabled {
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:114px;
  2379. height:26px;
  2380. padding:2px 2px 2px 2px;
  2381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2382. font-weight:400;
  2383. font-style:normal;
  2384. font-size:14px;
  2385. letter-spacing:normal;
  2386. color:#000000;
  2387. vertical-align:none;
  2388. text-align:left;
  2389. text-transform:none;
  2390. background-color:transparent;
  2391. border-color:transparent;
  2392. }
  2393. #u50277_div {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:114px;
  2399. height:26px;
  2400. background:inherit;
  2401. background-color:rgba(255, 255, 255, 1);
  2402. border:none;
  2403. border-radius:0px;
  2404. -moz-box-shadow:none;
  2405. -webkit-box-shadow:none;
  2406. box-shadow:none;
  2407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2408. font-weight:400;
  2409. font-style:normal;
  2410. font-size:14px;
  2411. }
  2412. #u50277 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:507px;
  2416. top:102px;
  2417. width:114px;
  2418. height:26px;
  2419. display:flex;
  2420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2421. font-weight:400;
  2422. font-style:normal;
  2423. font-size:14px;
  2424. }
  2425. #u50277 .text {
  2426. position:absolute;
  2427. align-self:center;
  2428. padding:2px 2px 2px 2px;
  2429. box-sizing:border-box;
  2430. width:100%;
  2431. }
  2432. #u50277_div.disabled {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:114px;
  2438. height:26px;
  2439. background:inherit;
  2440. background-color:rgba(240, 240, 240, 1);
  2441. border:none;
  2442. border-radius:0px;
  2443. -moz-box-shadow:none;
  2444. -webkit-box-shadow:none;
  2445. box-shadow:none;
  2446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2447. font-weight:400;
  2448. font-style:normal;
  2449. font-size:14px;
  2450. }
  2451. #u50277.disabled {
  2452. }
  2453. #u50278_img {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:13px;
  2459. height:15px;
  2460. }
  2461. #u50278 {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:621px;
  2465. top:108px;
  2466. width:13px;
  2467. height:15px;
  2468. display:flex;
  2469. }
  2470. #u50278 .text {
  2471. position:absolute;
  2472. align-self:center;
  2473. padding:2px 2px 2px 2px;
  2474. box-sizing:border-box;
  2475. width:100%;
  2476. }
  2477. #u50278_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. visibility:hidden;
  2482. }
  2483. #u50279 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:351px;
  2487. top:189px;
  2488. width:1361px;
  2489. height:342px;
  2490. }
  2491. #u50280_img {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:80px;
  2497. height:38px;
  2498. }
  2499. #u50280 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:0px;
  2503. top:0px;
  2504. width:80px;
  2505. height:38px;
  2506. display:flex;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. font-size:12px;
  2511. color:#FFFFFF;
  2512. }
  2513. #u50280 .text {
  2514. position:absolute;
  2515. align-self:center;
  2516. padding:2px 2px 2px 0px;
  2517. box-sizing:border-box;
  2518. width:100%;
  2519. }
  2520. #u50280_text {
  2521. border-width:0px;
  2522. word-wrap:break-word;
  2523. text-transform:none;
  2524. }
  2525. #u50281_img {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:63px;
  2531. height:38px;
  2532. }
  2533. #u50281 {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:80px;
  2537. top:0px;
  2538. width:63px;
  2539. height:38px;
  2540. display:flex;
  2541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2542. font-weight:400;
  2543. font-style:normal;
  2544. font-size:12px;
  2545. color:#FFFFFF;
  2546. }
  2547. #u50281 .text {
  2548. position:absolute;
  2549. align-self:center;
  2550. padding:2px 2px 2px 0px;
  2551. box-sizing:border-box;
  2552. width:100%;
  2553. }
  2554. #u50281_text {
  2555. border-width:0px;
  2556. word-wrap:break-word;
  2557. text-transform:none;
  2558. }
  2559. #u50282_img {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:60px;
  2565. height:38px;
  2566. }
  2567. #u50282 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:143px;
  2571. top:0px;
  2572. width:60px;
  2573. height:38px;
  2574. display:flex;
  2575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. font-size:12px;
  2579. color:#FFFFFF;
  2580. }
  2581. #u50282 .text {
  2582. position:absolute;
  2583. align-self:center;
  2584. padding:2px 2px 2px 0px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u50282_text {
  2589. border-width:0px;
  2590. word-wrap:break-word;
  2591. text-transform:none;
  2592. }
  2593. #u50283_img {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:64px;
  2599. height:38px;
  2600. }
  2601. #u50283 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:203px;
  2605. top:0px;
  2606. width:64px;
  2607. height:38px;
  2608. display:flex;
  2609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2610. font-weight:400;
  2611. font-style:normal;
  2612. font-size:12px;
  2613. color:#FFFFFF;
  2614. }
  2615. #u50283 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:2px 2px 2px 0px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u50283_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. }
  2627. #u50284_img {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:0px;
  2631. top:0px;
  2632. width:64px;
  2633. height:38px;
  2634. }
  2635. #u50284 {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:267px;
  2639. top:0px;
  2640. width:64px;
  2641. height:38px;
  2642. display:flex;
  2643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2644. font-weight:400;
  2645. font-style:normal;
  2646. font-size:12px;
  2647. color:#FFFFFF;
  2648. }
  2649. #u50284 .text {
  2650. position:absolute;
  2651. align-self:center;
  2652. padding:2px 2px 2px 0px;
  2653. box-sizing:border-box;
  2654. width:100%;
  2655. }
  2656. #u50284_text {
  2657. border-width:0px;
  2658. word-wrap:break-word;
  2659. text-transform:none;
  2660. }
  2661. #u50285_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:60px;
  2667. height:38px;
  2668. }
  2669. #u50285 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:331px;
  2673. top:0px;
  2674. width:60px;
  2675. height:38px;
  2676. display:flex;
  2677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2678. font-weight:400;
  2679. font-style:normal;
  2680. font-size:12px;
  2681. color:#FFFFFF;
  2682. }
  2683. #u50285 .text {
  2684. position:absolute;
  2685. align-self:center;
  2686. padding:2px 2px 2px 0px;
  2687. box-sizing:border-box;
  2688. width:100%;
  2689. }
  2690. #u50285_text {
  2691. border-width:0px;
  2692. word-wrap:break-word;
  2693. text-transform:none;
  2694. }
  2695. #u50286_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:80px;
  2701. height:38px;
  2702. }
  2703. #u50286 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:391px;
  2707. top:0px;
  2708. width:80px;
  2709. height:38px;
  2710. display:flex;
  2711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2712. font-weight:400;
  2713. font-style:normal;
  2714. font-size:12px;
  2715. color:#FFFFFF;
  2716. }
  2717. #u50286 .text {
  2718. position:absolute;
  2719. align-self:center;
  2720. padding:2px 2px 2px 0px;
  2721. box-sizing:border-box;
  2722. width:100%;
  2723. }
  2724. #u50286_text {
  2725. border-width:0px;
  2726. word-wrap:break-word;
  2727. text-transform:none;
  2728. }
  2729. #u50287_img {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:60px;
  2735. height:38px;
  2736. }
  2737. #u50287 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:471px;
  2741. top:0px;
  2742. width:60px;
  2743. height:38px;
  2744. display:flex;
  2745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:12px;
  2749. color:#FFFFFF;
  2750. }
  2751. #u50287 .text {
  2752. position:absolute;
  2753. align-self:center;
  2754. padding:2px 2px 2px 0px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u50287_text {
  2759. border-width:0px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. }
  2763. #u50288_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:70px;
  2769. height:38px;
  2770. }
  2771. #u50288 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:531px;
  2775. top:0px;
  2776. width:70px;
  2777. height:38px;
  2778. display:flex;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:12px;
  2783. color:#FFFFFF;
  2784. }
  2785. #u50288 .text {
  2786. position:absolute;
  2787. align-self:center;
  2788. padding:2px 2px 2px 0px;
  2789. box-sizing:border-box;
  2790. width:100%;
  2791. }
  2792. #u50288_text {
  2793. border-width:0px;
  2794. word-wrap:break-word;
  2795. text-transform:none;
  2796. }
  2797. #u50289_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:60px;
  2803. height:38px;
  2804. }
  2805. #u50289 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:601px;
  2809. top:0px;
  2810. width:60px;
  2811. height:38px;
  2812. display:flex;
  2813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2814. font-weight:400;
  2815. font-style:normal;
  2816. font-size:12px;
  2817. color:#FFFFFF;
  2818. }
  2819. #u50289 .text {
  2820. position:absolute;
  2821. align-self:center;
  2822. padding:2px 2px 2px 0px;
  2823. box-sizing:border-box;
  2824. width:100%;
  2825. }
  2826. #u50289_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. }
  2831. #u50290_img {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:60px;
  2837. height:38px;
  2838. }
  2839. #u50290 {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:661px;
  2843. top:0px;
  2844. width:60px;
  2845. height:38px;
  2846. display:flex;
  2847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2848. font-weight:400;
  2849. font-style:normal;
  2850. font-size:12px;
  2851. color:#FFFFFF;
  2852. }
  2853. #u50290 .text {
  2854. position:absolute;
  2855. align-self:center;
  2856. padding:2px 2px 2px 0px;
  2857. box-sizing:border-box;
  2858. width:100%;
  2859. }
  2860. #u50290_text {
  2861. border-width:0px;
  2862. word-wrap:break-word;
  2863. text-transform:none;
  2864. }
  2865. #u50291_img {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:60px;
  2871. height:38px;
  2872. }
  2873. #u50291 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:721px;
  2877. top:0px;
  2878. width:60px;
  2879. height:38px;
  2880. display:flex;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:12px;
  2885. color:#FFFFFF;
  2886. }
  2887. #u50291 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 0px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u50291_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. }
  2899. #u50292_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:80px;
  2905. height:38px;
  2906. }
  2907. #u50292 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:781px;
  2911. top:0px;
  2912. width:80px;
  2913. height:38px;
  2914. display:flex;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:12px;
  2919. color:#FFFFFF;
  2920. }
  2921. #u50292 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:2px 2px 2px 0px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u50292_text {
  2929. border-width:0px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. }
  2933. #u50293_img {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:60px;
  2939. height:38px;
  2940. }
  2941. #u50293 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:861px;
  2945. top:0px;
  2946. width:60px;
  2947. height:38px;
  2948. display:flex;
  2949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:12px;
  2953. color:#FFFFFF;
  2954. }
  2955. #u50293 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 0px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u50293_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. }
  2967. #u50294_img {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:0px;
  2971. top:0px;
  2972. width:60px;
  2973. height:38px;
  2974. }
  2975. #u50294 {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:921px;
  2979. top:0px;
  2980. width:60px;
  2981. height:38px;
  2982. display:flex;
  2983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2984. font-weight:400;
  2985. font-style:normal;
  2986. font-size:12px;
  2987. color:#FFFFFF;
  2988. }
  2989. #u50294 .text {
  2990. position:absolute;
  2991. align-self:center;
  2992. padding:2px 2px 2px 0px;
  2993. box-sizing:border-box;
  2994. width:100%;
  2995. }
  2996. #u50294_text {
  2997. border-width:0px;
  2998. word-wrap:break-word;
  2999. text-transform:none;
  3000. }
  3001. #u50295_img {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:60px;
  3007. height:38px;
  3008. }
  3009. #u50295 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:981px;
  3013. top:0px;
  3014. width:60px;
  3015. height:38px;
  3016. display:flex;
  3017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3018. font-weight:400;
  3019. font-style:normal;
  3020. font-size:12px;
  3021. color:#FFFFFF;
  3022. }
  3023. #u50295 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 0px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u50295_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. }
  3035. #u50296_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:60px;
  3041. height:38px;
  3042. }
  3043. #u50296 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:1041px;
  3047. top:0px;
  3048. width:60px;
  3049. height:38px;
  3050. display:flex;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:12px;
  3055. color:#FFFFFF;
  3056. }
  3057. #u50296 .text {
  3058. position:absolute;
  3059. align-self:center;
  3060. padding:2px 2px 2px 0px;
  3061. box-sizing:border-box;
  3062. width:100%;
  3063. }
  3064. #u50296_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. }
  3069. #u50297_img {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:60px;
  3075. height:38px;
  3076. }
  3077. #u50297 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:1101px;
  3081. top:0px;
  3082. width:60px;
  3083. height:38px;
  3084. display:flex;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:12px;
  3089. color:#FFFFFF;
  3090. }
  3091. #u50297 .text {
  3092. position:absolute;
  3093. align-self:center;
  3094. padding:2px 2px 2px 0px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u50297_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. }
  3103. #u50298_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:60px;
  3109. height:38px;
  3110. }
  3111. #u50298 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:1161px;
  3115. top:0px;
  3116. width:60px;
  3117. height:38px;
  3118. display:flex;
  3119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:12px;
  3123. color:#FFFFFF;
  3124. }
  3125. #u50298 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 2px 2px 0px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u50298_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. }
  3137. #u50299_img {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:0px;
  3141. top:0px;
  3142. width:80px;
  3143. height:38px;
  3144. }
  3145. #u50299 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:1221px;
  3149. top:0px;
  3150. width:80px;
  3151. height:38px;
  3152. display:flex;
  3153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3154. font-weight:400;
  3155. font-style:normal;
  3156. font-size:12px;
  3157. color:#FFFFFF;
  3158. }
  3159. #u50299 .text {
  3160. position:absolute;
  3161. align-self:center;
  3162. padding:2px 2px 2px 0px;
  3163. box-sizing:border-box;
  3164. width:100%;
  3165. }
  3166. #u50299_text {
  3167. border-width:0px;
  3168. word-wrap:break-word;
  3169. text-transform:none;
  3170. }
  3171. #u50300_img {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:0px;
  3176. width:60px;
  3177. height:38px;
  3178. }
  3179. #u50300 {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:1301px;
  3183. top:0px;
  3184. width:60px;
  3185. height:38px;
  3186. display:flex;
  3187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3188. font-weight:400;
  3189. font-style:normal;
  3190. font-size:12px;
  3191. color:#FFFFFF;
  3192. }
  3193. #u50300 .text {
  3194. position:absolute;
  3195. align-self:center;
  3196. padding:2px 2px 2px 0px;
  3197. box-sizing:border-box;
  3198. width:100%;
  3199. }
  3200. #u50300_text {
  3201. border-width:0px;
  3202. word-wrap:break-word;
  3203. text-transform:none;
  3204. }
  3205. #u50301_img {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:80px;
  3211. height:38px;
  3212. }
  3213. #u50301 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:38px;
  3218. width:80px;
  3219. height:38px;
  3220. display:flex;
  3221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3222. font-weight:400;
  3223. font-style:normal;
  3224. font-size:12px;
  3225. color:#333333;
  3226. }
  3227. #u50301 .text {
  3228. position:absolute;
  3229. align-self:center;
  3230. padding:2px 2px 2px 0px;
  3231. box-sizing:border-box;
  3232. width:100%;
  3233. }
  3234. #u50301_text {
  3235. border-width:0px;
  3236. word-wrap:break-word;
  3237. text-transform:none;
  3238. visibility:hidden;
  3239. }
  3240. #u50302_img {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:63px;
  3246. height:38px;
  3247. }
  3248. #u50302 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:80px;
  3252. top:38px;
  3253. width:63px;
  3254. height:38px;
  3255. display:flex;
  3256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:12px;
  3260. color:#333333;
  3261. }
  3262. #u50302 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:2px 2px 2px 0px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u50302_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. }
  3274. #u50303_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:60px;
  3280. height:38px;
  3281. }
  3282. #u50303 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:143px;
  3286. top:38px;
  3287. width:60px;
  3288. height:38px;
  3289. display:flex;
  3290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3291. font-weight:400;
  3292. font-style:normal;
  3293. font-size:12px;
  3294. color:#333333;
  3295. }
  3296. #u50303 .text {
  3297. position:absolute;
  3298. align-self:center;
  3299. padding:2px 2px 2px 0px;
  3300. box-sizing:border-box;
  3301. width:100%;
  3302. }
  3303. #u50303_text {
  3304. border-width:0px;
  3305. word-wrap:break-word;
  3306. text-transform:none;
  3307. visibility:hidden;
  3308. }
  3309. #u50304_img {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:64px;
  3315. height:38px;
  3316. }
  3317. #u50304 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:203px;
  3321. top:38px;
  3322. width:64px;
  3323. height:38px;
  3324. display:flex;
  3325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3326. font-weight:400;
  3327. font-style:normal;
  3328. font-size:12px;
  3329. color:#333333;
  3330. }
  3331. #u50304 .text {
  3332. position:absolute;
  3333. align-self:center;
  3334. padding:2px 2px 2px 0px;
  3335. box-sizing:border-box;
  3336. width:100%;
  3337. }
  3338. #u50304_text {
  3339. border-width:0px;
  3340. word-wrap:break-word;
  3341. text-transform:none;
  3342. visibility:hidden;
  3343. }
  3344. #u50305_img {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:64px;
  3350. height:38px;
  3351. }
  3352. #u50305 {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:267px;
  3356. top:38px;
  3357. width:64px;
  3358. height:38px;
  3359. display:flex;
  3360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3361. font-weight:400;
  3362. font-style:normal;
  3363. font-size:12px;
  3364. color:#333333;
  3365. }
  3366. #u50305 .text {
  3367. position:absolute;
  3368. align-self:center;
  3369. padding:2px 2px 2px 0px;
  3370. box-sizing:border-box;
  3371. width:100%;
  3372. }
  3373. #u50305_text {
  3374. border-width:0px;
  3375. word-wrap:break-word;
  3376. text-transform:none;
  3377. visibility:hidden;
  3378. }
  3379. #u50306_img {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:0px;
  3384. width:60px;
  3385. height:38px;
  3386. }
  3387. #u50306 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:331px;
  3391. top:38px;
  3392. width:60px;
  3393. height:38px;
  3394. display:flex;
  3395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3396. font-weight:400;
  3397. font-style:normal;
  3398. font-size:12px;
  3399. color:#333333;
  3400. }
  3401. #u50306 .text {
  3402. position:absolute;
  3403. align-self:center;
  3404. padding:2px 2px 2px 0px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u50306_text {
  3409. border-width:0px;
  3410. word-wrap:break-word;
  3411. text-transform:none;
  3412. visibility:hidden;
  3413. }
  3414. #u50307_img {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:0px;
  3418. top:0px;
  3419. width:80px;
  3420. height:38px;
  3421. }
  3422. #u50307 {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:391px;
  3426. top:38px;
  3427. width:80px;
  3428. height:38px;
  3429. display:flex;
  3430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3431. font-weight:400;
  3432. font-style:normal;
  3433. font-size:12px;
  3434. color:#333333;
  3435. }
  3436. #u50307 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:2px 2px 2px 0px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u50307_text {
  3444. border-width:0px;
  3445. word-wrap:break-word;
  3446. text-transform:none;
  3447. visibility:hidden;
  3448. }
  3449. #u50308_img {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:60px;
  3455. height:38px;
  3456. }
  3457. #u50308 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:471px;
  3461. top:38px;
  3462. width:60px;
  3463. height:38px;
  3464. display:flex;
  3465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3466. font-weight:400;
  3467. font-style:normal;
  3468. font-size:12px;
  3469. color:#0089FE;
  3470. }
  3471. #u50308 .text {
  3472. position:absolute;
  3473. align-self:center;
  3474. padding:2px 2px 2px 0px;
  3475. box-sizing:border-box;
  3476. width:100%;
  3477. }
  3478. #u50308_text {
  3479. border-width:0px;
  3480. word-wrap:break-word;
  3481. text-transform:none;
  3482. visibility:hidden;
  3483. }
  3484. #u50309_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:70px;
  3490. height:38px;
  3491. }
  3492. #u50309 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:531px;
  3496. top:38px;
  3497. width:70px;
  3498. height:38px;
  3499. display:flex;
  3500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:12px;
  3504. color:#0089FE;
  3505. }
  3506. #u50309 .text {
  3507. position:absolute;
  3508. align-self:center;
  3509. padding:2px 2px 2px 0px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u50309_text {
  3514. border-width:0px;
  3515. word-wrap:break-word;
  3516. text-transform:none;
  3517. visibility:hidden;
  3518. }
  3519. #u50310_img {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:60px;
  3525. height:38px;
  3526. }
  3527. #u50310 {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:601px;
  3531. top:38px;
  3532. width:60px;
  3533. height:38px;
  3534. display:flex;
  3535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3536. font-weight:400;
  3537. font-style:normal;
  3538. font-size:12px;
  3539. color:#0089FE;
  3540. }
  3541. #u50310 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 0px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u50310_text {
  3549. border-width:0px;
  3550. word-wrap:break-word;
  3551. text-transform:none;
  3552. visibility:hidden;
  3553. }
  3554. #u50311_img {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:60px;
  3560. height:38px;
  3561. }
  3562. #u50311 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:661px;
  3566. top:38px;
  3567. width:60px;
  3568. height:38px;
  3569. display:flex;
  3570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3571. font-weight:400;
  3572. font-style:normal;
  3573. font-size:12px;
  3574. color:#0089FE;
  3575. }
  3576. #u50311 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 0px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u50311_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u50312_img {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:60px;
  3595. height:38px;
  3596. }
  3597. #u50312 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:721px;
  3601. top:38px;
  3602. width:60px;
  3603. height:38px;
  3604. display:flex;
  3605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. font-size:12px;
  3609. color:#0089FE;
  3610. }
  3611. #u50312 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 2px 2px 0px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u50312_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. visibility:hidden;
  3623. }
  3624. #u50313_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:80px;
  3630. height:38px;
  3631. }
  3632. #u50313 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:781px;
  3636. top:38px;
  3637. width:80px;
  3638. height:38px;
  3639. display:flex;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:12px;
  3644. color:#0089FE;
  3645. }
  3646. #u50313 .text {
  3647. position:absolute;
  3648. align-self:center;
  3649. padding:2px 2px 2px 0px;
  3650. box-sizing:border-box;
  3651. width:100%;
  3652. }
  3653. #u50313_text {
  3654. border-width:0px;
  3655. word-wrap:break-word;
  3656. text-transform:none;
  3657. visibility:hidden;
  3658. }
  3659. #u50314_img {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:60px;
  3665. height:38px;
  3666. }
  3667. #u50314 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:861px;
  3671. top:38px;
  3672. width:60px;
  3673. height:38px;
  3674. display:flex;
  3675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3676. font-weight:400;
  3677. font-style:normal;
  3678. font-size:12px;
  3679. color:#0089FE;
  3680. }
  3681. #u50314 .text {
  3682. position:absolute;
  3683. align-self:center;
  3684. padding:2px 2px 2px 0px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u50314_text {
  3689. border-width:0px;
  3690. word-wrap:break-word;
  3691. text-transform:none;
  3692. visibility:hidden;
  3693. }
  3694. #u50315_img {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:60px;
  3700. height:38px;
  3701. }
  3702. #u50315 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:921px;
  3706. top:38px;
  3707. width:60px;
  3708. height:38px;
  3709. display:flex;
  3710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3711. font-weight:400;
  3712. font-style:normal;
  3713. font-size:12px;
  3714. color:#0089FE;
  3715. }
  3716. #u50315 .text {
  3717. position:absolute;
  3718. align-self:center;
  3719. padding:2px 2px 2px 0px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u50315_text {
  3724. border-width:0px;
  3725. word-wrap:break-word;
  3726. text-transform:none;
  3727. visibility:hidden;
  3728. }
  3729. #u50316_img {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:60px;
  3735. height:38px;
  3736. }
  3737. #u50316 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:981px;
  3741. top:38px;
  3742. width:60px;
  3743. height:38px;
  3744. display:flex;
  3745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3746. font-weight:400;
  3747. font-style:normal;
  3748. font-size:12px;
  3749. color:#0089FE;
  3750. }
  3751. #u50316 .text {
  3752. position:absolute;
  3753. align-self:center;
  3754. padding:2px 2px 2px 0px;
  3755. box-sizing:border-box;
  3756. width:100%;
  3757. }
  3758. #u50316_text {
  3759. border-width:0px;
  3760. word-wrap:break-word;
  3761. text-transform:none;
  3762. visibility:hidden;
  3763. }
  3764. #u50317_img {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:0px;
  3768. top:0px;
  3769. width:60px;
  3770. height:38px;
  3771. }
  3772. #u50317 {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:1041px;
  3776. top:38px;
  3777. width:60px;
  3778. height:38px;
  3779. display:flex;
  3780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3781. font-weight:400;
  3782. font-style:normal;
  3783. font-size:12px;
  3784. color:#0089FE;
  3785. }
  3786. #u50317 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:2px 2px 2px 0px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u50317_text {
  3794. border-width:0px;
  3795. word-wrap:break-word;
  3796. text-transform:none;
  3797. visibility:hidden;
  3798. }
  3799. #u50318_img {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:60px;
  3805. height:38px;
  3806. }
  3807. #u50318 {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:1101px;
  3811. top:38px;
  3812. width:60px;
  3813. height:38px;
  3814. display:flex;
  3815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3816. font-weight:400;
  3817. font-style:normal;
  3818. font-size:12px;
  3819. color:#0089FE;
  3820. }
  3821. #u50318 .text {
  3822. position:absolute;
  3823. align-self:center;
  3824. padding:2px 2px 2px 0px;
  3825. box-sizing:border-box;
  3826. width:100%;
  3827. }
  3828. #u50318_text {
  3829. border-width:0px;
  3830. word-wrap:break-word;
  3831. text-transform:none;
  3832. visibility:hidden;
  3833. }
  3834. #u50319_img {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:60px;
  3840. height:38px;
  3841. }
  3842. #u50319 {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:1161px;
  3846. top:38px;
  3847. width:60px;
  3848. height:38px;
  3849. display:flex;
  3850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3851. font-weight:400;
  3852. font-style:normal;
  3853. font-size:12px;
  3854. color:#0089FE;
  3855. }
  3856. #u50319 .text {
  3857. position:absolute;
  3858. align-self:center;
  3859. padding:2px 2px 2px 0px;
  3860. box-sizing:border-box;
  3861. width:100%;
  3862. }
  3863. #u50319_text {
  3864. border-width:0px;
  3865. word-wrap:break-word;
  3866. text-transform:none;
  3867. visibility:hidden;
  3868. }
  3869. #u50320_img {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:80px;
  3875. height:38px;
  3876. }
  3877. #u50320 {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:1221px;
  3881. top:38px;
  3882. width:80px;
  3883. height:38px;
  3884. display:flex;
  3885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3886. font-weight:400;
  3887. font-style:normal;
  3888. font-size:12px;
  3889. color:#0089FE;
  3890. }
  3891. #u50320 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 0px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u50320_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u50321_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:60px;
  3910. height:38px;
  3911. }
  3912. #u50321 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:1301px;
  3916. top:38px;
  3917. width:60px;
  3918. height:38px;
  3919. display:flex;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:12px;
  3924. color:#0089FE;
  3925. }
  3926. #u50321 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 2px 2px 0px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u50321_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. visibility:hidden;
  3938. }
  3939. #u50322_img {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:80px;
  3945. height:38px;
  3946. }
  3947. #u50322 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:76px;
  3952. width:80px;
  3953. height:38px;
  3954. display:flex;
  3955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3956. font-weight:400;
  3957. font-style:normal;
  3958. font-size:12px;
  3959. color:#333333;
  3960. }
  3961. #u50322 .text {
  3962. position:absolute;
  3963. align-self:center;
  3964. padding:2px 2px 2px 0px;
  3965. box-sizing:border-box;
  3966. width:100%;
  3967. }
  3968. #u50322_text {
  3969. border-width:0px;
  3970. word-wrap:break-word;
  3971. text-transform:none;
  3972. visibility:hidden;
  3973. }
  3974. #u50323_img {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:63px;
  3980. height:38px;
  3981. }
  3982. #u50323 {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:80px;
  3986. top:76px;
  3987. width:63px;
  3988. height:38px;
  3989. display:flex;
  3990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3991. font-weight:400;
  3992. font-style:normal;
  3993. font-size:12px;
  3994. color:#333333;
  3995. }
  3996. #u50323 .text {
  3997. position:absolute;
  3998. align-self:center;
  3999. padding:2px 2px 2px 0px;
  4000. box-sizing:border-box;
  4001. width:100%;
  4002. }
  4003. #u50323_text {
  4004. border-width:0px;
  4005. word-wrap:break-word;
  4006. text-transform:none;
  4007. }
  4008. #u50324_img {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:0px;
  4012. top:0px;
  4013. width:60px;
  4014. height:38px;
  4015. }
  4016. #u50324 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:143px;
  4020. top:76px;
  4021. width:60px;
  4022. height:38px;
  4023. display:flex;
  4024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4025. font-weight:400;
  4026. font-style:normal;
  4027. font-size:12px;
  4028. color:#333333;
  4029. }
  4030. #u50324 .text {
  4031. position:absolute;
  4032. align-self:center;
  4033. padding:2px 2px 2px 0px;
  4034. box-sizing:border-box;
  4035. width:100%;
  4036. }
  4037. #u50324_text {
  4038. border-width:0px;
  4039. word-wrap:break-word;
  4040. text-transform:none;
  4041. visibility:hidden;
  4042. }
  4043. #u50325_img {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:0px;
  4047. top:0px;
  4048. width:64px;
  4049. height:38px;
  4050. }
  4051. #u50325 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:203px;
  4055. top:76px;
  4056. width:64px;
  4057. height:38px;
  4058. display:flex;
  4059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4060. font-weight:400;
  4061. font-style:normal;
  4062. font-size:12px;
  4063. color:#333333;
  4064. }
  4065. #u50325 .text {
  4066. position:absolute;
  4067. align-self:center;
  4068. padding:2px 2px 2px 0px;
  4069. box-sizing:border-box;
  4070. width:100%;
  4071. }
  4072. #u50325_text {
  4073. border-width:0px;
  4074. word-wrap:break-word;
  4075. text-transform:none;
  4076. visibility:hidden;
  4077. }
  4078. #u50326_img {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:0px;
  4082. top:0px;
  4083. width:64px;
  4084. height:38px;
  4085. }
  4086. #u50326 {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:267px;
  4090. top:76px;
  4091. width:64px;
  4092. height:38px;
  4093. display:flex;
  4094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4095. font-weight:400;
  4096. font-style:normal;
  4097. font-size:12px;
  4098. color:#333333;
  4099. }
  4100. #u50326 .text {
  4101. position:absolute;
  4102. align-self:center;
  4103. padding:2px 2px 2px 0px;
  4104. box-sizing:border-box;
  4105. width:100%;
  4106. }
  4107. #u50326_text {
  4108. border-width:0px;
  4109. word-wrap:break-word;
  4110. text-transform:none;
  4111. visibility:hidden;
  4112. }
  4113. #u50327_img {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:60px;
  4119. height:38px;
  4120. }
  4121. #u50327 {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:331px;
  4125. top:76px;
  4126. width:60px;
  4127. height:38px;
  4128. display:flex;
  4129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4130. font-weight:400;
  4131. font-style:normal;
  4132. font-size:12px;
  4133. color:#333333;
  4134. }
  4135. #u50327 .text {
  4136. position:absolute;
  4137. align-self:center;
  4138. padding:2px 2px 2px 0px;
  4139. box-sizing:border-box;
  4140. width:100%;
  4141. }
  4142. #u50327_text {
  4143. border-width:0px;
  4144. word-wrap:break-word;
  4145. text-transform:none;
  4146. visibility:hidden;
  4147. }
  4148. #u50328_img {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:80px;
  4154. height:38px;
  4155. }
  4156. #u50328 {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:391px;
  4160. top:76px;
  4161. width:80px;
  4162. height:38px;
  4163. display:flex;
  4164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4165. font-weight:400;
  4166. font-style:normal;
  4167. font-size:12px;
  4168. color:#333333;
  4169. }
  4170. #u50328 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:2px 2px 2px 0px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u50328_text {
  4178. border-width:0px;
  4179. word-wrap:break-word;
  4180. text-transform:none;
  4181. visibility:hidden;
  4182. }
  4183. #u50329_img {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:0px;
  4187. top:0px;
  4188. width:60px;
  4189. height:38px;
  4190. }
  4191. #u50329 {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:471px;
  4195. top:76px;
  4196. width:60px;
  4197. height:38px;
  4198. display:flex;
  4199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4200. font-weight:400;
  4201. font-style:normal;
  4202. font-size:12px;
  4203. color:#0089FE;
  4204. }
  4205. #u50329 .text {
  4206. position:absolute;
  4207. align-self:center;
  4208. padding:2px 2px 2px 0px;
  4209. box-sizing:border-box;
  4210. width:100%;
  4211. }
  4212. #u50329_text {
  4213. border-width:0px;
  4214. word-wrap:break-word;
  4215. text-transform:none;
  4216. visibility:hidden;
  4217. }
  4218. #u50330_img {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:0px;
  4223. width:70px;
  4224. height:38px;
  4225. }
  4226. #u50330 {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:531px;
  4230. top:76px;
  4231. width:70px;
  4232. height:38px;
  4233. display:flex;
  4234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4235. font-weight:400;
  4236. font-style:normal;
  4237. font-size:12px;
  4238. color:#0089FE;
  4239. }
  4240. #u50330 .text {
  4241. position:absolute;
  4242. align-self:center;
  4243. padding:2px 2px 2px 0px;
  4244. box-sizing:border-box;
  4245. width:100%;
  4246. }
  4247. #u50330_text {
  4248. border-width:0px;
  4249. word-wrap:break-word;
  4250. text-transform:none;
  4251. visibility:hidden;
  4252. }
  4253. #u50331_img {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:60px;
  4259. height:38px;
  4260. }
  4261. #u50331 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:601px;
  4265. top:76px;
  4266. width:60px;
  4267. height:38px;
  4268. display:flex;
  4269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:12px;
  4273. color:#0089FE;
  4274. }
  4275. #u50331 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 2px 2px 0px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u50331_text {
  4283. border-width:0px;
  4284. word-wrap:break-word;
  4285. text-transform:none;
  4286. visibility:hidden;
  4287. }
  4288. #u50332_img {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:60px;
  4294. height:38px;
  4295. }
  4296. #u50332 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:661px;
  4300. top:76px;
  4301. width:60px;
  4302. height:38px;
  4303. display:flex;
  4304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4305. font-weight:400;
  4306. font-style:normal;
  4307. font-size:12px;
  4308. color:#0089FE;
  4309. }
  4310. #u50332 .text {
  4311. position:absolute;
  4312. align-self:center;
  4313. padding:2px 2px 2px 0px;
  4314. box-sizing:border-box;
  4315. width:100%;
  4316. }
  4317. #u50332_text {
  4318. border-width:0px;
  4319. word-wrap:break-word;
  4320. text-transform:none;
  4321. visibility:hidden;
  4322. }
  4323. #u50333_img {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:60px;
  4329. height:38px;
  4330. }
  4331. #u50333 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:721px;
  4335. top:76px;
  4336. width:60px;
  4337. height:38px;
  4338. display:flex;
  4339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4340. font-weight:400;
  4341. font-style:normal;
  4342. font-size:12px;
  4343. color:#0089FE;
  4344. }
  4345. #u50333 .text {
  4346. position:absolute;
  4347. align-self:center;
  4348. padding:2px 2px 2px 0px;
  4349. box-sizing:border-box;
  4350. width:100%;
  4351. }
  4352. #u50333_text {
  4353. border-width:0px;
  4354. word-wrap:break-word;
  4355. text-transform:none;
  4356. visibility:hidden;
  4357. }
  4358. #u50334_img {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:0px;
  4362. top:0px;
  4363. width:80px;
  4364. height:38px;
  4365. }
  4366. #u50334 {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:781px;
  4370. top:76px;
  4371. width:80px;
  4372. height:38px;
  4373. display:flex;
  4374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:12px;
  4378. color:#0089FE;
  4379. }
  4380. #u50334 .text {
  4381. position:absolute;
  4382. align-self:center;
  4383. padding:2px 2px 2px 0px;
  4384. box-sizing:border-box;
  4385. width:100%;
  4386. }
  4387. #u50334_text {
  4388. border-width:0px;
  4389. word-wrap:break-word;
  4390. text-transform:none;
  4391. visibility:hidden;
  4392. }
  4393. #u50335_img {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:60px;
  4399. height:38px;
  4400. }
  4401. #u50335 {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:861px;
  4405. top:76px;
  4406. width:60px;
  4407. height:38px;
  4408. display:flex;
  4409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4410. font-weight:400;
  4411. font-style:normal;
  4412. font-size:12px;
  4413. color:#0089FE;
  4414. }
  4415. #u50335 .text {
  4416. position:absolute;
  4417. align-self:center;
  4418. padding:2px 2px 2px 0px;
  4419. box-sizing:border-box;
  4420. width:100%;
  4421. }
  4422. #u50335_text {
  4423. border-width:0px;
  4424. word-wrap:break-word;
  4425. text-transform:none;
  4426. visibility:hidden;
  4427. }
  4428. #u50336_img {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:0px;
  4432. top:0px;
  4433. width:60px;
  4434. height:38px;
  4435. }
  4436. #u50336 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:921px;
  4440. top:76px;
  4441. width:60px;
  4442. height:38px;
  4443. display:flex;
  4444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:12px;
  4448. color:#0089FE;
  4449. }
  4450. #u50336 .text {
  4451. position:absolute;
  4452. align-self:center;
  4453. padding:2px 2px 2px 0px;
  4454. box-sizing:border-box;
  4455. width:100%;
  4456. }
  4457. #u50336_text {
  4458. border-width:0px;
  4459. word-wrap:break-word;
  4460. text-transform:none;
  4461. visibility:hidden;
  4462. }
  4463. #u50337_img {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:60px;
  4469. height:38px;
  4470. }
  4471. #u50337 {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:981px;
  4475. top:76px;
  4476. width:60px;
  4477. height:38px;
  4478. display:flex;
  4479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4480. font-weight:400;
  4481. font-style:normal;
  4482. font-size:12px;
  4483. color:#0089FE;
  4484. }
  4485. #u50337 .text {
  4486. position:absolute;
  4487. align-self:center;
  4488. padding:2px 2px 2px 0px;
  4489. box-sizing:border-box;
  4490. width:100%;
  4491. }
  4492. #u50337_text {
  4493. border-width:0px;
  4494. word-wrap:break-word;
  4495. text-transform:none;
  4496. visibility:hidden;
  4497. }
  4498. #u50338_img {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:0px;
  4502. top:0px;
  4503. width:60px;
  4504. height:38px;
  4505. }
  4506. #u50338 {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:1041px;
  4510. top:76px;
  4511. width:60px;
  4512. height:38px;
  4513. display:flex;
  4514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4515. font-weight:400;
  4516. font-style:normal;
  4517. font-size:12px;
  4518. color:#0089FE;
  4519. }
  4520. #u50338 .text {
  4521. position:absolute;
  4522. align-self:center;
  4523. padding:2px 2px 2px 0px;
  4524. box-sizing:border-box;
  4525. width:100%;
  4526. }
  4527. #u50338_text {
  4528. border-width:0px;
  4529. word-wrap:break-word;
  4530. text-transform:none;
  4531. visibility:hidden;
  4532. }
  4533. #u50339_img {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:60px;
  4539. height:38px;
  4540. }
  4541. #u50339 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:1101px;
  4545. top:76px;
  4546. width:60px;
  4547. height:38px;
  4548. display:flex;
  4549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4550. font-weight:400;
  4551. font-style:normal;
  4552. font-size:12px;
  4553. color:#0089FE;
  4554. }
  4555. #u50339 .text {
  4556. position:absolute;
  4557. align-self:center;
  4558. padding:2px 2px 2px 0px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u50339_text {
  4563. border-width:0px;
  4564. word-wrap:break-word;
  4565. text-transform:none;
  4566. visibility:hidden;
  4567. }
  4568. #u50340_img {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:60px;
  4574. height:38px;
  4575. }
  4576. #u50340 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:1161px;
  4580. top:76px;
  4581. width:60px;
  4582. height:38px;
  4583. display:flex;
  4584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:12px;
  4588. color:#0089FE;
  4589. }
  4590. #u50340 .text {
  4591. position:absolute;
  4592. align-self:center;
  4593. padding:2px 2px 2px 0px;
  4594. box-sizing:border-box;
  4595. width:100%;
  4596. }
  4597. #u50340_text {
  4598. border-width:0px;
  4599. word-wrap:break-word;
  4600. text-transform:none;
  4601. visibility:hidden;
  4602. }
  4603. #u50341_img {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:0px;
  4607. top:0px;
  4608. width:80px;
  4609. height:38px;
  4610. }
  4611. #u50341 {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:1221px;
  4615. top:76px;
  4616. width:80px;
  4617. height:38px;
  4618. display:flex;
  4619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4620. font-weight:400;
  4621. font-style:normal;
  4622. font-size:12px;
  4623. color:#0089FE;
  4624. }
  4625. #u50341 .text {
  4626. position:absolute;
  4627. align-self:center;
  4628. padding:2px 2px 2px 0px;
  4629. box-sizing:border-box;
  4630. width:100%;
  4631. }
  4632. #u50341_text {
  4633. border-width:0px;
  4634. word-wrap:break-word;
  4635. text-transform:none;
  4636. visibility:hidden;
  4637. }
  4638. #u50342_img {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:60px;
  4644. height:38px;
  4645. }
  4646. #u50342 {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:1301px;
  4650. top:76px;
  4651. width:60px;
  4652. height:38px;
  4653. display:flex;
  4654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4655. font-weight:400;
  4656. font-style:normal;
  4657. font-size:12px;
  4658. color:#0089FE;
  4659. }
  4660. #u50342 .text {
  4661. position:absolute;
  4662. align-self:center;
  4663. padding:2px 2px 2px 0px;
  4664. box-sizing:border-box;
  4665. width:100%;
  4666. }
  4667. #u50342_text {
  4668. border-width:0px;
  4669. word-wrap:break-word;
  4670. text-transform:none;
  4671. visibility:hidden;
  4672. }
  4673. #u50343_img {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:80px;
  4679. height:38px;
  4680. }
  4681. #u50343 {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:114px;
  4686. width:80px;
  4687. height:38px;
  4688. display:flex;
  4689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4690. font-weight:400;
  4691. font-style:normal;
  4692. font-size:12px;
  4693. color:#333333;
  4694. }
  4695. #u50343 .text {
  4696. position:absolute;
  4697. align-self:center;
  4698. padding:2px 2px 2px 0px;
  4699. box-sizing:border-box;
  4700. width:100%;
  4701. }
  4702. #u50343_text {
  4703. border-width:0px;
  4704. word-wrap:break-word;
  4705. text-transform:none;
  4706. visibility:hidden;
  4707. }
  4708. #u50344_img {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:0px;
  4713. width:63px;
  4714. height:38px;
  4715. }
  4716. #u50344 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:80px;
  4720. top:114px;
  4721. width:63px;
  4722. height:38px;
  4723. display:flex;
  4724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4725. font-weight:400;
  4726. font-style:normal;
  4727. font-size:12px;
  4728. color:#333333;
  4729. }
  4730. #u50344 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 2px 2px 0px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u50344_text {
  4738. border-width:0px;
  4739. word-wrap:break-word;
  4740. text-transform:none;
  4741. visibility:hidden;
  4742. }
  4743. #u50345_img {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:0px;
  4747. top:0px;
  4748. width:60px;
  4749. height:38px;
  4750. }
  4751. #u50345 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:143px;
  4755. top:114px;
  4756. width:60px;
  4757. height:38px;
  4758. display:flex;
  4759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4760. font-weight:400;
  4761. font-style:normal;
  4762. font-size:12px;
  4763. color:#333333;
  4764. }
  4765. #u50345 .text {
  4766. position:absolute;
  4767. align-self:center;
  4768. padding:2px 2px 2px 0px;
  4769. box-sizing:border-box;
  4770. width:100%;
  4771. }
  4772. #u50345_text {
  4773. border-width:0px;
  4774. word-wrap:break-word;
  4775. text-transform:none;
  4776. visibility:hidden;
  4777. }
  4778. #u50346_img {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:0px;
  4782. top:0px;
  4783. width:64px;
  4784. height:38px;
  4785. }
  4786. #u50346 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:203px;
  4790. top:114px;
  4791. width:64px;
  4792. height:38px;
  4793. display:flex;
  4794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4795. font-weight:400;
  4796. font-style:normal;
  4797. font-size:12px;
  4798. color:#333333;
  4799. }
  4800. #u50346 .text {
  4801. position:absolute;
  4802. align-self:center;
  4803. padding:2px 2px 2px 0px;
  4804. box-sizing:border-box;
  4805. width:100%;
  4806. }
  4807. #u50346_text {
  4808. border-width:0px;
  4809. word-wrap:break-word;
  4810. text-transform:none;
  4811. visibility:hidden;
  4812. }
  4813. #u50347_img {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:0px;
  4817. top:0px;
  4818. width:64px;
  4819. height:38px;
  4820. }
  4821. #u50347 {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:267px;
  4825. top:114px;
  4826. width:64px;
  4827. height:38px;
  4828. display:flex;
  4829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4830. font-weight:400;
  4831. font-style:normal;
  4832. font-size:12px;
  4833. color:#333333;
  4834. }
  4835. #u50347 .text {
  4836. position:absolute;
  4837. align-self:center;
  4838. padding:2px 2px 2px 0px;
  4839. box-sizing:border-box;
  4840. width:100%;
  4841. }
  4842. #u50347_text {
  4843. border-width:0px;
  4844. word-wrap:break-word;
  4845. text-transform:none;
  4846. visibility:hidden;
  4847. }
  4848. #u50348_img {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:0px;
  4852. top:0px;
  4853. width:60px;
  4854. height:38px;
  4855. }
  4856. #u50348 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:331px;
  4860. top:114px;
  4861. width:60px;
  4862. height:38px;
  4863. display:flex;
  4864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4865. font-weight:400;
  4866. font-style:normal;
  4867. font-size:12px;
  4868. color:#333333;
  4869. }
  4870. #u50348 .text {
  4871. position:absolute;
  4872. align-self:center;
  4873. padding:2px 2px 2px 0px;
  4874. box-sizing:border-box;
  4875. width:100%;
  4876. }
  4877. #u50348_text {
  4878. border-width:0px;
  4879. word-wrap:break-word;
  4880. text-transform:none;
  4881. visibility:hidden;
  4882. }
  4883. #u50349_img {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:0px;
  4887. top:0px;
  4888. width:80px;
  4889. height:38px;
  4890. }
  4891. #u50349 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:391px;
  4895. top:114px;
  4896. width:80px;
  4897. height:38px;
  4898. display:flex;
  4899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4900. font-weight:400;
  4901. font-style:normal;
  4902. font-size:12px;
  4903. color:#333333;
  4904. }
  4905. #u50349 .text {
  4906. position:absolute;
  4907. align-self:center;
  4908. padding:2px 2px 2px 0px;
  4909. box-sizing:border-box;
  4910. width:100%;
  4911. }
  4912. #u50349_text {
  4913. border-width:0px;
  4914. word-wrap:break-word;
  4915. text-transform:none;
  4916. visibility:hidden;
  4917. }
  4918. #u50350_img {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:0px;
  4922. top:0px;
  4923. width:60px;
  4924. height:38px;
  4925. }
  4926. #u50350 {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:471px;
  4930. top:114px;
  4931. width:60px;
  4932. height:38px;
  4933. display:flex;
  4934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4935. font-weight:400;
  4936. font-style:normal;
  4937. font-size:12px;
  4938. color:#0089FE;
  4939. }
  4940. #u50350 .text {
  4941. position:absolute;
  4942. align-self:center;
  4943. padding:2px 2px 2px 0px;
  4944. box-sizing:border-box;
  4945. width:100%;
  4946. }
  4947. #u50350_text {
  4948. border-width:0px;
  4949. word-wrap:break-word;
  4950. text-transform:none;
  4951. visibility:hidden;
  4952. }
  4953. #u50351_img {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:0px;
  4957. top:0px;
  4958. width:70px;
  4959. height:38px;
  4960. }
  4961. #u50351 {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:531px;
  4965. top:114px;
  4966. width:70px;
  4967. height:38px;
  4968. display:flex;
  4969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4970. font-weight:400;
  4971. font-style:normal;
  4972. font-size:12px;
  4973. color:#0089FE;
  4974. }
  4975. #u50351 .text {
  4976. position:absolute;
  4977. align-self:center;
  4978. padding:2px 2px 2px 0px;
  4979. box-sizing:border-box;
  4980. width:100%;
  4981. }
  4982. #u50351_text {
  4983. border-width:0px;
  4984. word-wrap:break-word;
  4985. text-transform:none;
  4986. visibility:hidden;
  4987. }
  4988. #u50352_img {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:0px;
  4992. top:0px;
  4993. width:60px;
  4994. height:38px;
  4995. }
  4996. #u50352 {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:601px;
  5000. top:114px;
  5001. width:60px;
  5002. height:38px;
  5003. display:flex;
  5004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5005. font-weight:400;
  5006. font-style:normal;
  5007. font-size:12px;
  5008. color:#0089FE;
  5009. }
  5010. #u50352 .text {
  5011. position:absolute;
  5012. align-self:center;
  5013. padding:2px 2px 2px 0px;
  5014. box-sizing:border-box;
  5015. width:100%;
  5016. }
  5017. #u50352_text {
  5018. border-width:0px;
  5019. word-wrap:break-word;
  5020. text-transform:none;
  5021. visibility:hidden;
  5022. }
  5023. #u50353_img {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:0px;
  5027. top:0px;
  5028. width:60px;
  5029. height:38px;
  5030. }
  5031. #u50353 {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:661px;
  5035. top:114px;
  5036. width:60px;
  5037. height:38px;
  5038. display:flex;
  5039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5040. font-weight:400;
  5041. font-style:normal;
  5042. font-size:12px;
  5043. color:#0089FE;
  5044. }
  5045. #u50353 .text {
  5046. position:absolute;
  5047. align-self:center;
  5048. padding:2px 2px 2px 0px;
  5049. box-sizing:border-box;
  5050. width:100%;
  5051. }
  5052. #u50353_text {
  5053. border-width:0px;
  5054. word-wrap:break-word;
  5055. text-transform:none;
  5056. visibility:hidden;
  5057. }
  5058. #u50354_img {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:0px;
  5062. top:0px;
  5063. width:60px;
  5064. height:38px;
  5065. }
  5066. #u50354 {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:721px;
  5070. top:114px;
  5071. width:60px;
  5072. height:38px;
  5073. display:flex;
  5074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5075. font-weight:400;
  5076. font-style:normal;
  5077. font-size:12px;
  5078. color:#0089FE;
  5079. }
  5080. #u50354 .text {
  5081. position:absolute;
  5082. align-self:center;
  5083. padding:2px 2px 2px 0px;
  5084. box-sizing:border-box;
  5085. width:100%;
  5086. }
  5087. #u50354_text {
  5088. border-width:0px;
  5089. word-wrap:break-word;
  5090. text-transform:none;
  5091. visibility:hidden;
  5092. }
  5093. #u50355_img {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:80px;
  5099. height:38px;
  5100. }
  5101. #u50355 {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:781px;
  5105. top:114px;
  5106. width:80px;
  5107. height:38px;
  5108. display:flex;
  5109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5110. font-weight:400;
  5111. font-style:normal;
  5112. font-size:12px;
  5113. color:#0089FE;
  5114. }
  5115. #u50355 .text {
  5116. position:absolute;
  5117. align-self:center;
  5118. padding:2px 2px 2px 0px;
  5119. box-sizing:border-box;
  5120. width:100%;
  5121. }
  5122. #u50355_text {
  5123. border-width:0px;
  5124. word-wrap:break-word;
  5125. text-transform:none;
  5126. visibility:hidden;
  5127. }
  5128. #u50356_img {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:60px;
  5134. height:38px;
  5135. }
  5136. #u50356 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:861px;
  5140. top:114px;
  5141. width:60px;
  5142. height:38px;
  5143. display:flex;
  5144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5145. font-weight:400;
  5146. font-style:normal;
  5147. font-size:12px;
  5148. color:#0089FE;
  5149. }
  5150. #u50356 .text {
  5151. position:absolute;
  5152. align-self:center;
  5153. padding:2px 2px 2px 0px;
  5154. box-sizing:border-box;
  5155. width:100%;
  5156. }
  5157. #u50356_text {
  5158. border-width:0px;
  5159. word-wrap:break-word;
  5160. text-transform:none;
  5161. visibility:hidden;
  5162. }
  5163. #u50357_img {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:60px;
  5169. height:38px;
  5170. }
  5171. #u50357 {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:921px;
  5175. top:114px;
  5176. width:60px;
  5177. height:38px;
  5178. display:flex;
  5179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5180. font-weight:400;
  5181. font-style:normal;
  5182. font-size:12px;
  5183. color:#0089FE;
  5184. }
  5185. #u50357 .text {
  5186. position:absolute;
  5187. align-self:center;
  5188. padding:2px 2px 2px 0px;
  5189. box-sizing:border-box;
  5190. width:100%;
  5191. }
  5192. #u50357_text {
  5193. border-width:0px;
  5194. word-wrap:break-word;
  5195. text-transform:none;
  5196. visibility:hidden;
  5197. }
  5198. #u50358_img {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:0px;
  5202. top:0px;
  5203. width:60px;
  5204. height:38px;
  5205. }
  5206. #u50358 {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:981px;
  5210. top:114px;
  5211. width:60px;
  5212. height:38px;
  5213. display:flex;
  5214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5215. font-weight:400;
  5216. font-style:normal;
  5217. font-size:12px;
  5218. color:#0089FE;
  5219. }
  5220. #u50358 .text {
  5221. position:absolute;
  5222. align-self:center;
  5223. padding:2px 2px 2px 0px;
  5224. box-sizing:border-box;
  5225. width:100%;
  5226. }
  5227. #u50358_text {
  5228. border-width:0px;
  5229. word-wrap:break-word;
  5230. text-transform:none;
  5231. visibility:hidden;
  5232. }
  5233. #u50359_img {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:0px;
  5237. top:0px;
  5238. width:60px;
  5239. height:38px;
  5240. }
  5241. #u50359 {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:1041px;
  5245. top:114px;
  5246. width:60px;
  5247. height:38px;
  5248. display:flex;
  5249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5250. font-weight:400;
  5251. font-style:normal;
  5252. font-size:12px;
  5253. color:#0089FE;
  5254. }
  5255. #u50359 .text {
  5256. position:absolute;
  5257. align-self:center;
  5258. padding:2px 2px 2px 0px;
  5259. box-sizing:border-box;
  5260. width:100%;
  5261. }
  5262. #u50359_text {
  5263. border-width:0px;
  5264. word-wrap:break-word;
  5265. text-transform:none;
  5266. visibility:hidden;
  5267. }
  5268. #u50360_img {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:60px;
  5274. height:38px;
  5275. }
  5276. #u50360 {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:1101px;
  5280. top:114px;
  5281. width:60px;
  5282. height:38px;
  5283. display:flex;
  5284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5285. font-weight:400;
  5286. font-style:normal;
  5287. font-size:12px;
  5288. color:#0089FE;
  5289. }
  5290. #u50360 .text {
  5291. position:absolute;
  5292. align-self:center;
  5293. padding:2px 2px 2px 0px;
  5294. box-sizing:border-box;
  5295. width:100%;
  5296. }
  5297. #u50360_text {
  5298. border-width:0px;
  5299. word-wrap:break-word;
  5300. text-transform:none;
  5301. visibility:hidden;
  5302. }
  5303. #u50361_img {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:60px;
  5309. height:38px;
  5310. }
  5311. #u50361 {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:1161px;
  5315. top:114px;
  5316. width:60px;
  5317. height:38px;
  5318. display:flex;
  5319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5320. font-weight:400;
  5321. font-style:normal;
  5322. font-size:12px;
  5323. color:#0089FE;
  5324. }
  5325. #u50361 .text {
  5326. position:absolute;
  5327. align-self:center;
  5328. padding:2px 2px 2px 0px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u50361_text {
  5333. border-width:0px;
  5334. word-wrap:break-word;
  5335. text-transform:none;
  5336. visibility:hidden;
  5337. }
  5338. #u50362_img {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:0px;
  5342. top:0px;
  5343. width:80px;
  5344. height:38px;
  5345. }
  5346. #u50362 {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:1221px;
  5350. top:114px;
  5351. width:80px;
  5352. height:38px;
  5353. display:flex;
  5354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:12px;
  5358. color:#0089FE;
  5359. }
  5360. #u50362 .text {
  5361. position:absolute;
  5362. align-self:center;
  5363. padding:2px 2px 2px 0px;
  5364. box-sizing:border-box;
  5365. width:100%;
  5366. }
  5367. #u50362_text {
  5368. border-width:0px;
  5369. word-wrap:break-word;
  5370. text-transform:none;
  5371. visibility:hidden;
  5372. }
  5373. #u50363_img {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:0px;
  5377. top:0px;
  5378. width:60px;
  5379. height:38px;
  5380. }
  5381. #u50363 {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:1301px;
  5385. top:114px;
  5386. width:60px;
  5387. height:38px;
  5388. display:flex;
  5389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5390. font-weight:400;
  5391. font-style:normal;
  5392. font-size:12px;
  5393. color:#0089FE;
  5394. }
  5395. #u50363 .text {
  5396. position:absolute;
  5397. align-self:center;
  5398. padding:2px 2px 2px 0px;
  5399. box-sizing:border-box;
  5400. width:100%;
  5401. }
  5402. #u50363_text {
  5403. border-width:0px;
  5404. word-wrap:break-word;
  5405. text-transform:none;
  5406. visibility:hidden;
  5407. }
  5408. #u50364_img {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:0px;
  5412. top:0px;
  5413. width:80px;
  5414. height:38px;
  5415. }
  5416. #u50364 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:0px;
  5420. top:152px;
  5421. width:80px;
  5422. height:38px;
  5423. display:flex;
  5424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:12px;
  5428. color:#333333;
  5429. }
  5430. #u50364 .text {
  5431. position:absolute;
  5432. align-self:center;
  5433. padding:2px 2px 2px 0px;
  5434. box-sizing:border-box;
  5435. width:100%;
  5436. }
  5437. #u50364_text {
  5438. border-width:0px;
  5439. word-wrap:break-word;
  5440. text-transform:none;
  5441. visibility:hidden;
  5442. }
  5443. #u50365_img {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:0px;
  5447. top:0px;
  5448. width:63px;
  5449. height:38px;
  5450. }
  5451. #u50365 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:80px;
  5455. top:152px;
  5456. width:63px;
  5457. height:38px;
  5458. display:flex;
  5459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5460. font-weight:400;
  5461. font-style:normal;
  5462. font-size:12px;
  5463. color:#333333;
  5464. }
  5465. #u50365 .text {
  5466. position:absolute;
  5467. align-self:center;
  5468. padding:2px 2px 2px 0px;
  5469. box-sizing:border-box;
  5470. width:100%;
  5471. }
  5472. #u50365_text {
  5473. border-width:0px;
  5474. word-wrap:break-word;
  5475. text-transform:none;
  5476. visibility:hidden;
  5477. }
  5478. #u50366_img {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:60px;
  5484. height:38px;
  5485. }
  5486. #u50366 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:143px;
  5490. top:152px;
  5491. width:60px;
  5492. height:38px;
  5493. display:flex;
  5494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5495. font-weight:400;
  5496. font-style:normal;
  5497. font-size:12px;
  5498. color:#333333;
  5499. }
  5500. #u50366 .text {
  5501. position:absolute;
  5502. align-self:center;
  5503. padding:2px 2px 2px 0px;
  5504. box-sizing:border-box;
  5505. width:100%;
  5506. }
  5507. #u50366_text {
  5508. border-width:0px;
  5509. word-wrap:break-word;
  5510. text-transform:none;
  5511. visibility:hidden;
  5512. }
  5513. #u50367_img {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:64px;
  5519. height:38px;
  5520. }
  5521. #u50367 {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:203px;
  5525. top:152px;
  5526. width:64px;
  5527. height:38px;
  5528. display:flex;
  5529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5530. font-weight:400;
  5531. font-style:normal;
  5532. font-size:12px;
  5533. color:#333333;
  5534. }
  5535. #u50367 .text {
  5536. position:absolute;
  5537. align-self:center;
  5538. padding:2px 2px 2px 0px;
  5539. box-sizing:border-box;
  5540. width:100%;
  5541. }
  5542. #u50367_text {
  5543. border-width:0px;
  5544. word-wrap:break-word;
  5545. text-transform:none;
  5546. visibility:hidden;
  5547. }
  5548. #u50368_img {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:64px;
  5554. height:38px;
  5555. }
  5556. #u50368 {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:267px;
  5560. top:152px;
  5561. width:64px;
  5562. height:38px;
  5563. display:flex;
  5564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5565. font-weight:400;
  5566. font-style:normal;
  5567. font-size:12px;
  5568. color:#333333;
  5569. }
  5570. #u50368 .text {
  5571. position:absolute;
  5572. align-self:center;
  5573. padding:2px 2px 2px 0px;
  5574. box-sizing:border-box;
  5575. width:100%;
  5576. }
  5577. #u50368_text {
  5578. border-width:0px;
  5579. word-wrap:break-word;
  5580. text-transform:none;
  5581. visibility:hidden;
  5582. }
  5583. #u50369_img {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:0px;
  5587. top:0px;
  5588. width:60px;
  5589. height:38px;
  5590. }
  5591. #u50369 {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:331px;
  5595. top:152px;
  5596. width:60px;
  5597. height:38px;
  5598. display:flex;
  5599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5600. font-weight:400;
  5601. font-style:normal;
  5602. font-size:12px;
  5603. color:#333333;
  5604. }
  5605. #u50369 .text {
  5606. position:absolute;
  5607. align-self:center;
  5608. padding:2px 2px 2px 0px;
  5609. box-sizing:border-box;
  5610. width:100%;
  5611. }
  5612. #u50369_text {
  5613. border-width:0px;
  5614. word-wrap:break-word;
  5615. text-transform:none;
  5616. visibility:hidden;
  5617. }
  5618. #u50370_img {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:80px;
  5624. height:38px;
  5625. }
  5626. #u50370 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:391px;
  5630. top:152px;
  5631. width:80px;
  5632. height:38px;
  5633. display:flex;
  5634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:12px;
  5638. color:#333333;
  5639. }
  5640. #u50370 .text {
  5641. position:absolute;
  5642. align-self:center;
  5643. padding:2px 2px 2px 0px;
  5644. box-sizing:border-box;
  5645. width:100%;
  5646. }
  5647. #u50370_text {
  5648. border-width:0px;
  5649. word-wrap:break-word;
  5650. text-transform:none;
  5651. visibility:hidden;
  5652. }
  5653. #u50371_img {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:60px;
  5659. height:38px;
  5660. }
  5661. #u50371 {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:471px;
  5665. top:152px;
  5666. width:60px;
  5667. height:38px;
  5668. display:flex;
  5669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5670. font-weight:400;
  5671. font-style:normal;
  5672. font-size:12px;
  5673. color:#AAAAAA;
  5674. }
  5675. #u50371 .text {
  5676. position:absolute;
  5677. align-self:center;
  5678. padding:2px 2px 2px 0px;
  5679. box-sizing:border-box;
  5680. width:100%;
  5681. }
  5682. #u50371_text {
  5683. border-width:0px;
  5684. word-wrap:break-word;
  5685. text-transform:none;
  5686. visibility:hidden;
  5687. }
  5688. #u50372_img {
  5689. border-width:0px;
  5690. position:absolute;
  5691. left:0px;
  5692. top:0px;
  5693. width:70px;
  5694. height:38px;
  5695. }
  5696. #u50372 {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:531px;
  5700. top:152px;
  5701. width:70px;
  5702. height:38px;
  5703. display:flex;
  5704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5705. font-weight:400;
  5706. font-style:normal;
  5707. font-size:12px;
  5708. color:#AAAAAA;
  5709. }
  5710. #u50372 .text {
  5711. position:absolute;
  5712. align-self:center;
  5713. padding:2px 2px 2px 0px;
  5714. box-sizing:border-box;
  5715. width:100%;
  5716. }
  5717. #u50372_text {
  5718. border-width:0px;
  5719. word-wrap:break-word;
  5720. text-transform:none;
  5721. visibility:hidden;
  5722. }
  5723. #u50373_img {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:60px;
  5729. height:38px;
  5730. }
  5731. #u50373 {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:601px;
  5735. top:152px;
  5736. width:60px;
  5737. height:38px;
  5738. display:flex;
  5739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5740. font-weight:400;
  5741. font-style:normal;
  5742. font-size:12px;
  5743. color:#AAAAAA;
  5744. }
  5745. #u50373 .text {
  5746. position:absolute;
  5747. align-self:center;
  5748. padding:2px 2px 2px 0px;
  5749. box-sizing:border-box;
  5750. width:100%;
  5751. }
  5752. #u50373_text {
  5753. border-width:0px;
  5754. word-wrap:break-word;
  5755. text-transform:none;
  5756. visibility:hidden;
  5757. }
  5758. #u50374_img {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:60px;
  5764. height:38px;
  5765. }
  5766. #u50374 {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:661px;
  5770. top:152px;
  5771. width:60px;
  5772. height:38px;
  5773. display:flex;
  5774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5775. font-weight:400;
  5776. font-style:normal;
  5777. font-size:12px;
  5778. color:#AAAAAA;
  5779. }
  5780. #u50374 .text {
  5781. position:absolute;
  5782. align-self:center;
  5783. padding:2px 2px 2px 0px;
  5784. box-sizing:border-box;
  5785. width:100%;
  5786. }
  5787. #u50374_text {
  5788. border-width:0px;
  5789. word-wrap:break-word;
  5790. text-transform:none;
  5791. visibility:hidden;
  5792. }
  5793. #u50375_img {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:60px;
  5799. height:38px;
  5800. }
  5801. #u50375 {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:721px;
  5805. top:152px;
  5806. width:60px;
  5807. height:38px;
  5808. display:flex;
  5809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5810. font-weight:400;
  5811. font-style:normal;
  5812. font-size:12px;
  5813. color:#AAAAAA;
  5814. }
  5815. #u50375 .text {
  5816. position:absolute;
  5817. align-self:center;
  5818. padding:2px 2px 2px 0px;
  5819. box-sizing:border-box;
  5820. width:100%;
  5821. }
  5822. #u50375_text {
  5823. border-width:0px;
  5824. word-wrap:break-word;
  5825. text-transform:none;
  5826. visibility:hidden;
  5827. }
  5828. #u50376_img {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:80px;
  5834. height:38px;
  5835. }
  5836. #u50376 {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:781px;
  5840. top:152px;
  5841. width:80px;
  5842. height:38px;
  5843. display:flex;
  5844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5845. font-weight:400;
  5846. font-style:normal;
  5847. font-size:12px;
  5848. color:#AAAAAA;
  5849. }
  5850. #u50376 .text {
  5851. position:absolute;
  5852. align-self:center;
  5853. padding:2px 2px 2px 0px;
  5854. box-sizing:border-box;
  5855. width:100%;
  5856. }
  5857. #u50376_text {
  5858. border-width:0px;
  5859. word-wrap:break-word;
  5860. text-transform:none;
  5861. visibility:hidden;
  5862. }
  5863. #u50377_img {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:0px;
  5867. top:0px;
  5868. width:60px;
  5869. height:38px;
  5870. }
  5871. #u50377 {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:861px;
  5875. top:152px;
  5876. width:60px;
  5877. height:38px;
  5878. display:flex;
  5879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. font-size:12px;
  5883. color:#AAAAAA;
  5884. }
  5885. #u50377 .text {
  5886. position:absolute;
  5887. align-self:center;
  5888. padding:2px 2px 2px 0px;
  5889. box-sizing:border-box;
  5890. width:100%;
  5891. }
  5892. #u50377_text {
  5893. border-width:0px;
  5894. word-wrap:break-word;
  5895. text-transform:none;
  5896. visibility:hidden;
  5897. }
  5898. #u50378_img {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:60px;
  5904. height:38px;
  5905. }
  5906. #u50378 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:921px;
  5910. top:152px;
  5911. width:60px;
  5912. height:38px;
  5913. display:flex;
  5914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5915. font-weight:400;
  5916. font-style:normal;
  5917. font-size:12px;
  5918. color:#AAAAAA;
  5919. }
  5920. #u50378 .text {
  5921. position:absolute;
  5922. align-self:center;
  5923. padding:2px 2px 2px 0px;
  5924. box-sizing:border-box;
  5925. width:100%;
  5926. }
  5927. #u50378_text {
  5928. border-width:0px;
  5929. word-wrap:break-word;
  5930. text-transform:none;
  5931. visibility:hidden;
  5932. }
  5933. #u50379_img {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:0px;
  5937. top:0px;
  5938. width:60px;
  5939. height:38px;
  5940. }
  5941. #u50379 {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:981px;
  5945. top:152px;
  5946. width:60px;
  5947. height:38px;
  5948. display:flex;
  5949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5950. font-weight:400;
  5951. font-style:normal;
  5952. font-size:12px;
  5953. color:#AAAAAA;
  5954. }
  5955. #u50379 .text {
  5956. position:absolute;
  5957. align-self:center;
  5958. padding:2px 2px 2px 0px;
  5959. box-sizing:border-box;
  5960. width:100%;
  5961. }
  5962. #u50379_text {
  5963. border-width:0px;
  5964. word-wrap:break-word;
  5965. text-transform:none;
  5966. visibility:hidden;
  5967. }
  5968. #u50380_img {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:0px;
  5972. top:0px;
  5973. width:60px;
  5974. height:38px;
  5975. }
  5976. #u50380 {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:1041px;
  5980. top:152px;
  5981. width:60px;
  5982. height:38px;
  5983. display:flex;
  5984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. font-size:12px;
  5988. color:#AAAAAA;
  5989. }
  5990. #u50380 .text {
  5991. position:absolute;
  5992. align-self:center;
  5993. padding:2px 2px 2px 0px;
  5994. box-sizing:border-box;
  5995. width:100%;
  5996. }
  5997. #u50380_text {
  5998. border-width:0px;
  5999. word-wrap:break-word;
  6000. text-transform:none;
  6001. visibility:hidden;
  6002. }
  6003. #u50381_img {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:0px;
  6007. top:0px;
  6008. width:60px;
  6009. height:38px;
  6010. }
  6011. #u50381 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:1101px;
  6015. top:152px;
  6016. width:60px;
  6017. height:38px;
  6018. display:flex;
  6019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6020. font-weight:400;
  6021. font-style:normal;
  6022. font-size:12px;
  6023. color:#AAAAAA;
  6024. }
  6025. #u50381 .text {
  6026. position:absolute;
  6027. align-self:center;
  6028. padding:2px 2px 2px 0px;
  6029. box-sizing:border-box;
  6030. width:100%;
  6031. }
  6032. #u50381_text {
  6033. border-width:0px;
  6034. word-wrap:break-word;
  6035. text-transform:none;
  6036. visibility:hidden;
  6037. }
  6038. #u50382_img {
  6039. border-width:0px;
  6040. position:absolute;
  6041. left:0px;
  6042. top:0px;
  6043. width:60px;
  6044. height:38px;
  6045. }
  6046. #u50382 {
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:1161px;
  6050. top:152px;
  6051. width:60px;
  6052. height:38px;
  6053. display:flex;
  6054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6055. font-weight:400;
  6056. font-style:normal;
  6057. font-size:12px;
  6058. color:#AAAAAA;
  6059. }
  6060. #u50382 .text {
  6061. position:absolute;
  6062. align-self:center;
  6063. padding:2px 2px 2px 0px;
  6064. box-sizing:border-box;
  6065. width:100%;
  6066. }
  6067. #u50382_text {
  6068. border-width:0px;
  6069. word-wrap:break-word;
  6070. text-transform:none;
  6071. visibility:hidden;
  6072. }
  6073. #u50383_img {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:0px;
  6077. top:0px;
  6078. width:80px;
  6079. height:38px;
  6080. }
  6081. #u50383 {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:1221px;
  6085. top:152px;
  6086. width:80px;
  6087. height:38px;
  6088. display:flex;
  6089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6090. font-weight:400;
  6091. font-style:normal;
  6092. font-size:12px;
  6093. color:#AAAAAA;
  6094. }
  6095. #u50383 .text {
  6096. position:absolute;
  6097. align-self:center;
  6098. padding:2px 2px 2px 0px;
  6099. box-sizing:border-box;
  6100. width:100%;
  6101. }
  6102. #u50383_text {
  6103. border-width:0px;
  6104. word-wrap:break-word;
  6105. text-transform:none;
  6106. visibility:hidden;
  6107. }
  6108. #u50384_img {
  6109. border-width:0px;
  6110. position:absolute;
  6111. left:0px;
  6112. top:0px;
  6113. width:60px;
  6114. height:38px;
  6115. }
  6116. #u50384 {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:1301px;
  6120. top:152px;
  6121. width:60px;
  6122. height:38px;
  6123. display:flex;
  6124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6125. font-weight:400;
  6126. font-style:normal;
  6127. font-size:12px;
  6128. color:#AAAAAA;
  6129. }
  6130. #u50384 .text {
  6131. position:absolute;
  6132. align-self:center;
  6133. padding:2px 2px 2px 0px;
  6134. box-sizing:border-box;
  6135. width:100%;
  6136. }
  6137. #u50384_text {
  6138. border-width:0px;
  6139. word-wrap:break-word;
  6140. text-transform:none;
  6141. visibility:hidden;
  6142. }
  6143. #u50385_img {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:0px;
  6147. top:0px;
  6148. width:80px;
  6149. height:38px;
  6150. }
  6151. #u50385 {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:0px;
  6155. top:190px;
  6156. width:80px;
  6157. height:38px;
  6158. display:flex;
  6159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6160. font-weight:400;
  6161. font-style:normal;
  6162. font-size:12px;
  6163. color:#333333;
  6164. }
  6165. #u50385 .text {
  6166. position:absolute;
  6167. align-self:center;
  6168. padding:2px 2px 2px 0px;
  6169. box-sizing:border-box;
  6170. width:100%;
  6171. }
  6172. #u50385_text {
  6173. border-width:0px;
  6174. word-wrap:break-word;
  6175. text-transform:none;
  6176. visibility:hidden;
  6177. }
  6178. #u50386_img {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:0px;
  6182. top:0px;
  6183. width:63px;
  6184. height:38px;
  6185. }
  6186. #u50386 {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:80px;
  6190. top:190px;
  6191. width:63px;
  6192. height:38px;
  6193. display:flex;
  6194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6195. font-weight:400;
  6196. font-style:normal;
  6197. font-size:12px;
  6198. color:#333333;
  6199. }
  6200. #u50386 .text {
  6201. position:absolute;
  6202. align-self:center;
  6203. padding:2px 2px 2px 0px;
  6204. box-sizing:border-box;
  6205. width:100%;
  6206. }
  6207. #u50386_text {
  6208. border-width:0px;
  6209. word-wrap:break-word;
  6210. text-transform:none;
  6211. visibility:hidden;
  6212. }
  6213. #u50387_img {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:60px;
  6219. height:38px;
  6220. }
  6221. #u50387 {
  6222. border-width:0px;
  6223. position:absolute;
  6224. left:143px;
  6225. top:190px;
  6226. width:60px;
  6227. height:38px;
  6228. display:flex;
  6229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6230. font-weight:400;
  6231. font-style:normal;
  6232. font-size:12px;
  6233. color:#333333;
  6234. }
  6235. #u50387 .text {
  6236. position:absolute;
  6237. align-self:center;
  6238. padding:2px 2px 2px 0px;
  6239. box-sizing:border-box;
  6240. width:100%;
  6241. }
  6242. #u50387_text {
  6243. border-width:0px;
  6244. word-wrap:break-word;
  6245. text-transform:none;
  6246. visibility:hidden;
  6247. }
  6248. #u50388_img {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:64px;
  6254. height:38px;
  6255. }
  6256. #u50388 {
  6257. border-width:0px;
  6258. position:absolute;
  6259. left:203px;
  6260. top:190px;
  6261. width:64px;
  6262. height:38px;
  6263. display:flex;
  6264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6265. font-weight:400;
  6266. font-style:normal;
  6267. font-size:12px;
  6268. color:#333333;
  6269. }
  6270. #u50388 .text {
  6271. position:absolute;
  6272. align-self:center;
  6273. padding:2px 2px 2px 0px;
  6274. box-sizing:border-box;
  6275. width:100%;
  6276. }
  6277. #u50388_text {
  6278. border-width:0px;
  6279. word-wrap:break-word;
  6280. text-transform:none;
  6281. visibility:hidden;
  6282. }
  6283. #u50389_img {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:0px;
  6287. top:0px;
  6288. width:64px;
  6289. height:38px;
  6290. }
  6291. #u50389 {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:267px;
  6295. top:190px;
  6296. width:64px;
  6297. height:38px;
  6298. display:flex;
  6299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6300. font-weight:400;
  6301. font-style:normal;
  6302. font-size:12px;
  6303. color:#333333;
  6304. }
  6305. #u50389 .text {
  6306. position:absolute;
  6307. align-self:center;
  6308. padding:2px 2px 2px 0px;
  6309. box-sizing:border-box;
  6310. width:100%;
  6311. }
  6312. #u50389_text {
  6313. border-width:0px;
  6314. word-wrap:break-word;
  6315. text-transform:none;
  6316. visibility:hidden;
  6317. }
  6318. #u50390_img {
  6319. border-width:0px;
  6320. position:absolute;
  6321. left:0px;
  6322. top:0px;
  6323. width:60px;
  6324. height:38px;
  6325. }
  6326. #u50390 {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:331px;
  6330. top:190px;
  6331. width:60px;
  6332. height:38px;
  6333. display:flex;
  6334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6335. font-weight:400;
  6336. font-style:normal;
  6337. font-size:12px;
  6338. color:#333333;
  6339. }
  6340. #u50390 .text {
  6341. position:absolute;
  6342. align-self:center;
  6343. padding:2px 2px 2px 0px;
  6344. box-sizing:border-box;
  6345. width:100%;
  6346. }
  6347. #u50390_text {
  6348. border-width:0px;
  6349. word-wrap:break-word;
  6350. text-transform:none;
  6351. visibility:hidden;
  6352. }
  6353. #u50391_img {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:80px;
  6359. height:38px;
  6360. }
  6361. #u50391 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:391px;
  6365. top:190px;
  6366. width:80px;
  6367. height:38px;
  6368. display:flex;
  6369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6370. font-weight:400;
  6371. font-style:normal;
  6372. font-size:12px;
  6373. color:#333333;
  6374. }
  6375. #u50391 .text {
  6376. position:absolute;
  6377. align-self:center;
  6378. padding:2px 2px 2px 0px;
  6379. box-sizing:border-box;
  6380. width:100%;
  6381. }
  6382. #u50391_text {
  6383. border-width:0px;
  6384. word-wrap:break-word;
  6385. text-transform:none;
  6386. visibility:hidden;
  6387. }
  6388. #u50392_img {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:0px;
  6392. top:0px;
  6393. width:60px;
  6394. height:38px;
  6395. }
  6396. #u50392 {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:471px;
  6400. top:190px;
  6401. width:60px;
  6402. height:38px;
  6403. display:flex;
  6404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:12px;
  6408. color:#AAAAAA;
  6409. }
  6410. #u50392 .text {
  6411. position:absolute;
  6412. align-self:center;
  6413. padding:2px 2px 2px 0px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u50392_text {
  6418. border-width:0px;
  6419. word-wrap:break-word;
  6420. text-transform:none;
  6421. visibility:hidden;
  6422. }
  6423. #u50393_img {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:70px;
  6429. height:38px;
  6430. }
  6431. #u50393 {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:531px;
  6435. top:190px;
  6436. width:70px;
  6437. height:38px;
  6438. display:flex;
  6439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6440. font-weight:400;
  6441. font-style:normal;
  6442. font-size:12px;
  6443. color:#AAAAAA;
  6444. }
  6445. #u50393 .text {
  6446. position:absolute;
  6447. align-self:center;
  6448. padding:2px 2px 2px 0px;
  6449. box-sizing:border-box;
  6450. width:100%;
  6451. }
  6452. #u50393_text {
  6453. border-width:0px;
  6454. word-wrap:break-word;
  6455. text-transform:none;
  6456. visibility:hidden;
  6457. }
  6458. #u50394_img {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:0px;
  6462. top:0px;
  6463. width:60px;
  6464. height:38px;
  6465. }
  6466. #u50394 {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:601px;
  6470. top:190px;
  6471. width:60px;
  6472. height:38px;
  6473. display:flex;
  6474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6475. font-weight:400;
  6476. font-style:normal;
  6477. font-size:12px;
  6478. color:#AAAAAA;
  6479. }
  6480. #u50394 .text {
  6481. position:absolute;
  6482. align-self:center;
  6483. padding:2px 2px 2px 0px;
  6484. box-sizing:border-box;
  6485. width:100%;
  6486. }
  6487. #u50394_text {
  6488. border-width:0px;
  6489. word-wrap:break-word;
  6490. text-transform:none;
  6491. visibility:hidden;
  6492. }
  6493. #u50395_img {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:60px;
  6499. height:38px;
  6500. }
  6501. #u50395 {
  6502. border-width:0px;
  6503. position:absolute;
  6504. left:661px;
  6505. top:190px;
  6506. width:60px;
  6507. height:38px;
  6508. display:flex;
  6509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6510. font-weight:400;
  6511. font-style:normal;
  6512. font-size:12px;
  6513. color:#AAAAAA;
  6514. }
  6515. #u50395 .text {
  6516. position:absolute;
  6517. align-self:center;
  6518. padding:2px 2px 2px 0px;
  6519. box-sizing:border-box;
  6520. width:100%;
  6521. }
  6522. #u50395_text {
  6523. border-width:0px;
  6524. word-wrap:break-word;
  6525. text-transform:none;
  6526. visibility:hidden;
  6527. }
  6528. #u50396_img {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:60px;
  6534. height:38px;
  6535. }
  6536. #u50396 {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:721px;
  6540. top:190px;
  6541. width:60px;
  6542. height:38px;
  6543. display:flex;
  6544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6545. font-weight:400;
  6546. font-style:normal;
  6547. font-size:12px;
  6548. color:#AAAAAA;
  6549. }
  6550. #u50396 .text {
  6551. position:absolute;
  6552. align-self:center;
  6553. padding:2px 2px 2px 0px;
  6554. box-sizing:border-box;
  6555. width:100%;
  6556. }
  6557. #u50396_text {
  6558. border-width:0px;
  6559. word-wrap:break-word;
  6560. text-transform:none;
  6561. visibility:hidden;
  6562. }
  6563. #u50397_img {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:0px;
  6567. top:0px;
  6568. width:80px;
  6569. height:38px;
  6570. }
  6571. #u50397 {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:781px;
  6575. top:190px;
  6576. width:80px;
  6577. height:38px;
  6578. display:flex;
  6579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6580. font-weight:400;
  6581. font-style:normal;
  6582. font-size:12px;
  6583. color:#AAAAAA;
  6584. }
  6585. #u50397 .text {
  6586. position:absolute;
  6587. align-self:center;
  6588. padding:2px 2px 2px 0px;
  6589. box-sizing:border-box;
  6590. width:100%;
  6591. }
  6592. #u50397_text {
  6593. border-width:0px;
  6594. word-wrap:break-word;
  6595. text-transform:none;
  6596. visibility:hidden;
  6597. }
  6598. #u50398_img {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:0px;
  6602. top:0px;
  6603. width:60px;
  6604. height:38px;
  6605. }
  6606. #u50398 {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:861px;
  6610. top:190px;
  6611. width:60px;
  6612. height:38px;
  6613. display:flex;
  6614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6615. font-weight:400;
  6616. font-style:normal;
  6617. font-size:12px;
  6618. color:#AAAAAA;
  6619. }
  6620. #u50398 .text {
  6621. position:absolute;
  6622. align-self:center;
  6623. padding:2px 2px 2px 0px;
  6624. box-sizing:border-box;
  6625. width:100%;
  6626. }
  6627. #u50398_text {
  6628. border-width:0px;
  6629. word-wrap:break-word;
  6630. text-transform:none;
  6631. visibility:hidden;
  6632. }
  6633. #u50399_img {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:0px;
  6637. top:0px;
  6638. width:60px;
  6639. height:38px;
  6640. }
  6641. #u50399 {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:921px;
  6645. top:190px;
  6646. width:60px;
  6647. height:38px;
  6648. display:flex;
  6649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6650. font-weight:400;
  6651. font-style:normal;
  6652. font-size:12px;
  6653. color:#AAAAAA;
  6654. }
  6655. #u50399 .text {
  6656. position:absolute;
  6657. align-self:center;
  6658. padding:2px 2px 2px 0px;
  6659. box-sizing:border-box;
  6660. width:100%;
  6661. }
  6662. #u50399_text {
  6663. border-width:0px;
  6664. word-wrap:break-word;
  6665. text-transform:none;
  6666. visibility:hidden;
  6667. }
  6668. #u50400_img {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:0px;
  6672. top:0px;
  6673. width:60px;
  6674. height:38px;
  6675. }
  6676. #u50400 {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:981px;
  6680. top:190px;
  6681. width:60px;
  6682. height:38px;
  6683. display:flex;
  6684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6685. font-weight:400;
  6686. font-style:normal;
  6687. font-size:12px;
  6688. color:#AAAAAA;
  6689. }
  6690. #u50400 .text {
  6691. position:absolute;
  6692. align-self:center;
  6693. padding:2px 2px 2px 0px;
  6694. box-sizing:border-box;
  6695. width:100%;
  6696. }
  6697. #u50400_text {
  6698. border-width:0px;
  6699. word-wrap:break-word;
  6700. text-transform:none;
  6701. visibility:hidden;
  6702. }
  6703. #u50401_img {
  6704. border-width:0px;
  6705. position:absolute;
  6706. left:0px;
  6707. top:0px;
  6708. width:60px;
  6709. height:38px;
  6710. }
  6711. #u50401 {
  6712. border-width:0px;
  6713. position:absolute;
  6714. left:1041px;
  6715. top:190px;
  6716. width:60px;
  6717. height:38px;
  6718. display:flex;
  6719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6720. font-weight:400;
  6721. font-style:normal;
  6722. font-size:12px;
  6723. color:#AAAAAA;
  6724. }
  6725. #u50401 .text {
  6726. position:absolute;
  6727. align-self:center;
  6728. padding:2px 2px 2px 0px;
  6729. box-sizing:border-box;
  6730. width:100%;
  6731. }
  6732. #u50401_text {
  6733. border-width:0px;
  6734. word-wrap:break-word;
  6735. text-transform:none;
  6736. visibility:hidden;
  6737. }
  6738. #u50402_img {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:0px;
  6742. top:0px;
  6743. width:60px;
  6744. height:38px;
  6745. }
  6746. #u50402 {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:1101px;
  6750. top:190px;
  6751. width:60px;
  6752. height:38px;
  6753. display:flex;
  6754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6755. font-weight:400;
  6756. font-style:normal;
  6757. font-size:12px;
  6758. color:#AAAAAA;
  6759. }
  6760. #u50402 .text {
  6761. position:absolute;
  6762. align-self:center;
  6763. padding:2px 2px 2px 0px;
  6764. box-sizing:border-box;
  6765. width:100%;
  6766. }
  6767. #u50402_text {
  6768. border-width:0px;
  6769. word-wrap:break-word;
  6770. text-transform:none;
  6771. visibility:hidden;
  6772. }
  6773. #u50403_img {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:0px;
  6777. top:0px;
  6778. width:60px;
  6779. height:38px;
  6780. }
  6781. #u50403 {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:1161px;
  6785. top:190px;
  6786. width:60px;
  6787. height:38px;
  6788. display:flex;
  6789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6790. font-weight:400;
  6791. font-style:normal;
  6792. font-size:12px;
  6793. color:#AAAAAA;
  6794. }
  6795. #u50403 .text {
  6796. position:absolute;
  6797. align-self:center;
  6798. padding:2px 2px 2px 0px;
  6799. box-sizing:border-box;
  6800. width:100%;
  6801. }
  6802. #u50403_text {
  6803. border-width:0px;
  6804. word-wrap:break-word;
  6805. text-transform:none;
  6806. visibility:hidden;
  6807. }
  6808. #u50404_img {
  6809. border-width:0px;
  6810. position:absolute;
  6811. left:0px;
  6812. top:0px;
  6813. width:80px;
  6814. height:38px;
  6815. }
  6816. #u50404 {
  6817. border-width:0px;
  6818. position:absolute;
  6819. left:1221px;
  6820. top:190px;
  6821. width:80px;
  6822. height:38px;
  6823. display:flex;
  6824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6825. font-weight:400;
  6826. font-style:normal;
  6827. font-size:12px;
  6828. color:#AAAAAA;
  6829. }
  6830. #u50404 .text {
  6831. position:absolute;
  6832. align-self:center;
  6833. padding:2px 2px 2px 0px;
  6834. box-sizing:border-box;
  6835. width:100%;
  6836. }
  6837. #u50404_text {
  6838. border-width:0px;
  6839. word-wrap:break-word;
  6840. text-transform:none;
  6841. visibility:hidden;
  6842. }
  6843. #u50405_img {
  6844. border-width:0px;
  6845. position:absolute;
  6846. left:0px;
  6847. top:0px;
  6848. width:60px;
  6849. height:38px;
  6850. }
  6851. #u50405 {
  6852. border-width:0px;
  6853. position:absolute;
  6854. left:1301px;
  6855. top:190px;
  6856. width:60px;
  6857. height:38px;
  6858. display:flex;
  6859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6860. font-weight:400;
  6861. font-style:normal;
  6862. font-size:12px;
  6863. color:#AAAAAA;
  6864. }
  6865. #u50405 .text {
  6866. position:absolute;
  6867. align-self:center;
  6868. padding:2px 2px 2px 0px;
  6869. box-sizing:border-box;
  6870. width:100%;
  6871. }
  6872. #u50405_text {
  6873. border-width:0px;
  6874. word-wrap:break-word;
  6875. text-transform:none;
  6876. visibility:hidden;
  6877. }
  6878. #u50406_img {
  6879. border-width:0px;
  6880. position:absolute;
  6881. left:0px;
  6882. top:0px;
  6883. width:80px;
  6884. height:38px;
  6885. }
  6886. #u50406 {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:0px;
  6890. top:228px;
  6891. width:80px;
  6892. height:38px;
  6893. display:flex;
  6894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6895. font-weight:400;
  6896. font-style:normal;
  6897. font-size:12px;
  6898. color:#333333;
  6899. }
  6900. #u50406 .text {
  6901. position:absolute;
  6902. align-self:center;
  6903. padding:2px 2px 2px 0px;
  6904. box-sizing:border-box;
  6905. width:100%;
  6906. }
  6907. #u50406_text {
  6908. border-width:0px;
  6909. word-wrap:break-word;
  6910. text-transform:none;
  6911. visibility:hidden;
  6912. }
  6913. #u50407_img {
  6914. border-width:0px;
  6915. position:absolute;
  6916. left:0px;
  6917. top:0px;
  6918. width:63px;
  6919. height:38px;
  6920. }
  6921. #u50407 {
  6922. border-width:0px;
  6923. position:absolute;
  6924. left:80px;
  6925. top:228px;
  6926. width:63px;
  6927. height:38px;
  6928. display:flex;
  6929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6930. font-weight:400;
  6931. font-style:normal;
  6932. font-size:12px;
  6933. color:#333333;
  6934. }
  6935. #u50407 .text {
  6936. position:absolute;
  6937. align-self:center;
  6938. padding:2px 2px 2px 0px;
  6939. box-sizing:border-box;
  6940. width:100%;
  6941. }
  6942. #u50407_text {
  6943. border-width:0px;
  6944. word-wrap:break-word;
  6945. text-transform:none;
  6946. visibility:hidden;
  6947. }
  6948. #u50408_img {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:0px;
  6952. top:0px;
  6953. width:60px;
  6954. height:38px;
  6955. }
  6956. #u50408 {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:143px;
  6960. top:228px;
  6961. width:60px;
  6962. height:38px;
  6963. display:flex;
  6964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6965. font-weight:400;
  6966. font-style:normal;
  6967. font-size:12px;
  6968. color:#333333;
  6969. }
  6970. #u50408 .text {
  6971. position:absolute;
  6972. align-self:center;
  6973. padding:2px 2px 2px 0px;
  6974. box-sizing:border-box;
  6975. width:100%;
  6976. }
  6977. #u50408_text {
  6978. border-width:0px;
  6979. word-wrap:break-word;
  6980. text-transform:none;
  6981. visibility:hidden;
  6982. }
  6983. #u50409_img {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:0px;
  6987. top:0px;
  6988. width:64px;
  6989. height:38px;
  6990. }
  6991. #u50409 {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:203px;
  6995. top:228px;
  6996. width:64px;
  6997. height:38px;
  6998. display:flex;
  6999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7000. font-weight:400;
  7001. font-style:normal;
  7002. font-size:12px;
  7003. color:#333333;
  7004. }
  7005. #u50409 .text {
  7006. position:absolute;
  7007. align-self:center;
  7008. padding:2px 2px 2px 0px;
  7009. box-sizing:border-box;
  7010. width:100%;
  7011. }
  7012. #u50409_text {
  7013. border-width:0px;
  7014. word-wrap:break-word;
  7015. text-transform:none;
  7016. visibility:hidden;
  7017. }
  7018. #u50410_img {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:0px;
  7022. top:0px;
  7023. width:64px;
  7024. height:38px;
  7025. }
  7026. #u50410 {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:267px;
  7030. top:228px;
  7031. width:64px;
  7032. height:38px;
  7033. display:flex;
  7034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7035. font-weight:400;
  7036. font-style:normal;
  7037. font-size:12px;
  7038. color:#333333;
  7039. }
  7040. #u50410 .text {
  7041. position:absolute;
  7042. align-self:center;
  7043. padding:2px 2px 2px 0px;
  7044. box-sizing:border-box;
  7045. width:100%;
  7046. }
  7047. #u50410_text {
  7048. border-width:0px;
  7049. word-wrap:break-word;
  7050. text-transform:none;
  7051. visibility:hidden;
  7052. }
  7053. #u50411_img {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:60px;
  7059. height:38px;
  7060. }
  7061. #u50411 {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:331px;
  7065. top:228px;
  7066. width:60px;
  7067. height:38px;
  7068. display:flex;
  7069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7070. font-weight:400;
  7071. font-style:normal;
  7072. font-size:12px;
  7073. color:#333333;
  7074. }
  7075. #u50411 .text {
  7076. position:absolute;
  7077. align-self:center;
  7078. padding:2px 2px 2px 0px;
  7079. box-sizing:border-box;
  7080. width:100%;
  7081. }
  7082. #u50411_text {
  7083. border-width:0px;
  7084. word-wrap:break-word;
  7085. text-transform:none;
  7086. visibility:hidden;
  7087. }
  7088. #u50412_img {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:0px;
  7092. top:0px;
  7093. width:80px;
  7094. height:38px;
  7095. }
  7096. #u50412 {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:391px;
  7100. top:228px;
  7101. width:80px;
  7102. height:38px;
  7103. display:flex;
  7104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7105. font-weight:400;
  7106. font-style:normal;
  7107. font-size:12px;
  7108. color:#333333;
  7109. }
  7110. #u50412 .text {
  7111. position:absolute;
  7112. align-self:center;
  7113. padding:2px 2px 2px 0px;
  7114. box-sizing:border-box;
  7115. width:100%;
  7116. }
  7117. #u50412_text {
  7118. border-width:0px;
  7119. word-wrap:break-word;
  7120. text-transform:none;
  7121. visibility:hidden;
  7122. }
  7123. #u50413_img {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:0px;
  7127. top:0px;
  7128. width:60px;
  7129. height:38px;
  7130. }
  7131. #u50413 {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:471px;
  7135. top:228px;
  7136. width:60px;
  7137. height:38px;
  7138. display:flex;
  7139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7140. font-weight:400;
  7141. font-style:normal;
  7142. font-size:12px;
  7143. color:#333333;
  7144. }
  7145. #u50413 .text {
  7146. position:absolute;
  7147. align-self:center;
  7148. padding:2px 2px 2px 0px;
  7149. box-sizing:border-box;
  7150. width:100%;
  7151. }
  7152. #u50413_text {
  7153. border-width:0px;
  7154. word-wrap:break-word;
  7155. text-transform:none;
  7156. visibility:hidden;
  7157. }
  7158. #u50414_img {
  7159. border-width:0px;
  7160. position:absolute;
  7161. left:0px;
  7162. top:0px;
  7163. width:70px;
  7164. height:38px;
  7165. }
  7166. #u50414 {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:531px;
  7170. top:228px;
  7171. width:70px;
  7172. height:38px;
  7173. display:flex;
  7174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7175. font-weight:400;
  7176. font-style:normal;
  7177. font-size:12px;
  7178. color:#333333;
  7179. }
  7180. #u50414 .text {
  7181. position:absolute;
  7182. align-self:center;
  7183. padding:2px 2px 2px 0px;
  7184. box-sizing:border-box;
  7185. width:100%;
  7186. }
  7187. #u50414_text {
  7188. border-width:0px;
  7189. word-wrap:break-word;
  7190. text-transform:none;
  7191. visibility:hidden;
  7192. }
  7193. #u50415_img {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:60px;
  7199. height:38px;
  7200. }
  7201. #u50415 {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:601px;
  7205. top:228px;
  7206. width:60px;
  7207. height:38px;
  7208. display:flex;
  7209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7210. font-weight:400;
  7211. font-style:normal;
  7212. font-size:12px;
  7213. color:#333333;
  7214. }
  7215. #u50415 .text {
  7216. position:absolute;
  7217. align-self:center;
  7218. padding:2px 2px 2px 0px;
  7219. box-sizing:border-box;
  7220. width:100%;
  7221. }
  7222. #u50415_text {
  7223. border-width:0px;
  7224. word-wrap:break-word;
  7225. text-transform:none;
  7226. visibility:hidden;
  7227. }
  7228. #u50416_img {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:0px;
  7232. top:0px;
  7233. width:60px;
  7234. height:38px;
  7235. }
  7236. #u50416 {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:661px;
  7240. top:228px;
  7241. width:60px;
  7242. height:38px;
  7243. display:flex;
  7244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7245. font-weight:400;
  7246. font-style:normal;
  7247. font-size:12px;
  7248. color:#333333;
  7249. }
  7250. #u50416 .text {
  7251. position:absolute;
  7252. align-self:center;
  7253. padding:2px 2px 2px 0px;
  7254. box-sizing:border-box;
  7255. width:100%;
  7256. }
  7257. #u50416_text {
  7258. border-width:0px;
  7259. word-wrap:break-word;
  7260. text-transform:none;
  7261. visibility:hidden;
  7262. }
  7263. #u50417_img {
  7264. border-width:0px;
  7265. position:absolute;
  7266. left:0px;
  7267. top:0px;
  7268. width:60px;
  7269. height:38px;
  7270. }
  7271. #u50417 {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:721px;
  7275. top:228px;
  7276. width:60px;
  7277. height:38px;
  7278. display:flex;
  7279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7280. font-weight:400;
  7281. font-style:normal;
  7282. font-size:12px;
  7283. color:#333333;
  7284. }
  7285. #u50417 .text {
  7286. position:absolute;
  7287. align-self:center;
  7288. padding:2px 2px 2px 0px;
  7289. box-sizing:border-box;
  7290. width:100%;
  7291. }
  7292. #u50417_text {
  7293. border-width:0px;
  7294. word-wrap:break-word;
  7295. text-transform:none;
  7296. visibility:hidden;
  7297. }
  7298. #u50418_img {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:0px;
  7302. top:0px;
  7303. width:80px;
  7304. height:38px;
  7305. }
  7306. #u50418 {
  7307. border-width:0px;
  7308. position:absolute;
  7309. left:781px;
  7310. top:228px;
  7311. width:80px;
  7312. height:38px;
  7313. display:flex;
  7314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7315. font-weight:400;
  7316. font-style:normal;
  7317. font-size:12px;
  7318. color:#333333;
  7319. }
  7320. #u50418 .text {
  7321. position:absolute;
  7322. align-self:center;
  7323. padding:2px 2px 2px 0px;
  7324. box-sizing:border-box;
  7325. width:100%;
  7326. }
  7327. #u50418_text {
  7328. border-width:0px;
  7329. word-wrap:break-word;
  7330. text-transform:none;
  7331. visibility:hidden;
  7332. }
  7333. #u50419_img {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:0px;
  7337. top:0px;
  7338. width:60px;
  7339. height:38px;
  7340. }
  7341. #u50419 {
  7342. border-width:0px;
  7343. position:absolute;
  7344. left:861px;
  7345. top:228px;
  7346. width:60px;
  7347. height:38px;
  7348. display:flex;
  7349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7350. font-weight:400;
  7351. font-style:normal;
  7352. font-size:12px;
  7353. color:#333333;
  7354. }
  7355. #u50419 .text {
  7356. position:absolute;
  7357. align-self:center;
  7358. padding:2px 2px 2px 0px;
  7359. box-sizing:border-box;
  7360. width:100%;
  7361. }
  7362. #u50419_text {
  7363. border-width:0px;
  7364. word-wrap:break-word;
  7365. text-transform:none;
  7366. visibility:hidden;
  7367. }
  7368. #u50420_img {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:0px;
  7372. top:0px;
  7373. width:60px;
  7374. height:38px;
  7375. }
  7376. #u50420 {
  7377. border-width:0px;
  7378. position:absolute;
  7379. left:921px;
  7380. top:228px;
  7381. width:60px;
  7382. height:38px;
  7383. display:flex;
  7384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7385. font-weight:400;
  7386. font-style:normal;
  7387. font-size:12px;
  7388. color:#333333;
  7389. }
  7390. #u50420 .text {
  7391. position:absolute;
  7392. align-self:center;
  7393. padding:2px 2px 2px 0px;
  7394. box-sizing:border-box;
  7395. width:100%;
  7396. }
  7397. #u50420_text {
  7398. border-width:0px;
  7399. word-wrap:break-word;
  7400. text-transform:none;
  7401. visibility:hidden;
  7402. }
  7403. #u50421_img {
  7404. border-width:0px;
  7405. position:absolute;
  7406. left:0px;
  7407. top:0px;
  7408. width:60px;
  7409. height:38px;
  7410. }
  7411. #u50421 {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:981px;
  7415. top:228px;
  7416. width:60px;
  7417. height:38px;
  7418. display:flex;
  7419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7420. font-weight:400;
  7421. font-style:normal;
  7422. font-size:12px;
  7423. color:#333333;
  7424. }
  7425. #u50421 .text {
  7426. position:absolute;
  7427. align-self:center;
  7428. padding:2px 2px 2px 0px;
  7429. box-sizing:border-box;
  7430. width:100%;
  7431. }
  7432. #u50421_text {
  7433. border-width:0px;
  7434. word-wrap:break-word;
  7435. text-transform:none;
  7436. visibility:hidden;
  7437. }
  7438. #u50422_img {
  7439. border-width:0px;
  7440. position:absolute;
  7441. left:0px;
  7442. top:0px;
  7443. width:60px;
  7444. height:38px;
  7445. }
  7446. #u50422 {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:1041px;
  7450. top:228px;
  7451. width:60px;
  7452. height:38px;
  7453. display:flex;
  7454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:12px;
  7458. color:#333333;
  7459. }
  7460. #u50422 .text {
  7461. position:absolute;
  7462. align-self:center;
  7463. padding:2px 2px 2px 0px;
  7464. box-sizing:border-box;
  7465. width:100%;
  7466. }
  7467. #u50422_text {
  7468. border-width:0px;
  7469. word-wrap:break-word;
  7470. text-transform:none;
  7471. visibility:hidden;
  7472. }
  7473. #u50423_img {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:0px;
  7477. top:0px;
  7478. width:60px;
  7479. height:38px;
  7480. }
  7481. #u50423 {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:1101px;
  7485. top:228px;
  7486. width:60px;
  7487. height:38px;
  7488. display:flex;
  7489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7490. font-weight:400;
  7491. font-style:normal;
  7492. font-size:12px;
  7493. color:#333333;
  7494. }
  7495. #u50423 .text {
  7496. position:absolute;
  7497. align-self:center;
  7498. padding:2px 2px 2px 0px;
  7499. box-sizing:border-box;
  7500. width:100%;
  7501. }
  7502. #u50423_text {
  7503. border-width:0px;
  7504. word-wrap:break-word;
  7505. text-transform:none;
  7506. visibility:hidden;
  7507. }
  7508. #u50424_img {
  7509. border-width:0px;
  7510. position:absolute;
  7511. left:0px;
  7512. top:0px;
  7513. width:60px;
  7514. height:38px;
  7515. }
  7516. #u50424 {
  7517. border-width:0px;
  7518. position:absolute;
  7519. left:1161px;
  7520. top:228px;
  7521. width:60px;
  7522. height:38px;
  7523. display:flex;
  7524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7525. font-weight:400;
  7526. font-style:normal;
  7527. font-size:12px;
  7528. color:#333333;
  7529. }
  7530. #u50424 .text {
  7531. position:absolute;
  7532. align-self:center;
  7533. padding:2px 2px 2px 0px;
  7534. box-sizing:border-box;
  7535. width:100%;
  7536. }
  7537. #u50424_text {
  7538. border-width:0px;
  7539. word-wrap:break-word;
  7540. text-transform:none;
  7541. visibility:hidden;
  7542. }
  7543. #u50425_img {
  7544. border-width:0px;
  7545. position:absolute;
  7546. left:0px;
  7547. top:0px;
  7548. width:80px;
  7549. height:38px;
  7550. }
  7551. #u50425 {
  7552. border-width:0px;
  7553. position:absolute;
  7554. left:1221px;
  7555. top:228px;
  7556. width:80px;
  7557. height:38px;
  7558. display:flex;
  7559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7560. font-weight:400;
  7561. font-style:normal;
  7562. font-size:12px;
  7563. color:#333333;
  7564. }
  7565. #u50425 .text {
  7566. position:absolute;
  7567. align-self:center;
  7568. padding:2px 2px 2px 0px;
  7569. box-sizing:border-box;
  7570. width:100%;
  7571. }
  7572. #u50425_text {
  7573. border-width:0px;
  7574. word-wrap:break-word;
  7575. text-transform:none;
  7576. visibility:hidden;
  7577. }
  7578. #u50426_img {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:60px;
  7584. height:38px;
  7585. }
  7586. #u50426 {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:1301px;
  7590. top:228px;
  7591. width:60px;
  7592. height:38px;
  7593. display:flex;
  7594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7595. font-weight:400;
  7596. font-style:normal;
  7597. font-size:12px;
  7598. color:#333333;
  7599. }
  7600. #u50426 .text {
  7601. position:absolute;
  7602. align-self:center;
  7603. padding:2px 2px 2px 0px;
  7604. box-sizing:border-box;
  7605. width:100%;
  7606. }
  7607. #u50426_text {
  7608. border-width:0px;
  7609. word-wrap:break-word;
  7610. text-transform:none;
  7611. visibility:hidden;
  7612. }
  7613. #u50427_img {
  7614. border-width:0px;
  7615. position:absolute;
  7616. left:0px;
  7617. top:0px;
  7618. width:80px;
  7619. height:38px;
  7620. }
  7621. #u50427 {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:0px;
  7625. top:266px;
  7626. width:80px;
  7627. height:38px;
  7628. display:flex;
  7629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7630. font-weight:400;
  7631. font-style:normal;
  7632. font-size:12px;
  7633. color:#333333;
  7634. }
  7635. #u50427 .text {
  7636. position:absolute;
  7637. align-self:center;
  7638. padding:2px 2px 2px 0px;
  7639. box-sizing:border-box;
  7640. width:100%;
  7641. }
  7642. #u50427_text {
  7643. border-width:0px;
  7644. word-wrap:break-word;
  7645. text-transform:none;
  7646. visibility:hidden;
  7647. }
  7648. #u50428_img {
  7649. border-width:0px;
  7650. position:absolute;
  7651. left:0px;
  7652. top:0px;
  7653. width:63px;
  7654. height:38px;
  7655. }
  7656. #u50428 {
  7657. border-width:0px;
  7658. position:absolute;
  7659. left:80px;
  7660. top:266px;
  7661. width:63px;
  7662. height:38px;
  7663. display:flex;
  7664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7665. font-weight:400;
  7666. font-style:normal;
  7667. font-size:12px;
  7668. color:#333333;
  7669. }
  7670. #u50428 .text {
  7671. position:absolute;
  7672. align-self:center;
  7673. padding:2px 2px 2px 0px;
  7674. box-sizing:border-box;
  7675. width:100%;
  7676. }
  7677. #u50428_text {
  7678. border-width:0px;
  7679. word-wrap:break-word;
  7680. text-transform:none;
  7681. visibility:hidden;
  7682. }
  7683. #u50429_img {
  7684. border-width:0px;
  7685. position:absolute;
  7686. left:0px;
  7687. top:0px;
  7688. width:60px;
  7689. height:38px;
  7690. }
  7691. #u50429 {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:143px;
  7695. top:266px;
  7696. width:60px;
  7697. height:38px;
  7698. display:flex;
  7699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7700. font-weight:400;
  7701. font-style:normal;
  7702. font-size:12px;
  7703. color:#333333;
  7704. }
  7705. #u50429 .text {
  7706. position:absolute;
  7707. align-self:center;
  7708. padding:2px 2px 2px 0px;
  7709. box-sizing:border-box;
  7710. width:100%;
  7711. }
  7712. #u50429_text {
  7713. border-width:0px;
  7714. word-wrap:break-word;
  7715. text-transform:none;
  7716. visibility:hidden;
  7717. }
  7718. #u50430_img {
  7719. border-width:0px;
  7720. position:absolute;
  7721. left:0px;
  7722. top:0px;
  7723. width:64px;
  7724. height:38px;
  7725. }
  7726. #u50430 {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:203px;
  7730. top:266px;
  7731. width:64px;
  7732. height:38px;
  7733. display:flex;
  7734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7735. font-weight:400;
  7736. font-style:normal;
  7737. font-size:12px;
  7738. color:#333333;
  7739. }
  7740. #u50430 .text {
  7741. position:absolute;
  7742. align-self:center;
  7743. padding:2px 2px 2px 0px;
  7744. box-sizing:border-box;
  7745. width:100%;
  7746. }
  7747. #u50430_text {
  7748. border-width:0px;
  7749. word-wrap:break-word;
  7750. text-transform:none;
  7751. visibility:hidden;
  7752. }
  7753. #u50431_img {
  7754. border-width:0px;
  7755. position:absolute;
  7756. left:0px;
  7757. top:0px;
  7758. width:64px;
  7759. height:38px;
  7760. }
  7761. #u50431 {
  7762. border-width:0px;
  7763. position:absolute;
  7764. left:267px;
  7765. top:266px;
  7766. width:64px;
  7767. height:38px;
  7768. display:flex;
  7769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7770. font-weight:400;
  7771. font-style:normal;
  7772. font-size:12px;
  7773. color:#333333;
  7774. }
  7775. #u50431 .text {
  7776. position:absolute;
  7777. align-self:center;
  7778. padding:2px 2px 2px 0px;
  7779. box-sizing:border-box;
  7780. width:100%;
  7781. }
  7782. #u50431_text {
  7783. border-width:0px;
  7784. word-wrap:break-word;
  7785. text-transform:none;
  7786. visibility:hidden;
  7787. }
  7788. #u50432_img {
  7789. border-width:0px;
  7790. position:absolute;
  7791. left:0px;
  7792. top:0px;
  7793. width:60px;
  7794. height:38px;
  7795. }
  7796. #u50432 {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:331px;
  7800. top:266px;
  7801. width:60px;
  7802. height:38px;
  7803. display:flex;
  7804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7805. font-weight:400;
  7806. font-style:normal;
  7807. font-size:12px;
  7808. color:#333333;
  7809. }
  7810. #u50432 .text {
  7811. position:absolute;
  7812. align-self:center;
  7813. padding:2px 2px 2px 0px;
  7814. box-sizing:border-box;
  7815. width:100%;
  7816. }
  7817. #u50432_text {
  7818. border-width:0px;
  7819. word-wrap:break-word;
  7820. text-transform:none;
  7821. visibility:hidden;
  7822. }
  7823. #u50433_img {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:0px;
  7827. top:0px;
  7828. width:80px;
  7829. height:38px;
  7830. }
  7831. #u50433 {
  7832. border-width:0px;
  7833. position:absolute;
  7834. left:391px;
  7835. top:266px;
  7836. width:80px;
  7837. height:38px;
  7838. display:flex;
  7839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7840. font-weight:400;
  7841. font-style:normal;
  7842. font-size:12px;
  7843. color:#333333;
  7844. }
  7845. #u50433 .text {
  7846. position:absolute;
  7847. align-self:center;
  7848. padding:2px 2px 2px 0px;
  7849. box-sizing:border-box;
  7850. width:100%;
  7851. }
  7852. #u50433_text {
  7853. border-width:0px;
  7854. word-wrap:break-word;
  7855. text-transform:none;
  7856. visibility:hidden;
  7857. }
  7858. #u50434_img {
  7859. border-width:0px;
  7860. position:absolute;
  7861. left:0px;
  7862. top:0px;
  7863. width:60px;
  7864. height:38px;
  7865. }
  7866. #u50434 {
  7867. border-width:0px;
  7868. position:absolute;
  7869. left:471px;
  7870. top:266px;
  7871. width:60px;
  7872. height:38px;
  7873. display:flex;
  7874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7875. font-weight:400;
  7876. font-style:normal;
  7877. font-size:12px;
  7878. color:#333333;
  7879. }
  7880. #u50434 .text {
  7881. position:absolute;
  7882. align-self:center;
  7883. padding:2px 2px 2px 0px;
  7884. box-sizing:border-box;
  7885. width:100%;
  7886. }
  7887. #u50434_text {
  7888. border-width:0px;
  7889. word-wrap:break-word;
  7890. text-transform:none;
  7891. visibility:hidden;
  7892. }
  7893. #u50435_img {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:0px;
  7897. top:0px;
  7898. width:70px;
  7899. height:38px;
  7900. }
  7901. #u50435 {
  7902. border-width:0px;
  7903. position:absolute;
  7904. left:531px;
  7905. top:266px;
  7906. width:70px;
  7907. height:38px;
  7908. display:flex;
  7909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7910. font-weight:400;
  7911. font-style:normal;
  7912. font-size:12px;
  7913. color:#333333;
  7914. }
  7915. #u50435 .text {
  7916. position:absolute;
  7917. align-self:center;
  7918. padding:2px 2px 2px 0px;
  7919. box-sizing:border-box;
  7920. width:100%;
  7921. }
  7922. #u50435_text {
  7923. border-width:0px;
  7924. word-wrap:break-word;
  7925. text-transform:none;
  7926. visibility:hidden;
  7927. }
  7928. #u50436_img {
  7929. border-width:0px;
  7930. position:absolute;
  7931. left:0px;
  7932. top:0px;
  7933. width:60px;
  7934. height:38px;
  7935. }
  7936. #u50436 {
  7937. border-width:0px;
  7938. position:absolute;
  7939. left:601px;
  7940. top:266px;
  7941. width:60px;
  7942. height:38px;
  7943. display:flex;
  7944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7945. font-weight:400;
  7946. font-style:normal;
  7947. font-size:12px;
  7948. color:#333333;
  7949. }
  7950. #u50436 .text {
  7951. position:absolute;
  7952. align-self:center;
  7953. padding:2px 2px 2px 0px;
  7954. box-sizing:border-box;
  7955. width:100%;
  7956. }
  7957. #u50436_text {
  7958. border-width:0px;
  7959. word-wrap:break-word;
  7960. text-transform:none;
  7961. visibility:hidden;
  7962. }
  7963. #u50437_img {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:0px;
  7967. top:0px;
  7968. width:60px;
  7969. height:38px;
  7970. }
  7971. #u50437 {
  7972. border-width:0px;
  7973. position:absolute;
  7974. left:661px;
  7975. top:266px;
  7976. width:60px;
  7977. height:38px;
  7978. display:flex;
  7979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7980. font-weight:400;
  7981. font-style:normal;
  7982. font-size:12px;
  7983. color:#333333;
  7984. }
  7985. #u50437 .text {
  7986. position:absolute;
  7987. align-self:center;
  7988. padding:2px 2px 2px 0px;
  7989. box-sizing:border-box;
  7990. width:100%;
  7991. }
  7992. #u50437_text {
  7993. border-width:0px;
  7994. word-wrap:break-word;
  7995. text-transform:none;
  7996. visibility:hidden;
  7997. }
  7998. #u50438_img {
  7999. border-width:0px;
  8000. position:absolute;
  8001. left:0px;
  8002. top:0px;
  8003. width:60px;
  8004. height:38px;
  8005. }
  8006. #u50438 {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:721px;
  8010. top:266px;
  8011. width:60px;
  8012. height:38px;
  8013. display:flex;
  8014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8015. font-weight:400;
  8016. font-style:normal;
  8017. font-size:12px;
  8018. color:#333333;
  8019. }
  8020. #u50438 .text {
  8021. position:absolute;
  8022. align-self:center;
  8023. padding:2px 2px 2px 0px;
  8024. box-sizing:border-box;
  8025. width:100%;
  8026. }
  8027. #u50438_text {
  8028. border-width:0px;
  8029. word-wrap:break-word;
  8030. text-transform:none;
  8031. visibility:hidden;
  8032. }
  8033. #u50439_img {
  8034. border-width:0px;
  8035. position:absolute;
  8036. left:0px;
  8037. top:0px;
  8038. width:80px;
  8039. height:38px;
  8040. }
  8041. #u50439 {
  8042. border-width:0px;
  8043. position:absolute;
  8044. left:781px;
  8045. top:266px;
  8046. width:80px;
  8047. height:38px;
  8048. display:flex;
  8049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8050. font-weight:400;
  8051. font-style:normal;
  8052. font-size:12px;
  8053. color:#333333;
  8054. }
  8055. #u50439 .text {
  8056. position:absolute;
  8057. align-self:center;
  8058. padding:2px 2px 2px 0px;
  8059. box-sizing:border-box;
  8060. width:100%;
  8061. }
  8062. #u50439_text {
  8063. border-width:0px;
  8064. word-wrap:break-word;
  8065. text-transform:none;
  8066. visibility:hidden;
  8067. }
  8068. #u50440_img {
  8069. border-width:0px;
  8070. position:absolute;
  8071. left:0px;
  8072. top:0px;
  8073. width:60px;
  8074. height:38px;
  8075. }
  8076. #u50440 {
  8077. border-width:0px;
  8078. position:absolute;
  8079. left:861px;
  8080. top:266px;
  8081. width:60px;
  8082. height:38px;
  8083. display:flex;
  8084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8085. font-weight:400;
  8086. font-style:normal;
  8087. font-size:12px;
  8088. color:#333333;
  8089. }
  8090. #u50440 .text {
  8091. position:absolute;
  8092. align-self:center;
  8093. padding:2px 2px 2px 0px;
  8094. box-sizing:border-box;
  8095. width:100%;
  8096. }
  8097. #u50440_text {
  8098. border-width:0px;
  8099. word-wrap:break-word;
  8100. text-transform:none;
  8101. visibility:hidden;
  8102. }
  8103. #u50441_img {
  8104. border-width:0px;
  8105. position:absolute;
  8106. left:0px;
  8107. top:0px;
  8108. width:60px;
  8109. height:38px;
  8110. }
  8111. #u50441 {
  8112. border-width:0px;
  8113. position:absolute;
  8114. left:921px;
  8115. top:266px;
  8116. width:60px;
  8117. height:38px;
  8118. display:flex;
  8119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8120. font-weight:400;
  8121. font-style:normal;
  8122. font-size:12px;
  8123. color:#333333;
  8124. }
  8125. #u50441 .text {
  8126. position:absolute;
  8127. align-self:center;
  8128. padding:2px 2px 2px 0px;
  8129. box-sizing:border-box;
  8130. width:100%;
  8131. }
  8132. #u50441_text {
  8133. border-width:0px;
  8134. word-wrap:break-word;
  8135. text-transform:none;
  8136. visibility:hidden;
  8137. }
  8138. #u50442_img {
  8139. border-width:0px;
  8140. position:absolute;
  8141. left:0px;
  8142. top:0px;
  8143. width:60px;
  8144. height:38px;
  8145. }
  8146. #u50442 {
  8147. border-width:0px;
  8148. position:absolute;
  8149. left:981px;
  8150. top:266px;
  8151. width:60px;
  8152. height:38px;
  8153. display:flex;
  8154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8155. font-weight:400;
  8156. font-style:normal;
  8157. font-size:12px;
  8158. color:#333333;
  8159. }
  8160. #u50442 .text {
  8161. position:absolute;
  8162. align-self:center;
  8163. padding:2px 2px 2px 0px;
  8164. box-sizing:border-box;
  8165. width:100%;
  8166. }
  8167. #u50442_text {
  8168. border-width:0px;
  8169. word-wrap:break-word;
  8170. text-transform:none;
  8171. visibility:hidden;
  8172. }
  8173. #u50443_img {
  8174. border-width:0px;
  8175. position:absolute;
  8176. left:0px;
  8177. top:0px;
  8178. width:60px;
  8179. height:38px;
  8180. }
  8181. #u50443 {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:1041px;
  8185. top:266px;
  8186. width:60px;
  8187. height:38px;
  8188. display:flex;
  8189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8190. font-weight:400;
  8191. font-style:normal;
  8192. font-size:12px;
  8193. color:#333333;
  8194. }
  8195. #u50443 .text {
  8196. position:absolute;
  8197. align-self:center;
  8198. padding:2px 2px 2px 0px;
  8199. box-sizing:border-box;
  8200. width:100%;
  8201. }
  8202. #u50443_text {
  8203. border-width:0px;
  8204. word-wrap:break-word;
  8205. text-transform:none;
  8206. visibility:hidden;
  8207. }
  8208. #u50444_img {
  8209. border-width:0px;
  8210. position:absolute;
  8211. left:0px;
  8212. top:0px;
  8213. width:60px;
  8214. height:38px;
  8215. }
  8216. #u50444 {
  8217. border-width:0px;
  8218. position:absolute;
  8219. left:1101px;
  8220. top:266px;
  8221. width:60px;
  8222. height:38px;
  8223. display:flex;
  8224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8225. font-weight:400;
  8226. font-style:normal;
  8227. font-size:12px;
  8228. color:#333333;
  8229. }
  8230. #u50444 .text {
  8231. position:absolute;
  8232. align-self:center;
  8233. padding:2px 2px 2px 0px;
  8234. box-sizing:border-box;
  8235. width:100%;
  8236. }
  8237. #u50444_text {
  8238. border-width:0px;
  8239. word-wrap:break-word;
  8240. text-transform:none;
  8241. visibility:hidden;
  8242. }
  8243. #u50445_img {
  8244. border-width:0px;
  8245. position:absolute;
  8246. left:0px;
  8247. top:0px;
  8248. width:60px;
  8249. height:38px;
  8250. }
  8251. #u50445 {
  8252. border-width:0px;
  8253. position:absolute;
  8254. left:1161px;
  8255. top:266px;
  8256. width:60px;
  8257. height:38px;
  8258. display:flex;
  8259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8260. font-weight:400;
  8261. font-style:normal;
  8262. font-size:12px;
  8263. color:#333333;
  8264. }
  8265. #u50445 .text {
  8266. position:absolute;
  8267. align-self:center;
  8268. padding:2px 2px 2px 0px;
  8269. box-sizing:border-box;
  8270. width:100%;
  8271. }
  8272. #u50445_text {
  8273. border-width:0px;
  8274. word-wrap:break-word;
  8275. text-transform:none;
  8276. visibility:hidden;
  8277. }
  8278. #u50446_img {
  8279. border-width:0px;
  8280. position:absolute;
  8281. left:0px;
  8282. top:0px;
  8283. width:80px;
  8284. height:38px;
  8285. }
  8286. #u50446 {
  8287. border-width:0px;
  8288. position:absolute;
  8289. left:1221px;
  8290. top:266px;
  8291. width:80px;
  8292. height:38px;
  8293. display:flex;
  8294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8295. font-weight:400;
  8296. font-style:normal;
  8297. font-size:12px;
  8298. color:#333333;
  8299. }
  8300. #u50446 .text {
  8301. position:absolute;
  8302. align-self:center;
  8303. padding:2px 2px 2px 0px;
  8304. box-sizing:border-box;
  8305. width:100%;
  8306. }
  8307. #u50446_text {
  8308. border-width:0px;
  8309. word-wrap:break-word;
  8310. text-transform:none;
  8311. visibility:hidden;
  8312. }
  8313. #u50447_img {
  8314. border-width:0px;
  8315. position:absolute;
  8316. left:0px;
  8317. top:0px;
  8318. width:60px;
  8319. height:38px;
  8320. }
  8321. #u50447 {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:1301px;
  8325. top:266px;
  8326. width:60px;
  8327. height:38px;
  8328. display:flex;
  8329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8330. font-weight:400;
  8331. font-style:normal;
  8332. font-size:12px;
  8333. color:#333333;
  8334. }
  8335. #u50447 .text {
  8336. position:absolute;
  8337. align-self:center;
  8338. padding:2px 2px 2px 0px;
  8339. box-sizing:border-box;
  8340. width:100%;
  8341. }
  8342. #u50447_text {
  8343. border-width:0px;
  8344. word-wrap:break-word;
  8345. text-transform:none;
  8346. visibility:hidden;
  8347. }
  8348. #u50448_img {
  8349. border-width:0px;
  8350. position:absolute;
  8351. left:0px;
  8352. top:0px;
  8353. width:80px;
  8354. height:38px;
  8355. }
  8356. #u50448 {
  8357. border-width:0px;
  8358. position:absolute;
  8359. left:0px;
  8360. top:304px;
  8361. width:80px;
  8362. height:38px;
  8363. display:flex;
  8364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8365. font-weight:400;
  8366. font-style:normal;
  8367. font-size:12px;
  8368. color:#333333;
  8369. }
  8370. #u50448 .text {
  8371. position:absolute;
  8372. align-self:center;
  8373. padding:2px 2px 2px 0px;
  8374. box-sizing:border-box;
  8375. width:100%;
  8376. }
  8377. #u50448_text {
  8378. border-width:0px;
  8379. word-wrap:break-word;
  8380. text-transform:none;
  8381. visibility:hidden;
  8382. }
  8383. #u50449_img {
  8384. border-width:0px;
  8385. position:absolute;
  8386. left:0px;
  8387. top:0px;
  8388. width:63px;
  8389. height:38px;
  8390. }
  8391. #u50449 {
  8392. border-width:0px;
  8393. position:absolute;
  8394. left:80px;
  8395. top:304px;
  8396. width:63px;
  8397. height:38px;
  8398. display:flex;
  8399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8400. font-weight:400;
  8401. font-style:normal;
  8402. font-size:12px;
  8403. color:#333333;
  8404. }
  8405. #u50449 .text {
  8406. position:absolute;
  8407. align-self:center;
  8408. padding:2px 2px 2px 0px;
  8409. box-sizing:border-box;
  8410. width:100%;
  8411. }
  8412. #u50449_text {
  8413. border-width:0px;
  8414. word-wrap:break-word;
  8415. text-transform:none;
  8416. visibility:hidden;
  8417. }
  8418. #u50450_img {
  8419. border-width:0px;
  8420. position:absolute;
  8421. left:0px;
  8422. top:0px;
  8423. width:60px;
  8424. height:38px;
  8425. }
  8426. #u50450 {
  8427. border-width:0px;
  8428. position:absolute;
  8429. left:143px;
  8430. top:304px;
  8431. width:60px;
  8432. height:38px;
  8433. display:flex;
  8434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8435. font-weight:400;
  8436. font-style:normal;
  8437. font-size:12px;
  8438. color:#333333;
  8439. }
  8440. #u50450 .text {
  8441. position:absolute;
  8442. align-self:center;
  8443. padding:2px 2px 2px 0px;
  8444. box-sizing:border-box;
  8445. width:100%;
  8446. }
  8447. #u50450_text {
  8448. border-width:0px;
  8449. word-wrap:break-word;
  8450. text-transform:none;
  8451. visibility:hidden;
  8452. }
  8453. #u50451_img {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:0px;
  8457. top:0px;
  8458. width:64px;
  8459. height:38px;
  8460. }
  8461. #u50451 {
  8462. border-width:0px;
  8463. position:absolute;
  8464. left:203px;
  8465. top:304px;
  8466. width:64px;
  8467. height:38px;
  8468. display:flex;
  8469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8470. font-weight:400;
  8471. font-style:normal;
  8472. font-size:12px;
  8473. color:#333333;
  8474. }
  8475. #u50451 .text {
  8476. position:absolute;
  8477. align-self:center;
  8478. padding:2px 2px 2px 0px;
  8479. box-sizing:border-box;
  8480. width:100%;
  8481. }
  8482. #u50451_text {
  8483. border-width:0px;
  8484. word-wrap:break-word;
  8485. text-transform:none;
  8486. visibility:hidden;
  8487. }
  8488. #u50452_img {
  8489. border-width:0px;
  8490. position:absolute;
  8491. left:0px;
  8492. top:0px;
  8493. width:64px;
  8494. height:38px;
  8495. }
  8496. #u50452 {
  8497. border-width:0px;
  8498. position:absolute;
  8499. left:267px;
  8500. top:304px;
  8501. width:64px;
  8502. height:38px;
  8503. display:flex;
  8504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8505. font-weight:400;
  8506. font-style:normal;
  8507. font-size:12px;
  8508. color:#333333;
  8509. }
  8510. #u50452 .text {
  8511. position:absolute;
  8512. align-self:center;
  8513. padding:2px 2px 2px 0px;
  8514. box-sizing:border-box;
  8515. width:100%;
  8516. }
  8517. #u50452_text {
  8518. border-width:0px;
  8519. word-wrap:break-word;
  8520. text-transform:none;
  8521. visibility:hidden;
  8522. }
  8523. #u50453_img {
  8524. border-width:0px;
  8525. position:absolute;
  8526. left:0px;
  8527. top:0px;
  8528. width:60px;
  8529. height:38px;
  8530. }
  8531. #u50453 {
  8532. border-width:0px;
  8533. position:absolute;
  8534. left:331px;
  8535. top:304px;
  8536. width:60px;
  8537. height:38px;
  8538. display:flex;
  8539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8540. font-weight:400;
  8541. font-style:normal;
  8542. font-size:12px;
  8543. color:#333333;
  8544. }
  8545. #u50453 .text {
  8546. position:absolute;
  8547. align-self:center;
  8548. padding:2px 2px 2px 0px;
  8549. box-sizing:border-box;
  8550. width:100%;
  8551. }
  8552. #u50453_text {
  8553. border-width:0px;
  8554. word-wrap:break-word;
  8555. text-transform:none;
  8556. visibility:hidden;
  8557. }
  8558. #u50454_img {
  8559. border-width:0px;
  8560. position:absolute;
  8561. left:0px;
  8562. top:0px;
  8563. width:80px;
  8564. height:38px;
  8565. }
  8566. #u50454 {
  8567. border-width:0px;
  8568. position:absolute;
  8569. left:391px;
  8570. top:304px;
  8571. width:80px;
  8572. height:38px;
  8573. display:flex;
  8574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8575. font-weight:400;
  8576. font-style:normal;
  8577. font-size:12px;
  8578. color:#333333;
  8579. }
  8580. #u50454 .text {
  8581. position:absolute;
  8582. align-self:center;
  8583. padding:2px 2px 2px 0px;
  8584. box-sizing:border-box;
  8585. width:100%;
  8586. }
  8587. #u50454_text {
  8588. border-width:0px;
  8589. word-wrap:break-word;
  8590. text-transform:none;
  8591. visibility:hidden;
  8592. }
  8593. #u50455_img {
  8594. border-width:0px;
  8595. position:absolute;
  8596. left:0px;
  8597. top:0px;
  8598. width:60px;
  8599. height:38px;
  8600. }
  8601. #u50455 {
  8602. border-width:0px;
  8603. position:absolute;
  8604. left:471px;
  8605. top:304px;
  8606. width:60px;
  8607. height:38px;
  8608. display:flex;
  8609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8610. font-weight:400;
  8611. font-style:normal;
  8612. font-size:12px;
  8613. color:#333333;
  8614. }
  8615. #u50455 .text {
  8616. position:absolute;
  8617. align-self:center;
  8618. padding:2px 2px 2px 0px;
  8619. box-sizing:border-box;
  8620. width:100%;
  8621. }
  8622. #u50455_text {
  8623. border-width:0px;
  8624. word-wrap:break-word;
  8625. text-transform:none;
  8626. visibility:hidden;
  8627. }
  8628. #u50456_img {
  8629. border-width:0px;
  8630. position:absolute;
  8631. left:0px;
  8632. top:0px;
  8633. width:70px;
  8634. height:38px;
  8635. }
  8636. #u50456 {
  8637. border-width:0px;
  8638. position:absolute;
  8639. left:531px;
  8640. top:304px;
  8641. width:70px;
  8642. height:38px;
  8643. display:flex;
  8644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8645. font-weight:400;
  8646. font-style:normal;
  8647. font-size:12px;
  8648. color:#333333;
  8649. }
  8650. #u50456 .text {
  8651. position:absolute;
  8652. align-self:center;
  8653. padding:2px 2px 2px 0px;
  8654. box-sizing:border-box;
  8655. width:100%;
  8656. }
  8657. #u50456_text {
  8658. border-width:0px;
  8659. word-wrap:break-word;
  8660. text-transform:none;
  8661. visibility:hidden;
  8662. }
  8663. #u50457_img {
  8664. border-width:0px;
  8665. position:absolute;
  8666. left:0px;
  8667. top:0px;
  8668. width:60px;
  8669. height:38px;
  8670. }
  8671. #u50457 {
  8672. border-width:0px;
  8673. position:absolute;
  8674. left:601px;
  8675. top:304px;
  8676. width:60px;
  8677. height:38px;
  8678. display:flex;
  8679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8680. font-weight:400;
  8681. font-style:normal;
  8682. font-size:12px;
  8683. color:#333333;
  8684. }
  8685. #u50457 .text {
  8686. position:absolute;
  8687. align-self:center;
  8688. padding:2px 2px 2px 0px;
  8689. box-sizing:border-box;
  8690. width:100%;
  8691. }
  8692. #u50457_text {
  8693. border-width:0px;
  8694. word-wrap:break-word;
  8695. text-transform:none;
  8696. visibility:hidden;
  8697. }
  8698. #u50458_img {
  8699. border-width:0px;
  8700. position:absolute;
  8701. left:0px;
  8702. top:0px;
  8703. width:60px;
  8704. height:38px;
  8705. }
  8706. #u50458 {
  8707. border-width:0px;
  8708. position:absolute;
  8709. left:661px;
  8710. top:304px;
  8711. width:60px;
  8712. height:38px;
  8713. display:flex;
  8714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8715. font-weight:400;
  8716. font-style:normal;
  8717. font-size:12px;
  8718. color:#333333;
  8719. }
  8720. #u50458 .text {
  8721. position:absolute;
  8722. align-self:center;
  8723. padding:2px 2px 2px 0px;
  8724. box-sizing:border-box;
  8725. width:100%;
  8726. }
  8727. #u50458_text {
  8728. border-width:0px;
  8729. word-wrap:break-word;
  8730. text-transform:none;
  8731. visibility:hidden;
  8732. }
  8733. #u50459_img {
  8734. border-width:0px;
  8735. position:absolute;
  8736. left:0px;
  8737. top:0px;
  8738. width:60px;
  8739. height:38px;
  8740. }
  8741. #u50459 {
  8742. border-width:0px;
  8743. position:absolute;
  8744. left:721px;
  8745. top:304px;
  8746. width:60px;
  8747. height:38px;
  8748. display:flex;
  8749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8750. font-weight:400;
  8751. font-style:normal;
  8752. font-size:12px;
  8753. color:#333333;
  8754. }
  8755. #u50459 .text {
  8756. position:absolute;
  8757. align-self:center;
  8758. padding:2px 2px 2px 0px;
  8759. box-sizing:border-box;
  8760. width:100%;
  8761. }
  8762. #u50459_text {
  8763. border-width:0px;
  8764. word-wrap:break-word;
  8765. text-transform:none;
  8766. visibility:hidden;
  8767. }
  8768. #u50460_img {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:0px;
  8772. top:0px;
  8773. width:80px;
  8774. height:38px;
  8775. }
  8776. #u50460 {
  8777. border-width:0px;
  8778. position:absolute;
  8779. left:781px;
  8780. top:304px;
  8781. width:80px;
  8782. height:38px;
  8783. display:flex;
  8784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8785. font-weight:400;
  8786. font-style:normal;
  8787. font-size:12px;
  8788. color:#333333;
  8789. }
  8790. #u50460 .text {
  8791. position:absolute;
  8792. align-self:center;
  8793. padding:2px 2px 2px 0px;
  8794. box-sizing:border-box;
  8795. width:100%;
  8796. }
  8797. #u50460_text {
  8798. border-width:0px;
  8799. word-wrap:break-word;
  8800. text-transform:none;
  8801. visibility:hidden;
  8802. }
  8803. #u50461_img {
  8804. border-width:0px;
  8805. position:absolute;
  8806. left:0px;
  8807. top:0px;
  8808. width:60px;
  8809. height:38px;
  8810. }
  8811. #u50461 {
  8812. border-width:0px;
  8813. position:absolute;
  8814. left:861px;
  8815. top:304px;
  8816. width:60px;
  8817. height:38px;
  8818. display:flex;
  8819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8820. font-weight:400;
  8821. font-style:normal;
  8822. font-size:12px;
  8823. color:#333333;
  8824. }
  8825. #u50461 .text {
  8826. position:absolute;
  8827. align-self:center;
  8828. padding:2px 2px 2px 0px;
  8829. box-sizing:border-box;
  8830. width:100%;
  8831. }
  8832. #u50461_text {
  8833. border-width:0px;
  8834. word-wrap:break-word;
  8835. text-transform:none;
  8836. visibility:hidden;
  8837. }
  8838. #u50462_img {
  8839. border-width:0px;
  8840. position:absolute;
  8841. left:0px;
  8842. top:0px;
  8843. width:60px;
  8844. height:38px;
  8845. }
  8846. #u50462 {
  8847. border-width:0px;
  8848. position:absolute;
  8849. left:921px;
  8850. top:304px;
  8851. width:60px;
  8852. height:38px;
  8853. display:flex;
  8854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8855. font-weight:400;
  8856. font-style:normal;
  8857. font-size:12px;
  8858. color:#333333;
  8859. }
  8860. #u50462 .text {
  8861. position:absolute;
  8862. align-self:center;
  8863. padding:2px 2px 2px 0px;
  8864. box-sizing:border-box;
  8865. width:100%;
  8866. }
  8867. #u50462_text {
  8868. border-width:0px;
  8869. word-wrap:break-word;
  8870. text-transform:none;
  8871. visibility:hidden;
  8872. }
  8873. #u50463_img {
  8874. border-width:0px;
  8875. position:absolute;
  8876. left:0px;
  8877. top:0px;
  8878. width:60px;
  8879. height:38px;
  8880. }
  8881. #u50463 {
  8882. border-width:0px;
  8883. position:absolute;
  8884. left:981px;
  8885. top:304px;
  8886. width:60px;
  8887. height:38px;
  8888. display:flex;
  8889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8890. font-weight:400;
  8891. font-style:normal;
  8892. font-size:12px;
  8893. color:#333333;
  8894. }
  8895. #u50463 .text {
  8896. position:absolute;
  8897. align-self:center;
  8898. padding:2px 2px 2px 0px;
  8899. box-sizing:border-box;
  8900. width:100%;
  8901. }
  8902. #u50463_text {
  8903. border-width:0px;
  8904. word-wrap:break-word;
  8905. text-transform:none;
  8906. visibility:hidden;
  8907. }
  8908. #u50464_img {
  8909. border-width:0px;
  8910. position:absolute;
  8911. left:0px;
  8912. top:0px;
  8913. width:60px;
  8914. height:38px;
  8915. }
  8916. #u50464 {
  8917. border-width:0px;
  8918. position:absolute;
  8919. left:1041px;
  8920. top:304px;
  8921. width:60px;
  8922. height:38px;
  8923. display:flex;
  8924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8925. font-weight:400;
  8926. font-style:normal;
  8927. font-size:12px;
  8928. color:#333333;
  8929. }
  8930. #u50464 .text {
  8931. position:absolute;
  8932. align-self:center;
  8933. padding:2px 2px 2px 0px;
  8934. box-sizing:border-box;
  8935. width:100%;
  8936. }
  8937. #u50464_text {
  8938. border-width:0px;
  8939. word-wrap:break-word;
  8940. text-transform:none;
  8941. visibility:hidden;
  8942. }
  8943. #u50465_img {
  8944. border-width:0px;
  8945. position:absolute;
  8946. left:0px;
  8947. top:0px;
  8948. width:60px;
  8949. height:38px;
  8950. }
  8951. #u50465 {
  8952. border-width:0px;
  8953. position:absolute;
  8954. left:1101px;
  8955. top:304px;
  8956. width:60px;
  8957. height:38px;
  8958. display:flex;
  8959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8960. font-weight:400;
  8961. font-style:normal;
  8962. font-size:12px;
  8963. color:#333333;
  8964. }
  8965. #u50465 .text {
  8966. position:absolute;
  8967. align-self:center;
  8968. padding:2px 2px 2px 0px;
  8969. box-sizing:border-box;
  8970. width:100%;
  8971. }
  8972. #u50465_text {
  8973. border-width:0px;
  8974. word-wrap:break-word;
  8975. text-transform:none;
  8976. visibility:hidden;
  8977. }
  8978. #u50466_img {
  8979. border-width:0px;
  8980. position:absolute;
  8981. left:0px;
  8982. top:0px;
  8983. width:60px;
  8984. height:38px;
  8985. }
  8986. #u50466 {
  8987. border-width:0px;
  8988. position:absolute;
  8989. left:1161px;
  8990. top:304px;
  8991. width:60px;
  8992. height:38px;
  8993. display:flex;
  8994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8995. font-weight:400;
  8996. font-style:normal;
  8997. font-size:12px;
  8998. color:#333333;
  8999. }
  9000. #u50466 .text {
  9001. position:absolute;
  9002. align-self:center;
  9003. padding:2px 2px 2px 0px;
  9004. box-sizing:border-box;
  9005. width:100%;
  9006. }
  9007. #u50466_text {
  9008. border-width:0px;
  9009. word-wrap:break-word;
  9010. text-transform:none;
  9011. visibility:hidden;
  9012. }
  9013. #u50467_img {
  9014. border-width:0px;
  9015. position:absolute;
  9016. left:0px;
  9017. top:0px;
  9018. width:80px;
  9019. height:38px;
  9020. }
  9021. #u50467 {
  9022. border-width:0px;
  9023. position:absolute;
  9024. left:1221px;
  9025. top:304px;
  9026. width:80px;
  9027. height:38px;
  9028. display:flex;
  9029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9030. font-weight:400;
  9031. font-style:normal;
  9032. font-size:12px;
  9033. color:#333333;
  9034. }
  9035. #u50467 .text {
  9036. position:absolute;
  9037. align-self:center;
  9038. padding:2px 2px 2px 0px;
  9039. box-sizing:border-box;
  9040. width:100%;
  9041. }
  9042. #u50467_text {
  9043. border-width:0px;
  9044. word-wrap:break-word;
  9045. text-transform:none;
  9046. visibility:hidden;
  9047. }
  9048. #u50468_img {
  9049. border-width:0px;
  9050. position:absolute;
  9051. left:0px;
  9052. top:0px;
  9053. width:60px;
  9054. height:38px;
  9055. }
  9056. #u50468 {
  9057. border-width:0px;
  9058. position:absolute;
  9059. left:1301px;
  9060. top:304px;
  9061. width:60px;
  9062. height:38px;
  9063. display:flex;
  9064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9065. font-weight:400;
  9066. font-style:normal;
  9067. font-size:12px;
  9068. color:#333333;
  9069. }
  9070. #u50468 .text {
  9071. position:absolute;
  9072. align-self:center;
  9073. padding:2px 2px 2px 0px;
  9074. box-sizing:border-box;
  9075. width:100%;
  9076. }
  9077. #u50468_text {
  9078. border-width:0px;
  9079. word-wrap:break-word;
  9080. text-transform:none;
  9081. visibility:hidden;
  9082. }
  9083. #u50469 {
  9084. border-width:0px;
  9085. position:absolute;
  9086. left:0px;
  9087. top:0px;
  9088. width:0px;
  9089. height:0px;
  9090. }
  9091. #u50470_div {
  9092. border-width:0px;
  9093. position:absolute;
  9094. left:0px;
  9095. top:0px;
  9096. width:200px;
  9097. height:1193px;
  9098. background:inherit;
  9099. background-color:rgba(255, 255, 255, 1);
  9100. border:none;
  9101. border-radius:0px;
  9102. -moz-box-shadow:none;
  9103. -webkit-box-shadow:none;
  9104. box-shadow:none;
  9105. }
  9106. #u50470 {
  9107. border-width:0px;
  9108. position:absolute;
  9109. left:120px;
  9110. top:50px;
  9111. width:200px;
  9112. height:1193px;
  9113. display:flex;
  9114. }
  9115. #u50470 .text {
  9116. position:absolute;
  9117. align-self:center;
  9118. padding:2px 2px 2px 2px;
  9119. box-sizing:border-box;
  9120. width:100%;
  9121. }
  9122. #u50470_text {
  9123. border-width:0px;
  9124. word-wrap:break-word;
  9125. text-transform:none;
  9126. visibility:hidden;
  9127. }
  9128. #u50471_div {
  9129. border-width:0px;
  9130. position:absolute;
  9131. left:0px;
  9132. top:0px;
  9133. width:200px;
  9134. height:60px;
  9135. background:inherit;
  9136. background-color:rgba(224, 231, 247, 1);
  9137. border:none;
  9138. border-radius:0px;
  9139. -moz-box-shadow:none;
  9140. -webkit-box-shadow:none;
  9141. box-shadow:none;
  9142. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9143. font-weight:500;
  9144. font-style:normal;
  9145. font-size:18px;
  9146. }
  9147. #u50471 {
  9148. border-width:0px;
  9149. position:absolute;
  9150. left:120px;
  9151. top:50px;
  9152. width:200px;
  9153. height:60px;
  9154. display:flex;
  9155. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9156. font-weight:500;
  9157. font-style:normal;
  9158. font-size:18px;
  9159. }
  9160. #u50471 .text {
  9161. position:absolute;
  9162. align-self:center;
  9163. padding:0px 0px 0px 20px;
  9164. box-sizing:border-box;
  9165. width:100%;
  9166. }
  9167. #u50471_text {
  9168. border-width:0px;
  9169. word-wrap:break-word;
  9170. text-transform:none;
  9171. }
  9172. #u50472_div {
  9173. border-width:0px;
  9174. position:absolute;
  9175. left:0px;
  9176. top:0px;
  9177. width:97px;
  9178. height:22px;
  9179. background:inherit;
  9180. background-color:rgba(255, 255, 255, 0);
  9181. border:none;
  9182. border-radius:0px;
  9183. -moz-box-shadow:none;
  9184. -webkit-box-shadow:none;
  9185. box-shadow:none;
  9186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9187. font-weight:400;
  9188. font-style:normal;
  9189. font-size:16px;
  9190. }
  9191. #u50472 {
  9192. border-width:0px;
  9193. position:absolute;
  9194. left:147px;
  9195. top:387px;
  9196. width:97px;
  9197. height:22px;
  9198. display:flex;
  9199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9200. font-weight:400;
  9201. font-style:normal;
  9202. font-size:16px;
  9203. }
  9204. #u50472 .text {
  9205. position:absolute;
  9206. align-self:flex-start;
  9207. padding:0px 0px 0px 0px;
  9208. box-sizing:border-box;
  9209. width:100%;
  9210. }
  9211. #u50472_text {
  9212. border-width:0px;
  9213. word-wrap:break-word;
  9214. text-transform:none;
  9215. }
  9216. #u50473_div {
  9217. border-width:0px;
  9218. position:absolute;
  9219. left:0px;
  9220. top:0px;
  9221. width:97px;
  9222. height:22px;
  9223. background:inherit;
  9224. background-color:rgba(255, 255, 255, 0);
  9225. border:none;
  9226. border-radius:0px;
  9227. -moz-box-shadow:none;
  9228. -webkit-box-shadow:none;
  9229. box-shadow:none;
  9230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9231. font-weight:400;
  9232. font-style:normal;
  9233. font-size:16px;
  9234. }
  9235. #u50473 {
  9236. border-width:0px;
  9237. position:absolute;
  9238. left:147px;
  9239. top:166px;
  9240. width:97px;
  9241. height:22px;
  9242. display:flex;
  9243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9244. font-weight:400;
  9245. font-style:normal;
  9246. font-size:16px;
  9247. }
  9248. #u50473 .text {
  9249. position:absolute;
  9250. align-self:flex-start;
  9251. padding:0px 0px 0px 0px;
  9252. box-sizing:border-box;
  9253. width:100%;
  9254. }
  9255. #u50473_text {
  9256. border-width:0px;
  9257. word-wrap:break-word;
  9258. text-transform:none;
  9259. }
  9260. #u50474_div {
  9261. border-width:0px;
  9262. position:absolute;
  9263. left:0px;
  9264. top:0px;
  9265. width:49px;
  9266. height:17px;
  9267. background:inherit;
  9268. background-color:rgba(255, 255, 255, 0);
  9269. border:none;
  9270. border-radius:0px;
  9271. -moz-box-shadow:none;
  9272. -webkit-box-shadow:none;
  9273. box-shadow:none;
  9274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9275. font-weight:400;
  9276. font-style:normal;
  9277. font-size:12px;
  9278. color:#AAAAAA;
  9279. }
  9280. #u50474 {
  9281. border-width:0px;
  9282. position:absolute;
  9283. left:147px;
  9284. top:130px;
  9285. width:49px;
  9286. height:17px;
  9287. display:flex;
  9288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9289. font-weight:400;
  9290. font-style:normal;
  9291. font-size:12px;
  9292. color:#AAAAAA;
  9293. }
  9294. #u50474 .text {
  9295. position:absolute;
  9296. align-self:flex-start;
  9297. padding:0px 0px 0px 0px;
  9298. box-sizing:border-box;
  9299. width:100%;
  9300. }
  9301. #u50474_text {
  9302. border-width:0px;
  9303. white-space:nowrap;
  9304. text-transform:none;
  9305. }
  9306. #u50475_div {
  9307. border-width:0px;
  9308. position:absolute;
  9309. left:0px;
  9310. top:0px;
  9311. width:97px;
  9312. height:22px;
  9313. background:inherit;
  9314. background-color:rgba(255, 255, 255, 0);
  9315. border:none;
  9316. border-radius:0px;
  9317. -moz-box-shadow:none;
  9318. -webkit-box-shadow:none;
  9319. box-shadow:none;
  9320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9321. font-weight:400;
  9322. font-style:normal;
  9323. font-size:16px;
  9324. }
  9325. #u50475 {
  9326. border-width:0px;
  9327. position:absolute;
  9328. left:147px;
  9329. top:208px;
  9330. width:97px;
  9331. height:22px;
  9332. display:flex;
  9333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9334. font-weight:400;
  9335. font-style:normal;
  9336. font-size:16px;
  9337. }
  9338. #u50475 .text {
  9339. position:absolute;
  9340. align-self:flex-start;
  9341. padding:0px 0px 0px 0px;
  9342. box-sizing:border-box;
  9343. width:100%;
  9344. }
  9345. #u50475_text {
  9346. border-width:0px;
  9347. word-wrap:break-word;
  9348. text-transform:none;
  9349. }
  9350. #u50476_img {
  9351. border-width:0px;
  9352. position:absolute;
  9353. left:0px;
  9354. top:0px;
  9355. width:201px;
  9356. height:2px;
  9357. }
  9358. #u50476 {
  9359. border-width:0px;
  9360. position:absolute;
  9361. left:120px;
  9362. top:246px;
  9363. width:200px;
  9364. height:1px;
  9365. display:flex;
  9366. }
  9367. #u50476 .text {
  9368. position:absolute;
  9369. align-self:center;
  9370. padding:2px 2px 2px 2px;
  9371. box-sizing:border-box;
  9372. width:100%;
  9373. }
  9374. #u50476_text {
  9375. border-width:0px;
  9376. word-wrap:break-word;
  9377. text-transform:none;
  9378. visibility:hidden;
  9379. }
  9380. #u50477_div {
  9381. border-width:0px;
  9382. position:absolute;
  9383. left:0px;
  9384. top:0px;
  9385. width:97px;
  9386. height:22px;
  9387. background:inherit;
  9388. background-color:rgba(255, 255, 255, 0);
  9389. border:none;
  9390. border-radius:0px;
  9391. -moz-box-shadow:none;
  9392. -webkit-box-shadow:none;
  9393. box-shadow:none;
  9394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9395. font-weight:400;
  9396. font-style:normal;
  9397. font-size:16px;
  9398. }
  9399. #u50477 {
  9400. border-width:0px;
  9401. position:absolute;
  9402. left:147px;
  9403. top:569px;
  9404. width:97px;
  9405. height:22px;
  9406. display:flex;
  9407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9408. font-weight:400;
  9409. font-style:normal;
  9410. font-size:16px;
  9411. }
  9412. #u50477 .text {
  9413. position:absolute;
  9414. align-self:flex-start;
  9415. padding:0px 0px 0px 0px;
  9416. box-sizing:border-box;
  9417. width:100%;
  9418. }
  9419. #u50477_text {
  9420. border-width:0px;
  9421. word-wrap:break-word;
  9422. text-transform:none;
  9423. }
  9424. #u50478_div {
  9425. border-width:0px;
  9426. position:absolute;
  9427. left:0px;
  9428. top:0px;
  9429. width:49px;
  9430. height:17px;
  9431. background:inherit;
  9432. background-color:rgba(255, 255, 255, 0);
  9433. border:none;
  9434. border-radius:0px;
  9435. -moz-box-shadow:none;
  9436. -webkit-box-shadow:none;
  9437. box-shadow:none;
  9438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9439. font-weight:400;
  9440. font-style:normal;
  9441. font-size:12px;
  9442. color:#AAAAAA;
  9443. }
  9444. #u50478 {
  9445. border-width:0px;
  9446. position:absolute;
  9447. left:147px;
  9448. top:533px;
  9449. width:49px;
  9450. height:17px;
  9451. display:flex;
  9452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9453. font-weight:400;
  9454. font-style:normal;
  9455. font-size:12px;
  9456. color:#AAAAAA;
  9457. }
  9458. #u50478 .text {
  9459. position:absolute;
  9460. align-self:flex-start;
  9461. padding:0px 0px 0px 0px;
  9462. box-sizing:border-box;
  9463. width:100%;
  9464. }
  9465. #u50478_text {
  9466. border-width:0px;
  9467. white-space:nowrap;
  9468. text-transform:none;
  9469. }
  9470. #u50479_div {
  9471. border-width:0px;
  9472. position:absolute;
  9473. left:0px;
  9474. top:0px;
  9475. width:97px;
  9476. height:22px;
  9477. background:inherit;
  9478. background-color:rgba(255, 255, 255, 0);
  9479. border:none;
  9480. border-radius:0px;
  9481. -moz-box-shadow:none;
  9482. -webkit-box-shadow:none;
  9483. box-shadow:none;
  9484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9485. font-weight:400;
  9486. font-style:normal;
  9487. font-size:16px;
  9488. }
  9489. #u50479 {
  9490. border-width:0px;
  9491. position:absolute;
  9492. left:147px;
  9493. top:754px;
  9494. width:97px;
  9495. height:22px;
  9496. display:flex;
  9497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9498. font-weight:400;
  9499. font-style:normal;
  9500. font-size:16px;
  9501. }
  9502. #u50479 .text {
  9503. position:absolute;
  9504. align-self:flex-start;
  9505. padding:0px 0px 0px 0px;
  9506. box-sizing:border-box;
  9507. width:100%;
  9508. }
  9509. #u50479_text {
  9510. border-width:0px;
  9511. word-wrap:break-word;
  9512. text-transform:none;
  9513. }
  9514. #u50480_img {
  9515. border-width:0px;
  9516. position:absolute;
  9517. left:0px;
  9518. top:0px;
  9519. width:201px;
  9520. height:2px;
  9521. }
  9522. #u50480 {
  9523. border-width:0px;
  9524. position:absolute;
  9525. left:120px;
  9526. top:655px;
  9527. width:200px;
  9528. height:1px;
  9529. display:flex;
  9530. }
  9531. #u50480 .text {
  9532. position:absolute;
  9533. align-self:center;
  9534. padding:2px 2px 2px 2px;
  9535. box-sizing:border-box;
  9536. width:100%;
  9537. }
  9538. #u50480_text {
  9539. border-width:0px;
  9540. word-wrap:break-word;
  9541. text-transform:none;
  9542. visibility:hidden;
  9543. }
  9544. #u50481_div {
  9545. border-width:0px;
  9546. position:absolute;
  9547. left:0px;
  9548. top:0px;
  9549. width:97px;
  9550. height:22px;
  9551. background:inherit;
  9552. background-color:rgba(255, 255, 255, 0);
  9553. border:none;
  9554. border-radius:0px;
  9555. -moz-box-shadow:none;
  9556. -webkit-box-shadow:none;
  9557. box-shadow:none;
  9558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9559. font-weight:400;
  9560. font-style:normal;
  9561. font-size:16px;
  9562. }
  9563. #u50481 {
  9564. border-width:0px;
  9565. position:absolute;
  9566. left:147px;
  9567. top:712px;
  9568. width:97px;
  9569. height:22px;
  9570. display:flex;
  9571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9572. font-weight:400;
  9573. font-style:normal;
  9574. font-size:16px;
  9575. }
  9576. #u50481 .text {
  9577. position:absolute;
  9578. align-self:flex-start;
  9579. padding:0px 0px 0px 0px;
  9580. box-sizing:border-box;
  9581. width:100%;
  9582. }
  9583. #u50481_text {
  9584. border-width:0px;
  9585. word-wrap:break-word;
  9586. text-transform:none;
  9587. }
  9588. #u50482_div {
  9589. border-width:0px;
  9590. position:absolute;
  9591. left:0px;
  9592. top:0px;
  9593. width:49px;
  9594. height:17px;
  9595. background:inherit;
  9596. background-color:rgba(255, 255, 255, 0);
  9597. border:none;
  9598. border-radius:0px;
  9599. -moz-box-shadow:none;
  9600. -webkit-box-shadow:none;
  9601. box-shadow:none;
  9602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9603. font-weight:400;
  9604. font-style:normal;
  9605. font-size:12px;
  9606. color:#AAAAAA;
  9607. }
  9608. #u50482 {
  9609. border-width:0px;
  9610. position:absolute;
  9611. left:147px;
  9612. top:676px;
  9613. width:49px;
  9614. height:17px;
  9615. display:flex;
  9616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9617. font-weight:400;
  9618. font-style:normal;
  9619. font-size:12px;
  9620. color:#AAAAAA;
  9621. }
  9622. #u50482 .text {
  9623. position:absolute;
  9624. align-self:flex-start;
  9625. padding:0px 0px 0px 0px;
  9626. box-sizing:border-box;
  9627. width:100%;
  9628. }
  9629. #u50482_text {
  9630. border-width:0px;
  9631. white-space:nowrap;
  9632. text-transform:none;
  9633. }
  9634. #u50483_div {
  9635. border-width:0px;
  9636. position:absolute;
  9637. left:0px;
  9638. top:0px;
  9639. width:97px;
  9640. height:22px;
  9641. background:inherit;
  9642. background-color:rgba(255, 255, 255, 0);
  9643. border:none;
  9644. border-radius:0px;
  9645. -moz-box-shadow:none;
  9646. -webkit-box-shadow:none;
  9647. box-shadow:none;
  9648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9649. font-weight:400;
  9650. font-style:normal;
  9651. font-size:16px;
  9652. }
  9653. #u50483 {
  9654. border-width:0px;
  9655. position:absolute;
  9656. left:147px;
  9657. top:895px;
  9658. width:97px;
  9659. height:22px;
  9660. display:flex;
  9661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9662. font-weight:400;
  9663. font-style:normal;
  9664. font-size:16px;
  9665. }
  9666. #u50483 .text {
  9667. position:absolute;
  9668. align-self:flex-start;
  9669. padding:0px 0px 0px 0px;
  9670. box-sizing:border-box;
  9671. width:100%;
  9672. }
  9673. #u50483_text {
  9674. border-width:0px;
  9675. word-wrap:break-word;
  9676. text-transform:none;
  9677. }
  9678. #u50484_div {
  9679. border-width:0px;
  9680. position:absolute;
  9681. left:0px;
  9682. top:0px;
  9683. width:97px;
  9684. height:22px;
  9685. background:inherit;
  9686. background-color:rgba(255, 255, 255, 0);
  9687. border:none;
  9688. border-radius:0px;
  9689. -moz-box-shadow:none;
  9690. -webkit-box-shadow:none;
  9691. box-shadow:none;
  9692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9693. font-weight:400;
  9694. font-style:normal;
  9695. font-size:16px;
  9696. }
  9697. #u50484 {
  9698. border-width:0px;
  9699. position:absolute;
  9700. left:147px;
  9701. top:937px;
  9702. width:97px;
  9703. height:22px;
  9704. display:flex;
  9705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9706. font-weight:400;
  9707. font-style:normal;
  9708. font-size:16px;
  9709. }
  9710. #u50484 .text {
  9711. position:absolute;
  9712. align-self:flex-start;
  9713. padding:0px 0px 0px 0px;
  9714. box-sizing:border-box;
  9715. width:100%;
  9716. }
  9717. #u50484_text {
  9718. border-width:0px;
  9719. white-space:nowrap;
  9720. text-transform:none;
  9721. }
  9722. #u50485_img {
  9723. border-width:0px;
  9724. position:absolute;
  9725. left:0px;
  9726. top:0px;
  9727. width:201px;
  9728. height:2px;
  9729. }
  9730. #u50485 {
  9731. border-width:0px;
  9732. position:absolute;
  9733. left:120px;
  9734. top:796px;
  9735. width:200px;
  9736. height:1px;
  9737. display:flex;
  9738. }
  9739. #u50485 .text {
  9740. position:absolute;
  9741. align-self:center;
  9742. padding:2px 2px 2px 2px;
  9743. box-sizing:border-box;
  9744. width:100%;
  9745. }
  9746. #u50485_text {
  9747. border-width:0px;
  9748. word-wrap:break-word;
  9749. text-transform:none;
  9750. visibility:hidden;
  9751. }
  9752. #u50486_div {
  9753. border-width:0px;
  9754. position:absolute;
  9755. left:0px;
  9756. top:0px;
  9757. width:97px;
  9758. height:22px;
  9759. background:inherit;
  9760. background-color:rgba(255, 255, 255, 0);
  9761. border:none;
  9762. border-radius:0px;
  9763. -moz-box-shadow:none;
  9764. -webkit-box-shadow:none;
  9765. box-shadow:none;
  9766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9767. font-weight:400;
  9768. font-style:normal;
  9769. font-size:16px;
  9770. }
  9771. #u50486 {
  9772. border-width:0px;
  9773. position:absolute;
  9774. left:147px;
  9775. top:853px;
  9776. width:97px;
  9777. height:22px;
  9778. display:flex;
  9779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9780. font-weight:400;
  9781. font-style:normal;
  9782. font-size:16px;
  9783. }
  9784. #u50486 .text {
  9785. position:absolute;
  9786. align-self:flex-start;
  9787. padding:0px 0px 0px 0px;
  9788. box-sizing:border-box;
  9789. width:100%;
  9790. }
  9791. #u50486_text {
  9792. border-width:0px;
  9793. word-wrap:break-word;
  9794. text-transform:none;
  9795. }
  9796. #u50487_div {
  9797. border-width:0px;
  9798. position:absolute;
  9799. left:0px;
  9800. top:0px;
  9801. width:49px;
  9802. height:17px;
  9803. background:inherit;
  9804. background-color:rgba(255, 255, 255, 0);
  9805. border:none;
  9806. border-radius:0px;
  9807. -moz-box-shadow:none;
  9808. -webkit-box-shadow:none;
  9809. box-shadow:none;
  9810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9811. font-weight:400;
  9812. font-style:normal;
  9813. font-size:12px;
  9814. color:#AAAAAA;
  9815. }
  9816. #u50487 {
  9817. border-width:0px;
  9818. position:absolute;
  9819. left:147px;
  9820. top:817px;
  9821. width:49px;
  9822. height:17px;
  9823. display:flex;
  9824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9825. font-weight:400;
  9826. font-style:normal;
  9827. font-size:12px;
  9828. color:#AAAAAA;
  9829. }
  9830. #u50487 .text {
  9831. position:absolute;
  9832. align-self:flex-start;
  9833. padding:0px 0px 0px 0px;
  9834. box-sizing:border-box;
  9835. width:100%;
  9836. }
  9837. #u50487_text {
  9838. border-width:0px;
  9839. white-space:nowrap;
  9840. text-transform:none;
  9841. }
  9842. #u50488_div {
  9843. border-width:0px;
  9844. position:absolute;
  9845. left:0px;
  9846. top:0px;
  9847. width:97px;
  9848. height:22px;
  9849. background:inherit;
  9850. background-color:rgba(255, 255, 255, 0);
  9851. border:none;
  9852. border-radius:0px;
  9853. -moz-box-shadow:none;
  9854. -webkit-box-shadow:none;
  9855. box-shadow:none;
  9856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9857. font-weight:400;
  9858. font-style:normal;
  9859. font-size:16px;
  9860. }
  9861. #u50488 {
  9862. border-width:0px;
  9863. position:absolute;
  9864. left:147px;
  9865. top:611px;
  9866. width:97px;
  9867. height:22px;
  9868. display:flex;
  9869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9870. font-weight:400;
  9871. font-style:normal;
  9872. font-size:16px;
  9873. }
  9874. #u50488 .text {
  9875. position:absolute;
  9876. align-self:flex-start;
  9877. padding:0px 0px 0px 0px;
  9878. box-sizing:border-box;
  9879. width:100%;
  9880. }
  9881. #u50488_text {
  9882. border-width:0px;
  9883. word-wrap:break-word;
  9884. text-transform:none;
  9885. }
  9886. #u50489_div {
  9887. border-width:0px;
  9888. position:absolute;
  9889. left:0px;
  9890. top:0px;
  9891. width:97px;
  9892. height:22px;
  9893. background:inherit;
  9894. background-color:rgba(255, 255, 255, 0);
  9895. border:none;
  9896. border-radius:0px;
  9897. -moz-box-shadow:none;
  9898. -webkit-box-shadow:none;
  9899. box-shadow:none;
  9900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9901. font-weight:400;
  9902. font-style:normal;
  9903. font-size:16px;
  9904. }
  9905. #u50489 {
  9906. border-width:0px;
  9907. position:absolute;
  9908. left:147px;
  9909. top:303px;
  9910. width:97px;
  9911. height:22px;
  9912. display:flex;
  9913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9914. font-weight:400;
  9915. font-style:normal;
  9916. font-size:16px;
  9917. }
  9918. #u50489 .text {
  9919. position:absolute;
  9920. align-self:flex-start;
  9921. padding:0px 0px 0px 0px;
  9922. box-sizing:border-box;
  9923. width:100%;
  9924. }
  9925. #u50489_text {
  9926. border-width:0px;
  9927. word-wrap:break-word;
  9928. text-transform:none;
  9929. }
  9930. #u50490_div {
  9931. border-width:0px;
  9932. position:absolute;
  9933. left:0px;
  9934. top:0px;
  9935. width:49px;
  9936. height:17px;
  9937. background:inherit;
  9938. background-color:rgba(255, 255, 255, 0);
  9939. border:none;
  9940. border-radius:0px;
  9941. -moz-box-shadow:none;
  9942. -webkit-box-shadow:none;
  9943. box-shadow:none;
  9944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9945. font-weight:400;
  9946. font-style:normal;
  9947. font-size:12px;
  9948. color:#AAAAAA;
  9949. }
  9950. #u50490 {
  9951. border-width:0px;
  9952. position:absolute;
  9953. left:147px;
  9954. top:267px;
  9955. width:49px;
  9956. height:17px;
  9957. display:flex;
  9958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9959. font-weight:400;
  9960. font-style:normal;
  9961. font-size:12px;
  9962. color:#AAAAAA;
  9963. }
  9964. #u50490 .text {
  9965. position:absolute;
  9966. align-self:flex-start;
  9967. padding:0px 0px 0px 0px;
  9968. box-sizing:border-box;
  9969. width:100%;
  9970. }
  9971. #u50490_text {
  9972. border-width:0px;
  9973. white-space:nowrap;
  9974. text-transform:none;
  9975. }
  9976. #u50491_div {
  9977. border-width:0px;
  9978. position:absolute;
  9979. left:0px;
  9980. top:0px;
  9981. width:97px;
  9982. height:22px;
  9983. background:inherit;
  9984. background-color:rgba(255, 255, 255, 0);
  9985. border:none;
  9986. border-radius:0px;
  9987. -moz-box-shadow:none;
  9988. -webkit-box-shadow:none;
  9989. box-shadow:none;
  9990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9991. font-weight:400;
  9992. font-style:normal;
  9993. font-size:16px;
  9994. }
  9995. #u50491 {
  9996. border-width:0px;
  9997. position:absolute;
  9998. left:147px;
  9999. top:345px;
  10000. width:97px;
  10001. height:22px;
  10002. display:flex;
  10003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10004. font-weight:400;
  10005. font-style:normal;
  10006. font-size:16px;
  10007. }
  10008. #u50491 .text {
  10009. position:absolute;
  10010. align-self:flex-start;
  10011. padding:0px 0px 0px 0px;
  10012. box-sizing:border-box;
  10013. width:100%;
  10014. }
  10015. #u50491_text {
  10016. border-width:0px;
  10017. word-wrap:break-word;
  10018. text-transform:none;
  10019. }
  10020. #u50492_img {
  10021. border-width:0px;
  10022. position:absolute;
  10023. left:0px;
  10024. top:0px;
  10025. width:201px;
  10026. height:2px;
  10027. }
  10028. #u50492 {
  10029. border-width:0px;
  10030. position:absolute;
  10031. left:120px;
  10032. top:514px;
  10033. width:200px;
  10034. height:1px;
  10035. display:flex;
  10036. }
  10037. #u50492 .text {
  10038. position:absolute;
  10039. align-self:center;
  10040. padding:2px 2px 2px 2px;
  10041. box-sizing:border-box;
  10042. width:100%;
  10043. }
  10044. #u50492_text {
  10045. border-width:0px;
  10046. word-wrap:break-word;
  10047. text-transform:none;
  10048. visibility:hidden;
  10049. }
  10050. #u50493_div {
  10051. border-width:0px;
  10052. position:absolute;
  10053. left:0px;
  10054. top:0px;
  10055. width:97px;
  10056. height:22px;
  10057. background:inherit;
  10058. background-color:rgba(255, 255, 255, 0);
  10059. border:none;
  10060. border-radius:0px;
  10061. -moz-box-shadow:none;
  10062. -webkit-box-shadow:none;
  10063. box-shadow:none;
  10064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10065. font-weight:400;
  10066. font-style:normal;
  10067. font-size:16px;
  10068. }
  10069. #u50493 {
  10070. border-width:0px;
  10071. position:absolute;
  10072. left:147px;
  10073. top:429px;
  10074. width:97px;
  10075. height:22px;
  10076. display:flex;
  10077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10078. font-weight:400;
  10079. font-style:normal;
  10080. font-size:16px;
  10081. }
  10082. #u50493 .text {
  10083. position:absolute;
  10084. align-self:flex-start;
  10085. padding:0px 0px 0px 0px;
  10086. box-sizing:border-box;
  10087. width:100%;
  10088. }
  10089. #u50493_text {
  10090. border-width:0px;
  10091. word-wrap:break-word;
  10092. text-transform:none;
  10093. }
  10094. #u50494_div {
  10095. border-width:0px;
  10096. position:absolute;
  10097. left:0px;
  10098. top:0px;
  10099. width:97px;
  10100. height:22px;
  10101. background:inherit;
  10102. background-color:rgba(255, 255, 255, 0);
  10103. border:none;
  10104. border-radius:0px;
  10105. -moz-box-shadow:none;
  10106. -webkit-box-shadow:none;
  10107. box-shadow:none;
  10108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10109. font-weight:400;
  10110. font-style:normal;
  10111. font-size:16px;
  10112. }
  10113. #u50494 {
  10114. border-width:0px;
  10115. position:absolute;
  10116. left:147px;
  10117. top:471px;
  10118. width:97px;
  10119. height:22px;
  10120. display:flex;
  10121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10122. font-weight:400;
  10123. font-style:normal;
  10124. font-size:16px;
  10125. }
  10126. #u50494 .text {
  10127. position:absolute;
  10128. align-self:flex-start;
  10129. padding:0px 0px 0px 0px;
  10130. box-sizing:border-box;
  10131. width:100%;
  10132. }
  10133. #u50494_text {
  10134. border-width:0px;
  10135. white-space:nowrap;
  10136. text-transform:none;
  10137. }