styles.css 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u41377_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. #u41377 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u41377 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u41377_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u41378_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. #u41378 {
  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. #u41378 .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. #u41378_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u41379_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. #u41379 {
  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. #u41379 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u41379_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u41380 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u41381_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u41381 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u41381 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u41381_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u41382_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. #u41382 {
  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. #u41382 .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. #u41382_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u41383_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. #u41383 {
  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. #u41383 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u41383_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u41384 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u41385_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u41385_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u41385_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u41385 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u41385 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u41385_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u41385.disabled {
  356. }
  357. .u41385_input_option {
  358. font-size:14px;
  359. }
  360. #u41386_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u41386 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u41386 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u41386_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u41387_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u41387 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u41387 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u41387_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u41388_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u41388 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u41388 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u41388_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u41389 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u41390_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u41390 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u41390 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u41390_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u41391_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u41391 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u41391 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u41391_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u41392 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u41393_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u41393 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u41393 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u41393_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u41394_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u41394 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u41394 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u41394_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u41395 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u41396_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u41396 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u41396 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u41396_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u41397_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u41397 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u41397 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u41397_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u41398 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u41399_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u41399 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u41399 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u41399_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u41400_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u41400 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u41400 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u41400_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u41401 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u41402_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u41402 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u41402 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u41402_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u41403_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u41403 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u41403 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u41403_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u41404 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u41405_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u41405 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u41405 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u41405_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u41406_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u41406 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u41406 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u41406_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u41407 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u41408_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u41408 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u41408 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u41408_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u41409_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u41409 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u41409 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u41409_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u41410 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u41411_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u41411 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u41411 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u41411_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u41412_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u41412 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u41412 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u41412_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u41413 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u41414_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u41414 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u41414 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u41414_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u41415_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u41415 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u41415 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u41415_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u41416 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u41417_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u41417 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u41417 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u41417_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u41418_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u41418 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u41418 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u41418_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u41419_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u41419 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u41419 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u41419_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u41420_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u41420 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u41420 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u41420_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u41421_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u41421 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u41421 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u41421_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u41422_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u41422 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u41422 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u41422_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u41423 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u41424_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u41424 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u41424 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u41424_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u41425_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u41425 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u41425 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u41425_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u41426 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u41427_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u41427 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u41427 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u41427_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u41428_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u41428 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u41428 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u41428_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u41429_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1254px;
  1644. height:1070px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:12px;
  1656. color:#FFFFFF;
  1657. text-align:left;
  1658. }
  1659. #u41429 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:334px;
  1663. top:160px;
  1664. width:1254px;
  1665. height:1070px;
  1666. display:flex;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:12px;
  1671. color:#FFFFFF;
  1672. text-align:left;
  1673. }
  1674. #u41429 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:2px 2px 2px 50px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u41429_text {
  1682. border-width:0px;
  1683. word-wrap:break-word;
  1684. text-transform:none;
  1685. visibility:hidden;
  1686. }
  1687. #u41430_div {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:1253px;
  1693. height:100px;
  1694. background:inherit;
  1695. background-color:rgba(255, 255, 255, 1);
  1696. border:none;
  1697. border-radius:0px;
  1698. -moz-box-shadow:none;
  1699. -webkit-box-shadow:none;
  1700. box-shadow:none;
  1701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1702. font-weight:400;
  1703. font-style:normal;
  1704. font-size:12px;
  1705. color:#FFFFFF;
  1706. text-align:left;
  1707. }
  1708. #u41430 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:335px;
  1712. top:50px;
  1713. width:1253px;
  1714. height:100px;
  1715. display:flex;
  1716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. font-size:12px;
  1720. color:#FFFFFF;
  1721. text-align:left;
  1722. }
  1723. #u41430 .text {
  1724. position:absolute;
  1725. align-self:center;
  1726. padding:2px 2px 2px 50px;
  1727. box-sizing:border-box;
  1728. width:100%;
  1729. }
  1730. #u41430_text {
  1731. border-width:0px;
  1732. word-wrap:break-word;
  1733. text-transform:none;
  1734. visibility:hidden;
  1735. }
  1736. #u41431_div {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:55px;
  1742. height:50px;
  1743. background:inherit;
  1744. background-color:rgba(255, 255, 255, 0);
  1745. border:none;
  1746. border-left:0px;
  1747. border-top:0px;
  1748. border-right:0px;
  1749. border-radius:0px;
  1750. border-bottom-right-radius:0px;
  1751. border-bottom-left-radius:0px;
  1752. -moz-box-shadow:none;
  1753. -webkit-box-shadow:none;
  1754. box-shadow:none;
  1755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1756. font-weight:400;
  1757. font-style:normal;
  1758. font-size:18px;
  1759. }
  1760. #u41431 {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:354px;
  1764. top:50px;
  1765. width:55px;
  1766. height:50px;
  1767. display:flex;
  1768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1769. font-weight:400;
  1770. font-style:normal;
  1771. font-size:18px;
  1772. }
  1773. #u41431 .text {
  1774. position:absolute;
  1775. align-self:center;
  1776. padding:0px 0px 0px 0px;
  1777. box-sizing:border-box;
  1778. width:100%;
  1779. }
  1780. #u41431_text {
  1781. border-width:0px;
  1782. white-space:nowrap;
  1783. text-transform:none;
  1784. }
  1785. #u41432_img {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:13px;
  1791. height:13px;
  1792. }
  1793. #u41432 {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:423px;
  1797. top:69px;
  1798. width:13px;
  1799. height:13px;
  1800. display:flex;
  1801. }
  1802. #u41432 .text {
  1803. position:absolute;
  1804. align-self:center;
  1805. padding:2px 2px 2px 2px;
  1806. box-sizing:border-box;
  1807. width:100%;
  1808. }
  1809. #u41432_text {
  1810. border-width:0px;
  1811. word-wrap:break-word;
  1812. text-transform:none;
  1813. visibility:hidden;
  1814. }
  1815. #u41433 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:366px;
  1819. top:192px;
  1820. width:108px;
  1821. height:260px;
  1822. }
  1823. #u41433_children {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:0px;
  1829. height:0px;
  1830. }
  1831. #u41434 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:80px;
  1837. height:20px;
  1838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1839. font-weight:400;
  1840. font-style:normal;
  1841. }
  1842. #u41435_img {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:0px;
  1846. top:0px;
  1847. width:9px;
  1848. height:9px;
  1849. }
  1850. #u41435 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:6px;
  1854. top:6px;
  1855. width:9px;
  1856. height:9px;
  1857. display:flex;
  1858. }
  1859. #u41435 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 2px 2px 2px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u41435_img.selected {
  1867. }
  1868. #u41435.selected {
  1869. }
  1870. #u41435_text {
  1871. border-width:0px;
  1872. word-wrap:break-word;
  1873. text-transform:none;
  1874. visibility:hidden;
  1875. }
  1876. #u41436_div {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:0px;
  1880. top:0px;
  1881. width:58px;
  1882. height:20px;
  1883. background:inherit;
  1884. background-color:rgba(255, 255, 255, 0);
  1885. border:none;
  1886. border-radius:0px;
  1887. -moz-box-shadow:none;
  1888. -webkit-box-shadow:none;
  1889. box-shadow:none;
  1890. }
  1891. #u41436 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:22px;
  1895. top:0px;
  1896. width:58px;
  1897. height:20px;
  1898. display:flex;
  1899. }
  1900. #u41436 .text {
  1901. position:absolute;
  1902. align-self:center;
  1903. padding:2px 2px 2px 3px;
  1904. box-sizing:border-box;
  1905. width:100%;
  1906. }
  1907. #u41436_text {
  1908. border-width:0px;
  1909. white-space:nowrap;
  1910. text-transform:none;
  1911. }
  1912. #u41434_children {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:0px;
  1918. height:0px;
  1919. }
  1920. #u41437 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:20px;
  1924. top:20px;
  1925. width:66px;
  1926. height:20px;
  1927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1928. font-weight:400;
  1929. font-style:normal;
  1930. }
  1931. #u41438_div {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:44px;
  1937. height:20px;
  1938. background:inherit;
  1939. background-color:rgba(255, 255, 255, 0);
  1940. border:none;
  1941. border-radius:0px;
  1942. -moz-box-shadow:none;
  1943. -webkit-box-shadow:none;
  1944. box-shadow:none;
  1945. }
  1946. #u41438 {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:22px;
  1950. top:0px;
  1951. width:44px;
  1952. height:20px;
  1953. display:flex;
  1954. }
  1955. #u41438 .text {
  1956. position:absolute;
  1957. align-self:center;
  1958. padding:2px 2px 2px 3px;
  1959. box-sizing:border-box;
  1960. width:100%;
  1961. }
  1962. #u41438_text {
  1963. border-width:0px;
  1964. white-space:nowrap;
  1965. text-transform:none;
  1966. }
  1967. #u41439 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:20px;
  1971. top:40px;
  1972. width:80px;
  1973. height:20px;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. }
  1978. #u41440_div {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:58px;
  1984. height:20px;
  1985. background:inherit;
  1986. background-color:rgba(255, 255, 255, 0);
  1987. border:none;
  1988. border-radius:0px;
  1989. -moz-box-shadow:none;
  1990. -webkit-box-shadow:none;
  1991. box-shadow:none;
  1992. }
  1993. #u41440 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:22px;
  1997. top:0px;
  1998. width:58px;
  1999. height:20px;
  2000. display:flex;
  2001. }
  2002. #u41440 .text {
  2003. position:absolute;
  2004. align-self:center;
  2005. padding:2px 2px 2px 3px;
  2006. box-sizing:border-box;
  2007. width:100%;
  2008. }
  2009. #u41440_text {
  2010. border-width:0px;
  2011. white-space:nowrap;
  2012. text-transform:none;
  2013. }
  2014. #u41441 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:60px;
  2019. width:80px;
  2020. height:20px;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. }
  2025. #u41442_img {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:9px;
  2031. height:9px;
  2032. }
  2033. #u41442 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:6px;
  2037. top:6px;
  2038. width:9px;
  2039. height:9px;
  2040. display:flex;
  2041. }
  2042. #u41442 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 2px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u41442_img.selected {
  2050. }
  2051. #u41442.selected {
  2052. }
  2053. #u41442_text {
  2054. border-width:0px;
  2055. word-wrap:break-word;
  2056. text-transform:none;
  2057. visibility:hidden;
  2058. }
  2059. #u41443_div {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:58px;
  2065. height:20px;
  2066. background:inherit;
  2067. background-color:rgba(255, 255, 255, 0);
  2068. border:none;
  2069. border-radius:0px;
  2070. -moz-box-shadow:none;
  2071. -webkit-box-shadow:none;
  2072. box-shadow:none;
  2073. }
  2074. #u41443 {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:22px;
  2078. top:0px;
  2079. width:58px;
  2080. height:20px;
  2081. display:flex;
  2082. }
  2083. #u41443 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:2px 2px 2px 3px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u41443_text {
  2091. border-width:0px;
  2092. white-space:nowrap;
  2093. text-transform:none;
  2094. }
  2095. #u41441_children {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:0px;
  2101. height:0px;
  2102. }
  2103. #u41444 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:20px;
  2107. top:20px;
  2108. width:85px;
  2109. height:20px;
  2110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2111. font-weight:400;
  2112. font-style:normal;
  2113. }
  2114. #u41445_div {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:0px;
  2118. top:0px;
  2119. width:63px;
  2120. height:20px;
  2121. background:inherit;
  2122. background-color:rgba(255, 255, 255, 0);
  2123. border:none;
  2124. border-radius:0px;
  2125. -moz-box-shadow:none;
  2126. -webkit-box-shadow:none;
  2127. box-shadow:none;
  2128. }
  2129. #u41445 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:22px;
  2133. top:0px;
  2134. width:63px;
  2135. height:20px;
  2136. display:flex;
  2137. }
  2138. #u41445 .text {
  2139. position:absolute;
  2140. align-self:center;
  2141. padding:2px 2px 2px 3px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u41445_text {
  2146. border-width:0px;
  2147. white-space:nowrap;
  2148. text-transform:none;
  2149. }
  2150. #u41446 {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:20px;
  2154. top:40px;
  2155. width:88px;
  2156. height:20px;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. }
  2161. #u41447_div {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:66px;
  2167. height:20px;
  2168. background:inherit;
  2169. background-color:rgba(255, 255, 255, 0);
  2170. border:none;
  2171. border-radius:0px;
  2172. -moz-box-shadow:none;
  2173. -webkit-box-shadow:none;
  2174. box-shadow:none;
  2175. }
  2176. #u41447 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:22px;
  2180. top:0px;
  2181. width:66px;
  2182. height:20px;
  2183. display:flex;
  2184. }
  2185. #u41447 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:2px 2px 2px 3px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u41447_text {
  2193. border-width:0px;
  2194. white-space:nowrap;
  2195. text-transform:none;
  2196. }
  2197. #u41448 {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:20px;
  2201. top:60px;
  2202. width:41px;
  2203. height:20px;
  2204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2205. font-weight:400;
  2206. font-style:normal;
  2207. }
  2208. #u41449_div {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:19px;
  2214. height:20px;
  2215. background:inherit;
  2216. background-color:rgba(255, 255, 255, 0);
  2217. border:none;
  2218. border-radius:0px;
  2219. -moz-box-shadow:none;
  2220. -webkit-box-shadow:none;
  2221. box-shadow:none;
  2222. }
  2223. #u41449 {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:22px;
  2227. top:0px;
  2228. width:19px;
  2229. height:20px;
  2230. display:flex;
  2231. }
  2232. #u41449 .text {
  2233. position:absolute;
  2234. align-self:center;
  2235. padding:2px 2px 2px 3px;
  2236. box-sizing:border-box;
  2237. width:100%;
  2238. }
  2239. #u41449_text {
  2240. border-width:0px;
  2241. white-space:nowrap;
  2242. text-transform:none;
  2243. }
  2244. #u41450 {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:20px;
  2248. top:80px;
  2249. width:54px;
  2250. height:20px;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. }
  2255. #u41451_div {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:32px;
  2261. height:20px;
  2262. background:inherit;
  2263. background-color:rgba(255, 255, 255, 0);
  2264. border:none;
  2265. border-radius:0px;
  2266. -moz-box-shadow:none;
  2267. -webkit-box-shadow:none;
  2268. box-shadow:none;
  2269. }
  2270. #u41451 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:22px;
  2274. top:0px;
  2275. width:32px;
  2276. height:20px;
  2277. display:flex;
  2278. }
  2279. #u41451 .text {
  2280. position:absolute;
  2281. align-self:center;
  2282. padding:2px 2px 2px 3px;
  2283. box-sizing:border-box;
  2284. width:100%;
  2285. }
  2286. #u41451_text {
  2287. border-width:0px;
  2288. white-space:nowrap;
  2289. text-transform:none;
  2290. }
  2291. #u41452 {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:0px;
  2295. top:160px;
  2296. width:80px;
  2297. height:20px;
  2298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2299. font-weight:400;
  2300. font-style:normal;
  2301. }
  2302. #u41453_img {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:9px;
  2308. height:9px;
  2309. }
  2310. #u41453 {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:6px;
  2314. top:6px;
  2315. width:9px;
  2316. height:9px;
  2317. display:flex;
  2318. }
  2319. #u41453 .text {
  2320. position:absolute;
  2321. align-self:center;
  2322. padding:2px 2px 2px 2px;
  2323. box-sizing:border-box;
  2324. width:100%;
  2325. }
  2326. #u41453_img.selected {
  2327. }
  2328. #u41453.selected {
  2329. }
  2330. #u41453_text {
  2331. border-width:0px;
  2332. word-wrap:break-word;
  2333. text-transform:none;
  2334. visibility:hidden;
  2335. }
  2336. #u41454_div {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:0px;
  2340. top:0px;
  2341. width:58px;
  2342. height:20px;
  2343. background:inherit;
  2344. background-color:rgba(255, 255, 255, 0);
  2345. border:none;
  2346. border-radius:0px;
  2347. -moz-box-shadow:none;
  2348. -webkit-box-shadow:none;
  2349. box-shadow:none;
  2350. }
  2351. #u41454 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:22px;
  2355. top:0px;
  2356. width:58px;
  2357. height:20px;
  2358. display:flex;
  2359. }
  2360. #u41454 .text {
  2361. position:absolute;
  2362. align-self:center;
  2363. padding:2px 2px 2px 3px;
  2364. box-sizing:border-box;
  2365. width:100%;
  2366. }
  2367. #u41454_text {
  2368. border-width:0px;
  2369. white-space:nowrap;
  2370. text-transform:none;
  2371. }
  2372. #u41452_children {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:0px;
  2376. top:0px;
  2377. width:0px;
  2378. height:0px;
  2379. }
  2380. #u41455 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:20px;
  2384. top:20px;
  2385. width:85px;
  2386. height:20px;
  2387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2388. font-weight:400;
  2389. font-style:normal;
  2390. }
  2391. #u41456_div {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:63px;
  2397. height:20px;
  2398. background:inherit;
  2399. background-color:rgba(255, 255, 255, 0);
  2400. border:none;
  2401. border-radius:0px;
  2402. -moz-box-shadow:none;
  2403. -webkit-box-shadow:none;
  2404. box-shadow:none;
  2405. }
  2406. #u41456 {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:22px;
  2410. top:0px;
  2411. width:63px;
  2412. height:20px;
  2413. display:flex;
  2414. }
  2415. #u41456 .text {
  2416. position:absolute;
  2417. align-self:center;
  2418. padding:2px 2px 2px 3px;
  2419. box-sizing:border-box;
  2420. width:100%;
  2421. }
  2422. #u41456_text {
  2423. border-width:0px;
  2424. white-space:nowrap;
  2425. text-transform:none;
  2426. }
  2427. #u41457 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:20px;
  2431. top:40px;
  2432. width:88px;
  2433. height:20px;
  2434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2435. font-weight:400;
  2436. font-style:normal;
  2437. }
  2438. #u41458_div {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:0px;
  2442. top:0px;
  2443. width:66px;
  2444. height:20px;
  2445. background:inherit;
  2446. background-color:rgba(255, 255, 255, 0);
  2447. border:none;
  2448. border-radius:0px;
  2449. -moz-box-shadow:none;
  2450. -webkit-box-shadow:none;
  2451. box-shadow:none;
  2452. }
  2453. #u41458 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:22px;
  2457. top:0px;
  2458. width:66px;
  2459. height:20px;
  2460. display:flex;
  2461. }
  2462. #u41458 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:2px 2px 2px 3px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u41458_text {
  2470. border-width:0px;
  2471. white-space:nowrap;
  2472. text-transform:none;
  2473. }
  2474. #u41459 {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:20px;
  2478. top:60px;
  2479. width:41px;
  2480. height:20px;
  2481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2482. font-weight:400;
  2483. font-style:normal;
  2484. }
  2485. #u41460_div {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:19px;
  2491. height:20px;
  2492. background:inherit;
  2493. background-color:rgba(255, 255, 255, 0);
  2494. border:none;
  2495. border-radius:0px;
  2496. -moz-box-shadow:none;
  2497. -webkit-box-shadow:none;
  2498. box-shadow:none;
  2499. }
  2500. #u41460 {
  2501. border-width:0px;
  2502. position:absolute;
  2503. left:22px;
  2504. top:0px;
  2505. width:19px;
  2506. height:20px;
  2507. display:flex;
  2508. }
  2509. #u41460 .text {
  2510. position:absolute;
  2511. align-self:center;
  2512. padding:2px 2px 2px 3px;
  2513. box-sizing:border-box;
  2514. width:100%;
  2515. }
  2516. #u41460_text {
  2517. border-width:0px;
  2518. white-space:nowrap;
  2519. text-transform:none;
  2520. }
  2521. #u41461 {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:20px;
  2525. top:80px;
  2526. width:54px;
  2527. height:20px;
  2528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2529. font-weight:400;
  2530. font-style:normal;
  2531. }
  2532. #u41462_div {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:0px;
  2536. top:0px;
  2537. width:32px;
  2538. height:20px;
  2539. background:inherit;
  2540. background-color:rgba(255, 255, 255, 0);
  2541. border:none;
  2542. border-radius:0px;
  2543. -moz-box-shadow:none;
  2544. -webkit-box-shadow:none;
  2545. box-shadow:none;
  2546. }
  2547. #u41462 {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:22px;
  2551. top:0px;
  2552. width:32px;
  2553. height:20px;
  2554. display:flex;
  2555. }
  2556. #u41462 .text {
  2557. position:absolute;
  2558. align-self:center;
  2559. padding:2px 2px 2px 3px;
  2560. box-sizing:border-box;
  2561. width:100%;
  2562. }
  2563. #u41462_text {
  2564. border-width:0px;
  2565. white-space:nowrap;
  2566. text-transform:none;
  2567. }
  2568. #u41463 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:554px;
  2572. top:242px;
  2573. width:994px;
  2574. height:322px;
  2575. }
  2576. #u41464_img {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:0px;
  2580. top:0px;
  2581. width:83px;
  2582. height:38px;
  2583. }
  2584. #u41464 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:83px;
  2590. height:38px;
  2591. display:flex;
  2592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2593. font-weight:400;
  2594. font-style:normal;
  2595. font-size:12px;
  2596. color:#FFFFFF;
  2597. }
  2598. #u41464 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:2px 2px 2px 0px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u41464_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. }
  2610. #u41465_img {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:83px;
  2616. height:38px;
  2617. }
  2618. #u41465 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:83px;
  2622. top:0px;
  2623. width:83px;
  2624. height:38px;
  2625. display:flex;
  2626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:12px;
  2630. color:#FFFFFF;
  2631. }
  2632. #u41465 .text {
  2633. position:absolute;
  2634. align-self:center;
  2635. padding:2px 2px 2px 0px;
  2636. box-sizing:border-box;
  2637. width:100%;
  2638. }
  2639. #u41465_text {
  2640. border-width:0px;
  2641. word-wrap:break-word;
  2642. text-transform:none;
  2643. }
  2644. #u41466_img {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:0px;
  2648. top:0px;
  2649. width:83px;
  2650. height:38px;
  2651. }
  2652. #u41466 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:166px;
  2656. top:0px;
  2657. width:83px;
  2658. height:38px;
  2659. display:flex;
  2660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2661. font-weight:400;
  2662. font-style:normal;
  2663. font-size:12px;
  2664. color:#FFFFFF;
  2665. }
  2666. #u41466 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:2px 2px 2px 0px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u41466_text {
  2674. border-width:0px;
  2675. word-wrap:break-word;
  2676. text-transform:none;
  2677. }
  2678. #u41467_img {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:0px;
  2682. top:0px;
  2683. width:83px;
  2684. height:38px;
  2685. }
  2686. #u41467 {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:249px;
  2690. top:0px;
  2691. width:83px;
  2692. height:38px;
  2693. display:flex;
  2694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2695. font-weight:400;
  2696. font-style:normal;
  2697. font-size:12px;
  2698. color:#FFFFFF;
  2699. }
  2700. #u41467 .text {
  2701. position:absolute;
  2702. align-self:center;
  2703. padding:2px 2px 2px 0px;
  2704. box-sizing:border-box;
  2705. width:100%;
  2706. }
  2707. #u41467_text {
  2708. border-width:0px;
  2709. word-wrap:break-word;
  2710. text-transform:none;
  2711. }
  2712. #u41468_img {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:83px;
  2718. height:38px;
  2719. }
  2720. #u41468 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:332px;
  2724. top:0px;
  2725. width:83px;
  2726. height:38px;
  2727. display:flex;
  2728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2729. font-weight:400;
  2730. font-style:normal;
  2731. font-size:12px;
  2732. color:#FFFFFF;
  2733. }
  2734. #u41468 .text {
  2735. position:absolute;
  2736. align-self:center;
  2737. padding:2px 2px 2px 0px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u41468_text {
  2742. border-width:0px;
  2743. word-wrap:break-word;
  2744. text-transform:none;
  2745. }
  2746. #u41469_img {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:0px;
  2750. top:0px;
  2751. width:90px;
  2752. height:38px;
  2753. }
  2754. #u41469 {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:415px;
  2758. top:0px;
  2759. width:90px;
  2760. height:38px;
  2761. display:flex;
  2762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2763. font-weight:400;
  2764. font-style:normal;
  2765. font-size:12px;
  2766. color:#FFFFFF;
  2767. }
  2768. #u41469 .text {
  2769. position:absolute;
  2770. align-self:center;
  2771. padding:2px 2px 2px 0px;
  2772. box-sizing:border-box;
  2773. width:100%;
  2774. }
  2775. #u41469_text {
  2776. border-width:0px;
  2777. word-wrap:break-word;
  2778. text-transform:none;
  2779. }
  2780. #u41470_img {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:83px;
  2786. height:38px;
  2787. }
  2788. #u41470 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:505px;
  2792. top:0px;
  2793. width:83px;
  2794. height:38px;
  2795. display:flex;
  2796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2797. font-weight:400;
  2798. font-style:normal;
  2799. font-size:12px;
  2800. color:#FFFFFF;
  2801. }
  2802. #u41470 .text {
  2803. position:absolute;
  2804. align-self:center;
  2805. padding:2px 2px 2px 0px;
  2806. box-sizing:border-box;
  2807. width:100%;
  2808. }
  2809. #u41470_text {
  2810. border-width:0px;
  2811. word-wrap:break-word;
  2812. text-transform:none;
  2813. }
  2814. #u41471_img {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:0px;
  2818. top:0px;
  2819. width:83px;
  2820. height:38px;
  2821. }
  2822. #u41471 {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:588px;
  2826. top:0px;
  2827. width:83px;
  2828. height:38px;
  2829. display:flex;
  2830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2831. font-weight:400;
  2832. font-style:normal;
  2833. font-size:12px;
  2834. color:#FFFFFF;
  2835. }
  2836. #u41471 .text {
  2837. position:absolute;
  2838. align-self:center;
  2839. padding:2px 2px 2px 0px;
  2840. box-sizing:border-box;
  2841. width:100%;
  2842. }
  2843. #u41471_text {
  2844. border-width:0px;
  2845. word-wrap:break-word;
  2846. text-transform:none;
  2847. }
  2848. #u41472_img {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:83px;
  2854. height:38px;
  2855. }
  2856. #u41472 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:671px;
  2860. top:0px;
  2861. width:83px;
  2862. height:38px;
  2863. display:flex;
  2864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2865. font-weight:400;
  2866. font-style:normal;
  2867. font-size:12px;
  2868. color:#FFFFFF;
  2869. }
  2870. #u41472 .text {
  2871. position:absolute;
  2872. align-self:center;
  2873. padding:2px 2px 2px 0px;
  2874. box-sizing:border-box;
  2875. width:100%;
  2876. }
  2877. #u41472_text {
  2878. border-width:0px;
  2879. word-wrap:break-word;
  2880. text-transform:none;
  2881. }
  2882. #u41473_img {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:0px;
  2886. top:0px;
  2887. width:82px;
  2888. height:38px;
  2889. }
  2890. #u41473 {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:754px;
  2894. top:0px;
  2895. width:82px;
  2896. height:38px;
  2897. display:flex;
  2898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2899. font-weight:400;
  2900. font-style:normal;
  2901. font-size:12px;
  2902. color:#FFFFFF;
  2903. }
  2904. #u41473 .text {
  2905. position:absolute;
  2906. align-self:center;
  2907. padding:2px 2px 2px 0px;
  2908. box-sizing:border-box;
  2909. width:100%;
  2910. }
  2911. #u41473_text {
  2912. border-width:0px;
  2913. word-wrap:break-word;
  2914. text-transform:none;
  2915. }
  2916. #u41474_img {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:92px;
  2922. height:38px;
  2923. }
  2924. #u41474 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:836px;
  2928. top:0px;
  2929. width:92px;
  2930. height:38px;
  2931. display:flex;
  2932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2933. font-weight:400;
  2934. font-style:normal;
  2935. font-size:12px;
  2936. color:#FFFFFF;
  2937. }
  2938. #u41474 .text {
  2939. position:absolute;
  2940. align-self:center;
  2941. padding:2px 2px 2px 0px;
  2942. box-sizing:border-box;
  2943. width:100%;
  2944. }
  2945. #u41474_text {
  2946. border-width:0px;
  2947. word-wrap:break-word;
  2948. text-transform:none;
  2949. }
  2950. #u41475_img {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:66px;
  2956. height:38px;
  2957. }
  2958. #u41475 {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:928px;
  2962. top:0px;
  2963. width:66px;
  2964. height:38px;
  2965. display:flex;
  2966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2967. font-weight:400;
  2968. font-style:normal;
  2969. font-size:12px;
  2970. color:#FFFFFF;
  2971. }
  2972. #u41475 .text {
  2973. position:absolute;
  2974. align-self:center;
  2975. padding:2px 2px 2px 0px;
  2976. box-sizing:border-box;
  2977. width:100%;
  2978. }
  2979. #u41475_text {
  2980. border-width:0px;
  2981. word-wrap:break-word;
  2982. text-transform:none;
  2983. }
  2984. #u41476_img {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:83px;
  2990. height:38px;
  2991. }
  2992. #u41476 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:38px;
  2997. width:83px;
  2998. height:38px;
  2999. display:flex;
  3000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3001. font-weight:400;
  3002. font-style:normal;
  3003. font-size:12px;
  3004. color:#333333;
  3005. }
  3006. #u41476 .text {
  3007. position:absolute;
  3008. align-self:center;
  3009. padding:2px 2px 2px 0px;
  3010. box-sizing:border-box;
  3011. width:100%;
  3012. }
  3013. #u41476_text {
  3014. border-width:0px;
  3015. word-wrap:break-word;
  3016. text-transform:none;
  3017. visibility:hidden;
  3018. }
  3019. #u41477_img {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:83px;
  3025. height:38px;
  3026. }
  3027. #u41477 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:83px;
  3031. top:38px;
  3032. width:83px;
  3033. height:38px;
  3034. display:flex;
  3035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3036. font-weight:400;
  3037. font-style:normal;
  3038. font-size:12px;
  3039. color:#333333;
  3040. }
  3041. #u41477 .text {
  3042. position:absolute;
  3043. align-self:center;
  3044. padding:2px 2px 2px 0px;
  3045. box-sizing:border-box;
  3046. width:100%;
  3047. }
  3048. #u41477_text {
  3049. border-width:0px;
  3050. word-wrap:break-word;
  3051. text-transform:none;
  3052. visibility:hidden;
  3053. }
  3054. #u41478_img {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:0px;
  3058. top:0px;
  3059. width:83px;
  3060. height:38px;
  3061. }
  3062. #u41478 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:166px;
  3066. top:38px;
  3067. width:83px;
  3068. height:38px;
  3069. display:flex;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:12px;
  3074. color:#333333;
  3075. }
  3076. #u41478 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:2px 2px 2px 0px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u41478_text {
  3084. border-width:0px;
  3085. word-wrap:break-word;
  3086. text-transform:none;
  3087. visibility:hidden;
  3088. }
  3089. #u41479_img {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:83px;
  3095. height:38px;
  3096. }
  3097. #u41479 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:249px;
  3101. top:38px;
  3102. width:83px;
  3103. height:38px;
  3104. display:flex;
  3105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:12px;
  3109. color:#333333;
  3110. }
  3111. #u41479 .text {
  3112. position:absolute;
  3113. align-self:center;
  3114. padding:2px 2px 2px 0px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u41479_text {
  3119. border-width:0px;
  3120. word-wrap:break-word;
  3121. text-transform:none;
  3122. visibility:hidden;
  3123. }
  3124. #u41480_img {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:0px;
  3129. width:83px;
  3130. height:38px;
  3131. }
  3132. #u41480 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:332px;
  3136. top:38px;
  3137. width:83px;
  3138. height:38px;
  3139. display:flex;
  3140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3141. font-weight:400;
  3142. font-style:normal;
  3143. font-size:12px;
  3144. color:#333333;
  3145. }
  3146. #u41480 .text {
  3147. position:absolute;
  3148. align-self:center;
  3149. padding:2px 2px 2px 0px;
  3150. box-sizing:border-box;
  3151. width:100%;
  3152. }
  3153. #u41480_text {
  3154. border-width:0px;
  3155. word-wrap:break-word;
  3156. text-transform:none;
  3157. visibility:hidden;
  3158. }
  3159. #u41481_img {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:0px;
  3163. top:0px;
  3164. width:90px;
  3165. height:38px;
  3166. }
  3167. #u41481 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:415px;
  3171. top:38px;
  3172. width:90px;
  3173. height:38px;
  3174. display:flex;
  3175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3176. font-weight:400;
  3177. font-style:normal;
  3178. font-size:12px;
  3179. color:#333333;
  3180. }
  3181. #u41481 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 0px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u41481_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. visibility:hidden;
  3193. }
  3194. #u41482_img {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:83px;
  3200. height:38px;
  3201. }
  3202. #u41482 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:505px;
  3206. top:38px;
  3207. width:83px;
  3208. height:38px;
  3209. display:flex;
  3210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3211. font-weight:400;
  3212. font-style:normal;
  3213. font-size:12px;
  3214. color:#333333;
  3215. }
  3216. #u41482 .text {
  3217. position:absolute;
  3218. align-self:center;
  3219. padding:2px 2px 2px 0px;
  3220. box-sizing:border-box;
  3221. width:100%;
  3222. }
  3223. #u41482_text {
  3224. border-width:0px;
  3225. word-wrap:break-word;
  3226. text-transform:none;
  3227. visibility:hidden;
  3228. }
  3229. #u41483_img {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:0px;
  3233. top:0px;
  3234. width:83px;
  3235. height:38px;
  3236. }
  3237. #u41483 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:588px;
  3241. top:38px;
  3242. width:83px;
  3243. height:38px;
  3244. display:flex;
  3245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3246. font-weight:400;
  3247. font-style:normal;
  3248. font-size:12px;
  3249. color:#333333;
  3250. }
  3251. #u41483 .text {
  3252. position:absolute;
  3253. align-self:center;
  3254. padding:2px 2px 2px 0px;
  3255. box-sizing:border-box;
  3256. width:100%;
  3257. }
  3258. #u41483_text {
  3259. border-width:0px;
  3260. word-wrap:break-word;
  3261. text-transform:none;
  3262. visibility:hidden;
  3263. }
  3264. #u41484_img {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:83px;
  3270. height:38px;
  3271. }
  3272. #u41484 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:671px;
  3276. top:38px;
  3277. width:83px;
  3278. height:38px;
  3279. display:flex;
  3280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3281. font-weight:400;
  3282. font-style:normal;
  3283. font-size:12px;
  3284. color:#333333;
  3285. }
  3286. #u41484 .text {
  3287. position:absolute;
  3288. align-self:center;
  3289. padding:2px 2px 2px 0px;
  3290. box-sizing:border-box;
  3291. width:100%;
  3292. }
  3293. #u41484_text {
  3294. border-width:0px;
  3295. word-wrap:break-word;
  3296. text-transform:none;
  3297. visibility:hidden;
  3298. }
  3299. #u41485_img {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:82px;
  3305. height:38px;
  3306. }
  3307. #u41485 {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:754px;
  3311. top:38px;
  3312. width:82px;
  3313. height:38px;
  3314. display:flex;
  3315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3316. font-weight:400;
  3317. font-style:normal;
  3318. font-size:12px;
  3319. color:#333333;
  3320. }
  3321. #u41485 .text {
  3322. position:absolute;
  3323. align-self:center;
  3324. padding:2px 2px 2px 0px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u41485_text {
  3329. border-width:0px;
  3330. word-wrap:break-word;
  3331. text-transform:none;
  3332. visibility:hidden;
  3333. }
  3334. #u41486_img {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:92px;
  3340. height:38px;
  3341. }
  3342. #u41486 {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:836px;
  3346. top:38px;
  3347. width:92px;
  3348. height:38px;
  3349. display:flex;
  3350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3351. font-weight:400;
  3352. font-style:normal;
  3353. font-size:12px;
  3354. color:#333333;
  3355. }
  3356. #u41486 .text {
  3357. position:absolute;
  3358. align-self:center;
  3359. padding:2px 2px 2px 0px;
  3360. box-sizing:border-box;
  3361. width:100%;
  3362. }
  3363. #u41486_text {
  3364. border-width:0px;
  3365. word-wrap:break-word;
  3366. text-transform:none;
  3367. visibility:hidden;
  3368. }
  3369. #u41487_img {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:66px;
  3375. height:38px;
  3376. }
  3377. #u41487 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:928px;
  3381. top:38px;
  3382. width:66px;
  3383. height:38px;
  3384. display:flex;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:12px;
  3389. color:#298FFF;
  3390. }
  3391. #u41487 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:2px 2px 2px 0px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u41487_text {
  3399. border-width:0px;
  3400. word-wrap:break-word;
  3401. text-transform:none;
  3402. }
  3403. #u41488_img {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:83px;
  3409. height:38px;
  3410. }
  3411. #u41488 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:0px;
  3415. top:76px;
  3416. width:83px;
  3417. height:38px;
  3418. display:flex;
  3419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3420. font-weight:400;
  3421. font-style:normal;
  3422. font-size:12px;
  3423. color:#333333;
  3424. }
  3425. #u41488 .text {
  3426. position:absolute;
  3427. align-self:center;
  3428. padding:2px 2px 2px 0px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u41488_text {
  3433. border-width:0px;
  3434. word-wrap:break-word;
  3435. text-transform:none;
  3436. visibility:hidden;
  3437. }
  3438. #u41489_img {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:83px;
  3444. height:38px;
  3445. }
  3446. #u41489 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:83px;
  3450. top:76px;
  3451. width:83px;
  3452. height:38px;
  3453. display:flex;
  3454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3455. font-weight:400;
  3456. font-style:normal;
  3457. font-size:12px;
  3458. color:#333333;
  3459. }
  3460. #u41489 .text {
  3461. position:absolute;
  3462. align-self:center;
  3463. padding:2px 2px 2px 0px;
  3464. box-sizing:border-box;
  3465. width:100%;
  3466. }
  3467. #u41489_text {
  3468. border-width:0px;
  3469. word-wrap:break-word;
  3470. text-transform:none;
  3471. visibility:hidden;
  3472. }
  3473. #u41490_img {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:0px;
  3477. top:0px;
  3478. width:83px;
  3479. height:38px;
  3480. }
  3481. #u41490 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:166px;
  3485. top:76px;
  3486. width:83px;
  3487. height:38px;
  3488. display:flex;
  3489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:12px;
  3493. color:#333333;
  3494. }
  3495. #u41490 .text {
  3496. position:absolute;
  3497. align-self:center;
  3498. padding:2px 2px 2px 0px;
  3499. box-sizing:border-box;
  3500. width:100%;
  3501. }
  3502. #u41490_text {
  3503. border-width:0px;
  3504. word-wrap:break-word;
  3505. text-transform:none;
  3506. visibility:hidden;
  3507. }
  3508. #u41491_img {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:0px;
  3512. top:0px;
  3513. width:83px;
  3514. height:38px;
  3515. }
  3516. #u41491 {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:249px;
  3520. top:76px;
  3521. width:83px;
  3522. height:38px;
  3523. display:flex;
  3524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3525. font-weight:400;
  3526. font-style:normal;
  3527. font-size:12px;
  3528. color:#333333;
  3529. }
  3530. #u41491 .text {
  3531. position:absolute;
  3532. align-self:center;
  3533. padding:2px 2px 2px 0px;
  3534. box-sizing:border-box;
  3535. width:100%;
  3536. }
  3537. #u41491_text {
  3538. border-width:0px;
  3539. word-wrap:break-word;
  3540. text-transform:none;
  3541. visibility:hidden;
  3542. }
  3543. #u41492_img {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:0px;
  3548. width:83px;
  3549. height:38px;
  3550. }
  3551. #u41492 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:332px;
  3555. top:76px;
  3556. width:83px;
  3557. height:38px;
  3558. display:flex;
  3559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3560. font-weight:400;
  3561. font-style:normal;
  3562. font-size:12px;
  3563. color:#333333;
  3564. }
  3565. #u41492 .text {
  3566. position:absolute;
  3567. align-self:center;
  3568. padding:2px 2px 2px 0px;
  3569. box-sizing:border-box;
  3570. width:100%;
  3571. }
  3572. #u41492_text {
  3573. border-width:0px;
  3574. word-wrap:break-word;
  3575. text-transform:none;
  3576. visibility:hidden;
  3577. }
  3578. #u41493_img {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:90px;
  3584. height:38px;
  3585. }
  3586. #u41493 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:415px;
  3590. top:76px;
  3591. width:90px;
  3592. height:38px;
  3593. display:flex;
  3594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3595. font-weight:400;
  3596. font-style:normal;
  3597. font-size:12px;
  3598. color:#333333;
  3599. }
  3600. #u41493 .text {
  3601. position:absolute;
  3602. align-self:center;
  3603. padding:2px 2px 2px 0px;
  3604. box-sizing:border-box;
  3605. width:100%;
  3606. }
  3607. #u41493_text {
  3608. border-width:0px;
  3609. word-wrap:break-word;
  3610. text-transform:none;
  3611. visibility:hidden;
  3612. }
  3613. #u41494_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:83px;
  3619. height:38px;
  3620. }
  3621. #u41494 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:505px;
  3625. top:76px;
  3626. width:83px;
  3627. height:38px;
  3628. display:flex;
  3629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:12px;
  3633. color:#333333;
  3634. }
  3635. #u41494 .text {
  3636. position:absolute;
  3637. align-self:center;
  3638. padding:2px 2px 2px 0px;
  3639. box-sizing:border-box;
  3640. width:100%;
  3641. }
  3642. #u41494_text {
  3643. border-width:0px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. visibility:hidden;
  3647. }
  3648. #u41495_img {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:83px;
  3654. height:38px;
  3655. }
  3656. #u41495 {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:588px;
  3660. top:76px;
  3661. width:83px;
  3662. height:38px;
  3663. display:flex;
  3664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3665. font-weight:400;
  3666. font-style:normal;
  3667. font-size:12px;
  3668. color:#333333;
  3669. }
  3670. #u41495 .text {
  3671. position:absolute;
  3672. align-self:center;
  3673. padding:2px 2px 2px 0px;
  3674. box-sizing:border-box;
  3675. width:100%;
  3676. }
  3677. #u41495_text {
  3678. border-width:0px;
  3679. word-wrap:break-word;
  3680. text-transform:none;
  3681. visibility:hidden;
  3682. }
  3683. #u41496_img {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:0px;
  3687. top:0px;
  3688. width:83px;
  3689. height:38px;
  3690. }
  3691. #u41496 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:671px;
  3695. top:76px;
  3696. width:83px;
  3697. height:38px;
  3698. display:flex;
  3699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:12px;
  3703. color:#333333;
  3704. }
  3705. #u41496 .text {
  3706. position:absolute;
  3707. align-self:center;
  3708. padding:2px 2px 2px 0px;
  3709. box-sizing:border-box;
  3710. width:100%;
  3711. }
  3712. #u41496_text {
  3713. border-width:0px;
  3714. word-wrap:break-word;
  3715. text-transform:none;
  3716. visibility:hidden;
  3717. }
  3718. #u41497_img {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:0px;
  3723. width:82px;
  3724. height:38px;
  3725. }
  3726. #u41497 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:754px;
  3730. top:76px;
  3731. width:82px;
  3732. height:38px;
  3733. display:flex;
  3734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3735. font-weight:400;
  3736. font-style:normal;
  3737. font-size:12px;
  3738. color:#333333;
  3739. }
  3740. #u41497 .text {
  3741. position:absolute;
  3742. align-self:center;
  3743. padding:2px 2px 2px 0px;
  3744. box-sizing:border-box;
  3745. width:100%;
  3746. }
  3747. #u41497_text {
  3748. border-width:0px;
  3749. word-wrap:break-word;
  3750. text-transform:none;
  3751. visibility:hidden;
  3752. }
  3753. #u41498_img {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:92px;
  3759. height:38px;
  3760. }
  3761. #u41498 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:836px;
  3765. top:76px;
  3766. width:92px;
  3767. height:38px;
  3768. display:flex;
  3769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3770. font-weight:400;
  3771. font-style:normal;
  3772. font-size:12px;
  3773. color:#333333;
  3774. }
  3775. #u41498 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:2px 2px 2px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u41498_text {
  3783. border-width:0px;
  3784. word-wrap:break-word;
  3785. text-transform:none;
  3786. visibility:hidden;
  3787. }
  3788. #u41499_img {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:66px;
  3794. height:38px;
  3795. }
  3796. #u41499 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:928px;
  3800. top:76px;
  3801. width:66px;
  3802. height:38px;
  3803. display:flex;
  3804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3805. font-weight:400;
  3806. font-style:normal;
  3807. font-size:12px;
  3808. color:#333333;
  3809. }
  3810. #u41499 .text {
  3811. position:absolute;
  3812. align-self:center;
  3813. padding:2px 2px 2px 0px;
  3814. box-sizing:border-box;
  3815. width:100%;
  3816. }
  3817. #u41499_text {
  3818. border-width:0px;
  3819. word-wrap:break-word;
  3820. text-transform:none;
  3821. visibility:hidden;
  3822. }
  3823. #u41500_img {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:0px;
  3827. top:0px;
  3828. width:83px;
  3829. height:38px;
  3830. }
  3831. #u41500 {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:114px;
  3836. width:83px;
  3837. height:38px;
  3838. display:flex;
  3839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3840. font-weight:400;
  3841. font-style:normal;
  3842. font-size:12px;
  3843. color:#333333;
  3844. }
  3845. #u41500 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:2px 2px 2px 0px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u41500_text {
  3853. border-width:0px;
  3854. word-wrap:break-word;
  3855. text-transform:none;
  3856. visibility:hidden;
  3857. }
  3858. #u41501_img {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:83px;
  3864. height:38px;
  3865. }
  3866. #u41501 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:83px;
  3870. top:114px;
  3871. width:83px;
  3872. height:38px;
  3873. display:flex;
  3874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:12px;
  3878. color:#333333;
  3879. }
  3880. #u41501 .text {
  3881. position:absolute;
  3882. align-self:center;
  3883. padding:2px 2px 2px 0px;
  3884. box-sizing:border-box;
  3885. width:100%;
  3886. }
  3887. #u41501_text {
  3888. border-width:0px;
  3889. word-wrap:break-word;
  3890. text-transform:none;
  3891. visibility:hidden;
  3892. }
  3893. #u41502_img {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:0px;
  3897. top:0px;
  3898. width:83px;
  3899. height:38px;
  3900. }
  3901. #u41502 {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:166px;
  3905. top:114px;
  3906. width:83px;
  3907. height:38px;
  3908. display:flex;
  3909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3910. font-weight:400;
  3911. font-style:normal;
  3912. font-size:12px;
  3913. color:#333333;
  3914. }
  3915. #u41502 .text {
  3916. position:absolute;
  3917. align-self:center;
  3918. padding:2px 2px 2px 0px;
  3919. box-sizing:border-box;
  3920. width:100%;
  3921. }
  3922. #u41502_text {
  3923. border-width:0px;
  3924. word-wrap:break-word;
  3925. text-transform:none;
  3926. visibility:hidden;
  3927. }
  3928. #u41503_img {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:0px;
  3932. top:0px;
  3933. width:83px;
  3934. height:38px;
  3935. }
  3936. #u41503 {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:249px;
  3940. top:114px;
  3941. width:83px;
  3942. height:38px;
  3943. display:flex;
  3944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3945. font-weight:400;
  3946. font-style:normal;
  3947. font-size:12px;
  3948. color:#333333;
  3949. }
  3950. #u41503 .text {
  3951. position:absolute;
  3952. align-self:center;
  3953. padding:2px 2px 2px 0px;
  3954. box-sizing:border-box;
  3955. width:100%;
  3956. }
  3957. #u41503_text {
  3958. border-width:0px;
  3959. word-wrap:break-word;
  3960. text-transform:none;
  3961. visibility:hidden;
  3962. }
  3963. #u41504_img {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:83px;
  3969. height:38px;
  3970. }
  3971. #u41504 {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:332px;
  3975. top:114px;
  3976. width:83px;
  3977. height:38px;
  3978. display:flex;
  3979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3980. font-weight:400;
  3981. font-style:normal;
  3982. font-size:12px;
  3983. color:#333333;
  3984. }
  3985. #u41504 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:2px 2px 2px 0px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u41504_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. visibility:hidden;
  3997. }
  3998. #u41505_img {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:90px;
  4004. height:38px;
  4005. }
  4006. #u41505 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:415px;
  4010. top:114px;
  4011. width:90px;
  4012. height:38px;
  4013. display:flex;
  4014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4015. font-weight:400;
  4016. font-style:normal;
  4017. font-size:12px;
  4018. color:#333333;
  4019. }
  4020. #u41505 .text {
  4021. position:absolute;
  4022. align-self:center;
  4023. padding:2px 2px 2px 0px;
  4024. box-sizing:border-box;
  4025. width:100%;
  4026. }
  4027. #u41505_text {
  4028. border-width:0px;
  4029. word-wrap:break-word;
  4030. text-transform:none;
  4031. visibility:hidden;
  4032. }
  4033. #u41506_img {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:0px;
  4037. top:0px;
  4038. width:83px;
  4039. height:38px;
  4040. }
  4041. #u41506 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:505px;
  4045. top:114px;
  4046. width:83px;
  4047. height:38px;
  4048. display:flex;
  4049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4050. font-weight:400;
  4051. font-style:normal;
  4052. font-size:12px;
  4053. color:#333333;
  4054. }
  4055. #u41506 .text {
  4056. position:absolute;
  4057. align-self:center;
  4058. padding:2px 2px 2px 0px;
  4059. box-sizing:border-box;
  4060. width:100%;
  4061. }
  4062. #u41506_text {
  4063. border-width:0px;
  4064. word-wrap:break-word;
  4065. text-transform:none;
  4066. visibility:hidden;
  4067. }
  4068. #u41507_img {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:0px;
  4072. top:0px;
  4073. width:83px;
  4074. height:38px;
  4075. }
  4076. #u41507 {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:588px;
  4080. top:114px;
  4081. width:83px;
  4082. height:38px;
  4083. display:flex;
  4084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4085. font-weight:400;
  4086. font-style:normal;
  4087. font-size:12px;
  4088. color:#333333;
  4089. }
  4090. #u41507 .text {
  4091. position:absolute;
  4092. align-self:center;
  4093. padding:2px 2px 2px 0px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u41507_text {
  4098. border-width:0px;
  4099. word-wrap:break-word;
  4100. text-transform:none;
  4101. visibility:hidden;
  4102. }
  4103. #u41508_img {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:83px;
  4109. height:38px;
  4110. }
  4111. #u41508 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:671px;
  4115. top:114px;
  4116. width:83px;
  4117. height:38px;
  4118. display:flex;
  4119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4120. font-weight:400;
  4121. font-style:normal;
  4122. font-size:12px;
  4123. color:#333333;
  4124. }
  4125. #u41508 .text {
  4126. position:absolute;
  4127. align-self:center;
  4128. padding:2px 2px 2px 0px;
  4129. box-sizing:border-box;
  4130. width:100%;
  4131. }
  4132. #u41508_text {
  4133. border-width:0px;
  4134. word-wrap:break-word;
  4135. text-transform:none;
  4136. visibility:hidden;
  4137. }
  4138. #u41509_img {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:82px;
  4144. height:38px;
  4145. }
  4146. #u41509 {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:754px;
  4150. top:114px;
  4151. width:82px;
  4152. height:38px;
  4153. display:flex;
  4154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4155. font-weight:400;
  4156. font-style:normal;
  4157. font-size:12px;
  4158. color:#333333;
  4159. }
  4160. #u41509 .text {
  4161. position:absolute;
  4162. align-self:center;
  4163. padding:2px 2px 2px 0px;
  4164. box-sizing:border-box;
  4165. width:100%;
  4166. }
  4167. #u41509_text {
  4168. border-width:0px;
  4169. word-wrap:break-word;
  4170. text-transform:none;
  4171. visibility:hidden;
  4172. }
  4173. #u41510_img {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:0px;
  4177. top:0px;
  4178. width:92px;
  4179. height:38px;
  4180. }
  4181. #u41510 {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:836px;
  4185. top:114px;
  4186. width:92px;
  4187. height:38px;
  4188. display:flex;
  4189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4190. font-weight:400;
  4191. font-style:normal;
  4192. font-size:12px;
  4193. color:#333333;
  4194. }
  4195. #u41510 .text {
  4196. position:absolute;
  4197. align-self:center;
  4198. padding:2px 2px 2px 0px;
  4199. box-sizing:border-box;
  4200. width:100%;
  4201. }
  4202. #u41510_text {
  4203. border-width:0px;
  4204. word-wrap:break-word;
  4205. text-transform:none;
  4206. visibility:hidden;
  4207. }
  4208. #u41511_img {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:0px;
  4212. top:0px;
  4213. width:66px;
  4214. height:38px;
  4215. }
  4216. #u41511 {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:928px;
  4220. top:114px;
  4221. width:66px;
  4222. height:38px;
  4223. display:flex;
  4224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4225. font-weight:400;
  4226. font-style:normal;
  4227. font-size:12px;
  4228. color:#333333;
  4229. }
  4230. #u41511 .text {
  4231. position:absolute;
  4232. align-self:center;
  4233. padding:2px 2px 2px 0px;
  4234. box-sizing:border-box;
  4235. width:100%;
  4236. }
  4237. #u41511_text {
  4238. border-width:0px;
  4239. word-wrap:break-word;
  4240. text-transform:none;
  4241. visibility:hidden;
  4242. }
  4243. #u41512_img {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:0px;
  4247. top:0px;
  4248. width:83px;
  4249. height:38px;
  4250. }
  4251. #u41512 {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:152px;
  4256. width:83px;
  4257. height:38px;
  4258. display:flex;
  4259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4260. font-weight:400;
  4261. font-style:normal;
  4262. font-size:12px;
  4263. color:#333333;
  4264. }
  4265. #u41512 .text {
  4266. position:absolute;
  4267. align-self:center;
  4268. padding:2px 2px 2px 0px;
  4269. box-sizing:border-box;
  4270. width:100%;
  4271. }
  4272. #u41512_text {
  4273. border-width:0px;
  4274. word-wrap:break-word;
  4275. text-transform:none;
  4276. visibility:hidden;
  4277. }
  4278. #u41513_img {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:83px;
  4284. height:38px;
  4285. }
  4286. #u41513 {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:83px;
  4290. top:152px;
  4291. width:83px;
  4292. height:38px;
  4293. display:flex;
  4294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4295. font-weight:400;
  4296. font-style:normal;
  4297. font-size:12px;
  4298. color:#333333;
  4299. }
  4300. #u41513 .text {
  4301. position:absolute;
  4302. align-self:center;
  4303. padding:2px 2px 2px 0px;
  4304. box-sizing:border-box;
  4305. width:100%;
  4306. }
  4307. #u41513_text {
  4308. border-width:0px;
  4309. word-wrap:break-word;
  4310. text-transform:none;
  4311. visibility:hidden;
  4312. }
  4313. #u41514_img {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:0px;
  4317. top:0px;
  4318. width:83px;
  4319. height:38px;
  4320. }
  4321. #u41514 {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:166px;
  4325. top:152px;
  4326. width:83px;
  4327. height:38px;
  4328. display:flex;
  4329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4330. font-weight:400;
  4331. font-style:normal;
  4332. font-size:12px;
  4333. color:#333333;
  4334. }
  4335. #u41514 .text {
  4336. position:absolute;
  4337. align-self:center;
  4338. padding:2px 2px 2px 0px;
  4339. box-sizing:border-box;
  4340. width:100%;
  4341. }
  4342. #u41514_text {
  4343. border-width:0px;
  4344. word-wrap:break-word;
  4345. text-transform:none;
  4346. visibility:hidden;
  4347. }
  4348. #u41515_img {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:0px;
  4352. top:0px;
  4353. width:83px;
  4354. height:38px;
  4355. }
  4356. #u41515 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:249px;
  4360. top:152px;
  4361. width:83px;
  4362. height:38px;
  4363. display:flex;
  4364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4365. font-weight:400;
  4366. font-style:normal;
  4367. font-size:12px;
  4368. color:#333333;
  4369. }
  4370. #u41515 .text {
  4371. position:absolute;
  4372. align-self:center;
  4373. padding:2px 2px 2px 0px;
  4374. box-sizing:border-box;
  4375. width:100%;
  4376. }
  4377. #u41515_text {
  4378. border-width:0px;
  4379. word-wrap:break-word;
  4380. text-transform:none;
  4381. visibility:hidden;
  4382. }
  4383. #u41516_img {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:0px;
  4387. top:0px;
  4388. width:83px;
  4389. height:38px;
  4390. }
  4391. #u41516 {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:332px;
  4395. top:152px;
  4396. width:83px;
  4397. height:38px;
  4398. display:flex;
  4399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4400. font-weight:400;
  4401. font-style:normal;
  4402. font-size:12px;
  4403. color:#333333;
  4404. }
  4405. #u41516 .text {
  4406. position:absolute;
  4407. align-self:center;
  4408. padding:2px 2px 2px 0px;
  4409. box-sizing:border-box;
  4410. width:100%;
  4411. }
  4412. #u41516_text {
  4413. border-width:0px;
  4414. word-wrap:break-word;
  4415. text-transform:none;
  4416. visibility:hidden;
  4417. }
  4418. #u41517_img {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:0px;
  4422. top:0px;
  4423. width:90px;
  4424. height:38px;
  4425. }
  4426. #u41517 {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:415px;
  4430. top:152px;
  4431. width:90px;
  4432. height:38px;
  4433. display:flex;
  4434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:12px;
  4438. color:#333333;
  4439. }
  4440. #u41517 .text {
  4441. position:absolute;
  4442. align-self:center;
  4443. padding:2px 2px 2px 0px;
  4444. box-sizing:border-box;
  4445. width:100%;
  4446. }
  4447. #u41517_text {
  4448. border-width:0px;
  4449. word-wrap:break-word;
  4450. text-transform:none;
  4451. visibility:hidden;
  4452. }
  4453. #u41518_img {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:0px;
  4457. top:0px;
  4458. width:83px;
  4459. height:38px;
  4460. }
  4461. #u41518 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:505px;
  4465. top:152px;
  4466. width:83px;
  4467. height:38px;
  4468. display:flex;
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. font-size:12px;
  4473. color:#333333;
  4474. }
  4475. #u41518 .text {
  4476. position:absolute;
  4477. align-self:center;
  4478. padding:2px 2px 2px 0px;
  4479. box-sizing:border-box;
  4480. width:100%;
  4481. }
  4482. #u41518_text {
  4483. border-width:0px;
  4484. word-wrap:break-word;
  4485. text-transform:none;
  4486. visibility:hidden;
  4487. }
  4488. #u41519_img {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:0px;
  4492. top:0px;
  4493. width:83px;
  4494. height:38px;
  4495. }
  4496. #u41519 {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:588px;
  4500. top:152px;
  4501. width:83px;
  4502. height:38px;
  4503. display:flex;
  4504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4505. font-weight:400;
  4506. font-style:normal;
  4507. font-size:12px;
  4508. color:#333333;
  4509. }
  4510. #u41519 .text {
  4511. position:absolute;
  4512. align-self:center;
  4513. padding:2px 2px 2px 0px;
  4514. box-sizing:border-box;
  4515. width:100%;
  4516. }
  4517. #u41519_text {
  4518. border-width:0px;
  4519. word-wrap:break-word;
  4520. text-transform:none;
  4521. visibility:hidden;
  4522. }
  4523. #u41520_img {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:0px;
  4527. top:0px;
  4528. width:83px;
  4529. height:38px;
  4530. }
  4531. #u41520 {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:671px;
  4535. top:152px;
  4536. width:83px;
  4537. height:38px;
  4538. display:flex;
  4539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4540. font-weight:400;
  4541. font-style:normal;
  4542. font-size:12px;
  4543. color:#333333;
  4544. }
  4545. #u41520 .text {
  4546. position:absolute;
  4547. align-self:center;
  4548. padding:2px 2px 2px 0px;
  4549. box-sizing:border-box;
  4550. width:100%;
  4551. }
  4552. #u41520_text {
  4553. border-width:0px;
  4554. word-wrap:break-word;
  4555. text-transform:none;
  4556. visibility:hidden;
  4557. }
  4558. #u41521_img {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:0px;
  4562. top:0px;
  4563. width:82px;
  4564. height:38px;
  4565. }
  4566. #u41521 {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:754px;
  4570. top:152px;
  4571. width:82px;
  4572. height:38px;
  4573. display:flex;
  4574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4575. font-weight:400;
  4576. font-style:normal;
  4577. font-size:12px;
  4578. color:#333333;
  4579. }
  4580. #u41521 .text {
  4581. position:absolute;
  4582. align-self:center;
  4583. padding:2px 2px 2px 0px;
  4584. box-sizing:border-box;
  4585. width:100%;
  4586. }
  4587. #u41521_text {
  4588. border-width:0px;
  4589. word-wrap:break-word;
  4590. text-transform:none;
  4591. visibility:hidden;
  4592. }
  4593. #u41522_img {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:0px;
  4597. top:0px;
  4598. width:92px;
  4599. height:38px;
  4600. }
  4601. #u41522 {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:836px;
  4605. top:152px;
  4606. width:92px;
  4607. height:38px;
  4608. display:flex;
  4609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4610. font-weight:400;
  4611. font-style:normal;
  4612. font-size:12px;
  4613. color:#333333;
  4614. }
  4615. #u41522 .text {
  4616. position:absolute;
  4617. align-self:center;
  4618. padding:2px 2px 2px 0px;
  4619. box-sizing:border-box;
  4620. width:100%;
  4621. }
  4622. #u41522_text {
  4623. border-width:0px;
  4624. word-wrap:break-word;
  4625. text-transform:none;
  4626. visibility:hidden;
  4627. }
  4628. #u41523_img {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:0px;
  4633. width:66px;
  4634. height:38px;
  4635. }
  4636. #u41523 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:928px;
  4640. top:152px;
  4641. width:66px;
  4642. height:38px;
  4643. display:flex;
  4644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4645. font-weight:400;
  4646. font-style:normal;
  4647. font-size:12px;
  4648. color:#333333;
  4649. }
  4650. #u41523 .text {
  4651. position:absolute;
  4652. align-self:center;
  4653. padding:2px 2px 2px 0px;
  4654. box-sizing:border-box;
  4655. width:100%;
  4656. }
  4657. #u41523_text {
  4658. border-width:0px;
  4659. word-wrap:break-word;
  4660. text-transform:none;
  4661. visibility:hidden;
  4662. }
  4663. #u41524_img {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:83px;
  4669. height:35px;
  4670. }
  4671. #u41524 {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:0px;
  4675. top:190px;
  4676. width:83px;
  4677. height:35px;
  4678. display:flex;
  4679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4680. font-weight:400;
  4681. font-style:normal;
  4682. font-size:12px;
  4683. color:#333333;
  4684. }
  4685. #u41524 .text {
  4686. position:absolute;
  4687. align-self:center;
  4688. padding:2px 2px 2px 0px;
  4689. box-sizing:border-box;
  4690. width:100%;
  4691. }
  4692. #u41524_text {
  4693. border-width:0px;
  4694. word-wrap:break-word;
  4695. text-transform:none;
  4696. visibility:hidden;
  4697. }
  4698. #u41525_img {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:0px;
  4702. top:0px;
  4703. width:83px;
  4704. height:35px;
  4705. }
  4706. #u41525 {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:83px;
  4710. top:190px;
  4711. width:83px;
  4712. height:35px;
  4713. display:flex;
  4714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4715. font-weight:400;
  4716. font-style:normal;
  4717. font-size:12px;
  4718. color:#333333;
  4719. }
  4720. #u41525 .text {
  4721. position:absolute;
  4722. align-self:center;
  4723. padding:2px 2px 2px 0px;
  4724. box-sizing:border-box;
  4725. width:100%;
  4726. }
  4727. #u41525_text {
  4728. border-width:0px;
  4729. word-wrap:break-word;
  4730. text-transform:none;
  4731. visibility:hidden;
  4732. }
  4733. #u41526_img {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:0px;
  4737. top:0px;
  4738. width:83px;
  4739. height:35px;
  4740. }
  4741. #u41526 {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:166px;
  4745. top:190px;
  4746. width:83px;
  4747. height:35px;
  4748. display:flex;
  4749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4750. font-weight:400;
  4751. font-style:normal;
  4752. font-size:12px;
  4753. color:#333333;
  4754. }
  4755. #u41526 .text {
  4756. position:absolute;
  4757. align-self:center;
  4758. padding:2px 2px 2px 0px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u41526_text {
  4763. border-width:0px;
  4764. word-wrap:break-word;
  4765. text-transform:none;
  4766. visibility:hidden;
  4767. }
  4768. #u41527_img {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:83px;
  4774. height:35px;
  4775. }
  4776. #u41527 {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:249px;
  4780. top:190px;
  4781. width:83px;
  4782. height:35px;
  4783. display:flex;
  4784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4785. font-weight:400;
  4786. font-style:normal;
  4787. font-size:12px;
  4788. color:#333333;
  4789. }
  4790. #u41527 .text {
  4791. position:absolute;
  4792. align-self:center;
  4793. padding:2px 2px 2px 0px;
  4794. box-sizing:border-box;
  4795. width:100%;
  4796. }
  4797. #u41527_text {
  4798. border-width:0px;
  4799. word-wrap:break-word;
  4800. text-transform:none;
  4801. visibility:hidden;
  4802. }
  4803. #u41528_img {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:83px;
  4809. height:35px;
  4810. }
  4811. #u41528 {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:332px;
  4815. top:190px;
  4816. width:83px;
  4817. height:35px;
  4818. display:flex;
  4819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:12px;
  4823. color:#333333;
  4824. }
  4825. #u41528 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:2px 2px 2px 0px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u41528_text {
  4833. border-width:0px;
  4834. word-wrap:break-word;
  4835. text-transform:none;
  4836. visibility:hidden;
  4837. }
  4838. #u41529_img {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:90px;
  4844. height:35px;
  4845. }
  4846. #u41529 {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:415px;
  4850. top:190px;
  4851. width:90px;
  4852. height:35px;
  4853. display:flex;
  4854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4855. font-weight:400;
  4856. font-style:normal;
  4857. font-size:12px;
  4858. color:#333333;
  4859. }
  4860. #u41529 .text {
  4861. position:absolute;
  4862. align-self:center;
  4863. padding:2px 2px 2px 0px;
  4864. box-sizing:border-box;
  4865. width:100%;
  4866. }
  4867. #u41529_text {
  4868. border-width:0px;
  4869. word-wrap:break-word;
  4870. text-transform:none;
  4871. visibility:hidden;
  4872. }
  4873. #u41530_img {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:83px;
  4879. height:35px;
  4880. }
  4881. #u41530 {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:505px;
  4885. top:190px;
  4886. width:83px;
  4887. height:35px;
  4888. display:flex;
  4889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4890. font-weight:400;
  4891. font-style:normal;
  4892. font-size:12px;
  4893. color:#333333;
  4894. }
  4895. #u41530 .text {
  4896. position:absolute;
  4897. align-self:center;
  4898. padding:2px 2px 2px 0px;
  4899. box-sizing:border-box;
  4900. width:100%;
  4901. }
  4902. #u41530_text {
  4903. border-width:0px;
  4904. word-wrap:break-word;
  4905. text-transform:none;
  4906. visibility:hidden;
  4907. }
  4908. #u41531_img {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:0px;
  4912. top:0px;
  4913. width:83px;
  4914. height:35px;
  4915. }
  4916. #u41531 {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:588px;
  4920. top:190px;
  4921. width:83px;
  4922. height:35px;
  4923. display:flex;
  4924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4925. font-weight:400;
  4926. font-style:normal;
  4927. font-size:12px;
  4928. color:#333333;
  4929. }
  4930. #u41531 .text {
  4931. position:absolute;
  4932. align-self:center;
  4933. padding:2px 2px 2px 0px;
  4934. box-sizing:border-box;
  4935. width:100%;
  4936. }
  4937. #u41531_text {
  4938. border-width:0px;
  4939. word-wrap:break-word;
  4940. text-transform:none;
  4941. visibility:hidden;
  4942. }
  4943. #u41532_img {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:0px;
  4947. top:0px;
  4948. width:83px;
  4949. height:35px;
  4950. }
  4951. #u41532 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:671px;
  4955. top:190px;
  4956. width:83px;
  4957. height:35px;
  4958. display:flex;
  4959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4960. font-weight:400;
  4961. font-style:normal;
  4962. font-size:12px;
  4963. color:#333333;
  4964. }
  4965. #u41532 .text {
  4966. position:absolute;
  4967. align-self:center;
  4968. padding:2px 2px 2px 0px;
  4969. box-sizing:border-box;
  4970. width:100%;
  4971. }
  4972. #u41532_text {
  4973. border-width:0px;
  4974. word-wrap:break-word;
  4975. text-transform:none;
  4976. visibility:hidden;
  4977. }
  4978. #u41533_img {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:0px;
  4982. top:0px;
  4983. width:82px;
  4984. height:35px;
  4985. }
  4986. #u41533 {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:754px;
  4990. top:190px;
  4991. width:82px;
  4992. height:35px;
  4993. display:flex;
  4994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4995. font-weight:400;
  4996. font-style:normal;
  4997. font-size:12px;
  4998. color:#333333;
  4999. }
  5000. #u41533 .text {
  5001. position:absolute;
  5002. align-self:center;
  5003. padding:2px 2px 2px 0px;
  5004. box-sizing:border-box;
  5005. width:100%;
  5006. }
  5007. #u41533_text {
  5008. border-width:0px;
  5009. word-wrap:break-word;
  5010. text-transform:none;
  5011. visibility:hidden;
  5012. }
  5013. #u41534_img {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:92px;
  5019. height:35px;
  5020. }
  5021. #u41534 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:836px;
  5025. top:190px;
  5026. width:92px;
  5027. height:35px;
  5028. display:flex;
  5029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5030. font-weight:400;
  5031. font-style:normal;
  5032. font-size:12px;
  5033. color:#333333;
  5034. }
  5035. #u41534 .text {
  5036. position:absolute;
  5037. align-self:center;
  5038. padding:2px 2px 2px 0px;
  5039. box-sizing:border-box;
  5040. width:100%;
  5041. }
  5042. #u41534_text {
  5043. border-width:0px;
  5044. word-wrap:break-word;
  5045. text-transform:none;
  5046. visibility:hidden;
  5047. }
  5048. #u41535_img {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:66px;
  5054. height:35px;
  5055. }
  5056. #u41535 {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:928px;
  5060. top:190px;
  5061. width:66px;
  5062. height:35px;
  5063. display:flex;
  5064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5065. font-weight:400;
  5066. font-style:normal;
  5067. font-size:12px;
  5068. color:#333333;
  5069. }
  5070. #u41535 .text {
  5071. position:absolute;
  5072. align-self:center;
  5073. padding:2px 2px 2px 0px;
  5074. box-sizing:border-box;
  5075. width:100%;
  5076. }
  5077. #u41535_text {
  5078. border-width:0px;
  5079. word-wrap:break-word;
  5080. text-transform:none;
  5081. visibility:hidden;
  5082. }
  5083. #u41536_img {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:0px;
  5087. top:0px;
  5088. width:83px;
  5089. height:35px;
  5090. }
  5091. #u41536 {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:225px;
  5096. width:83px;
  5097. height:35px;
  5098. display:flex;
  5099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5100. font-weight:400;
  5101. font-style:normal;
  5102. font-size:12px;
  5103. color:#333333;
  5104. }
  5105. #u41536 .text {
  5106. position:absolute;
  5107. align-self:center;
  5108. padding:2px 2px 2px 0px;
  5109. box-sizing:border-box;
  5110. width:100%;
  5111. }
  5112. #u41536_text {
  5113. border-width:0px;
  5114. word-wrap:break-word;
  5115. text-transform:none;
  5116. visibility:hidden;
  5117. }
  5118. #u41537_img {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:0px;
  5122. top:0px;
  5123. width:83px;
  5124. height:35px;
  5125. }
  5126. #u41537 {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:83px;
  5130. top:225px;
  5131. width:83px;
  5132. height:35px;
  5133. display:flex;
  5134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5135. font-weight:400;
  5136. font-style:normal;
  5137. font-size:12px;
  5138. color:#333333;
  5139. }
  5140. #u41537 .text {
  5141. position:absolute;
  5142. align-self:center;
  5143. padding:2px 2px 2px 0px;
  5144. box-sizing:border-box;
  5145. width:100%;
  5146. }
  5147. #u41537_text {
  5148. border-width:0px;
  5149. word-wrap:break-word;
  5150. text-transform:none;
  5151. visibility:hidden;
  5152. }
  5153. #u41538_img {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:83px;
  5159. height:35px;
  5160. }
  5161. #u41538 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:166px;
  5165. top:225px;
  5166. width:83px;
  5167. height:35px;
  5168. display:flex;
  5169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5170. font-weight:400;
  5171. font-style:normal;
  5172. font-size:12px;
  5173. color:#333333;
  5174. }
  5175. #u41538 .text {
  5176. position:absolute;
  5177. align-self:center;
  5178. padding:2px 2px 2px 0px;
  5179. box-sizing:border-box;
  5180. width:100%;
  5181. }
  5182. #u41538_text {
  5183. border-width:0px;
  5184. word-wrap:break-word;
  5185. text-transform:none;
  5186. visibility:hidden;
  5187. }
  5188. #u41539_img {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:83px;
  5194. height:35px;
  5195. }
  5196. #u41539 {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:249px;
  5200. top:225px;
  5201. width:83px;
  5202. height:35px;
  5203. display:flex;
  5204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5205. font-weight:400;
  5206. font-style:normal;
  5207. font-size:12px;
  5208. color:#333333;
  5209. }
  5210. #u41539 .text {
  5211. position:absolute;
  5212. align-self:center;
  5213. padding:2px 2px 2px 0px;
  5214. box-sizing:border-box;
  5215. width:100%;
  5216. }
  5217. #u41539_text {
  5218. border-width:0px;
  5219. word-wrap:break-word;
  5220. text-transform:none;
  5221. visibility:hidden;
  5222. }
  5223. #u41540_img {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:0px;
  5227. top:0px;
  5228. width:83px;
  5229. height:35px;
  5230. }
  5231. #u41540 {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:332px;
  5235. top:225px;
  5236. width:83px;
  5237. height:35px;
  5238. display:flex;
  5239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5240. font-weight:400;
  5241. font-style:normal;
  5242. font-size:12px;
  5243. color:#333333;
  5244. }
  5245. #u41540 .text {
  5246. position:absolute;
  5247. align-self:center;
  5248. padding:2px 2px 2px 0px;
  5249. box-sizing:border-box;
  5250. width:100%;
  5251. }
  5252. #u41540_text {
  5253. border-width:0px;
  5254. word-wrap:break-word;
  5255. text-transform:none;
  5256. visibility:hidden;
  5257. }
  5258. #u41541_img {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:90px;
  5264. height:35px;
  5265. }
  5266. #u41541 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:415px;
  5270. top:225px;
  5271. width:90px;
  5272. height:35px;
  5273. display:flex;
  5274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5275. font-weight:400;
  5276. font-style:normal;
  5277. font-size:12px;
  5278. color:#333333;
  5279. }
  5280. #u41541 .text {
  5281. position:absolute;
  5282. align-self:center;
  5283. padding:2px 2px 2px 0px;
  5284. box-sizing:border-box;
  5285. width:100%;
  5286. }
  5287. #u41541_text {
  5288. border-width:0px;
  5289. word-wrap:break-word;
  5290. text-transform:none;
  5291. visibility:hidden;
  5292. }
  5293. #u41542_img {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:0px;
  5297. top:0px;
  5298. width:83px;
  5299. height:35px;
  5300. }
  5301. #u41542 {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:505px;
  5305. top:225px;
  5306. width:83px;
  5307. height:35px;
  5308. display:flex;
  5309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5310. font-weight:400;
  5311. font-style:normal;
  5312. font-size:12px;
  5313. color:#333333;
  5314. }
  5315. #u41542 .text {
  5316. position:absolute;
  5317. align-self:center;
  5318. padding:2px 2px 2px 0px;
  5319. box-sizing:border-box;
  5320. width:100%;
  5321. }
  5322. #u41542_text {
  5323. border-width:0px;
  5324. word-wrap:break-word;
  5325. text-transform:none;
  5326. visibility:hidden;
  5327. }
  5328. #u41543_img {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:0px;
  5332. top:0px;
  5333. width:83px;
  5334. height:35px;
  5335. }
  5336. #u41543 {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:588px;
  5340. top:225px;
  5341. width:83px;
  5342. height:35px;
  5343. display:flex;
  5344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5345. font-weight:400;
  5346. font-style:normal;
  5347. font-size:12px;
  5348. color:#333333;
  5349. }
  5350. #u41543 .text {
  5351. position:absolute;
  5352. align-self:center;
  5353. padding:2px 2px 2px 0px;
  5354. box-sizing:border-box;
  5355. width:100%;
  5356. }
  5357. #u41543_text {
  5358. border-width:0px;
  5359. word-wrap:break-word;
  5360. text-transform:none;
  5361. visibility:hidden;
  5362. }
  5363. #u41544_img {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:0px;
  5367. top:0px;
  5368. width:83px;
  5369. height:35px;
  5370. }
  5371. #u41544 {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:671px;
  5375. top:225px;
  5376. width:83px;
  5377. height:35px;
  5378. display:flex;
  5379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5380. font-weight:400;
  5381. font-style:normal;
  5382. font-size:12px;
  5383. color:#333333;
  5384. }
  5385. #u41544 .text {
  5386. position:absolute;
  5387. align-self:center;
  5388. padding:2px 2px 2px 0px;
  5389. box-sizing:border-box;
  5390. width:100%;
  5391. }
  5392. #u41544_text {
  5393. border-width:0px;
  5394. word-wrap:break-word;
  5395. text-transform:none;
  5396. visibility:hidden;
  5397. }
  5398. #u41545_img {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:0px;
  5402. top:0px;
  5403. width:82px;
  5404. height:35px;
  5405. }
  5406. #u41545 {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:754px;
  5410. top:225px;
  5411. width:82px;
  5412. height:35px;
  5413. display:flex;
  5414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5415. font-weight:400;
  5416. font-style:normal;
  5417. font-size:12px;
  5418. color:#333333;
  5419. }
  5420. #u41545 .text {
  5421. position:absolute;
  5422. align-self:center;
  5423. padding:2px 2px 2px 0px;
  5424. box-sizing:border-box;
  5425. width:100%;
  5426. }
  5427. #u41545_text {
  5428. border-width:0px;
  5429. word-wrap:break-word;
  5430. text-transform:none;
  5431. visibility:hidden;
  5432. }
  5433. #u41546_img {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:0px;
  5437. top:0px;
  5438. width:92px;
  5439. height:35px;
  5440. }
  5441. #u41546 {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:836px;
  5445. top:225px;
  5446. width:92px;
  5447. height:35px;
  5448. display:flex;
  5449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5450. font-weight:400;
  5451. font-style:normal;
  5452. font-size:12px;
  5453. color:#333333;
  5454. }
  5455. #u41546 .text {
  5456. position:absolute;
  5457. align-self:center;
  5458. padding:2px 2px 2px 0px;
  5459. box-sizing:border-box;
  5460. width:100%;
  5461. }
  5462. #u41546_text {
  5463. border-width:0px;
  5464. word-wrap:break-word;
  5465. text-transform:none;
  5466. visibility:hidden;
  5467. }
  5468. #u41547_img {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:0px;
  5472. top:0px;
  5473. width:66px;
  5474. height:35px;
  5475. }
  5476. #u41547 {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:928px;
  5480. top:225px;
  5481. width:66px;
  5482. height:35px;
  5483. display:flex;
  5484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5485. font-weight:400;
  5486. font-style:normal;
  5487. font-size:12px;
  5488. color:#333333;
  5489. }
  5490. #u41547 .text {
  5491. position:absolute;
  5492. align-self:center;
  5493. padding:2px 2px 2px 0px;
  5494. box-sizing:border-box;
  5495. width:100%;
  5496. }
  5497. #u41547_text {
  5498. border-width:0px;
  5499. word-wrap:break-word;
  5500. text-transform:none;
  5501. visibility:hidden;
  5502. }
  5503. #u41548_img {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:83px;
  5509. height:32px;
  5510. }
  5511. #u41548 {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:260px;
  5516. width:83px;
  5517. height:32px;
  5518. display:flex;
  5519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5520. font-weight:400;
  5521. font-style:normal;
  5522. font-size:12px;
  5523. color:#333333;
  5524. }
  5525. #u41548 .text {
  5526. position:absolute;
  5527. align-self:center;
  5528. padding:2px 2px 2px 0px;
  5529. box-sizing:border-box;
  5530. width:100%;
  5531. }
  5532. #u41548_text {
  5533. border-width:0px;
  5534. word-wrap:break-word;
  5535. text-transform:none;
  5536. visibility:hidden;
  5537. }
  5538. #u41549_img {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:0px;
  5542. top:0px;
  5543. width:83px;
  5544. height:32px;
  5545. }
  5546. #u41549 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:83px;
  5550. top:260px;
  5551. width:83px;
  5552. height:32px;
  5553. display:flex;
  5554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5555. font-weight:400;
  5556. font-style:normal;
  5557. font-size:12px;
  5558. color:#333333;
  5559. }
  5560. #u41549 .text {
  5561. position:absolute;
  5562. align-self:center;
  5563. padding:2px 2px 2px 0px;
  5564. box-sizing:border-box;
  5565. width:100%;
  5566. }
  5567. #u41549_text {
  5568. border-width:0px;
  5569. word-wrap:break-word;
  5570. text-transform:none;
  5571. visibility:hidden;
  5572. }
  5573. #u41550_img {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:83px;
  5579. height:32px;
  5580. }
  5581. #u41550 {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:166px;
  5585. top:260px;
  5586. width:83px;
  5587. height:32px;
  5588. display:flex;
  5589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5590. font-weight:400;
  5591. font-style:normal;
  5592. font-size:12px;
  5593. color:#333333;
  5594. }
  5595. #u41550 .text {
  5596. position:absolute;
  5597. align-self:center;
  5598. padding:2px 2px 2px 0px;
  5599. box-sizing:border-box;
  5600. width:100%;
  5601. }
  5602. #u41550_text {
  5603. border-width:0px;
  5604. word-wrap:break-word;
  5605. text-transform:none;
  5606. visibility:hidden;
  5607. }
  5608. #u41551_img {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:83px;
  5614. height:32px;
  5615. }
  5616. #u41551 {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:249px;
  5620. top:260px;
  5621. width:83px;
  5622. height:32px;
  5623. display:flex;
  5624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5625. font-weight:400;
  5626. font-style:normal;
  5627. font-size:12px;
  5628. color:#333333;
  5629. }
  5630. #u41551 .text {
  5631. position:absolute;
  5632. align-self:center;
  5633. padding:2px 2px 2px 0px;
  5634. box-sizing:border-box;
  5635. width:100%;
  5636. }
  5637. #u41551_text {
  5638. border-width:0px;
  5639. word-wrap:break-word;
  5640. text-transform:none;
  5641. visibility:hidden;
  5642. }
  5643. #u41552_img {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:0px;
  5647. top:0px;
  5648. width:83px;
  5649. height:32px;
  5650. }
  5651. #u41552 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:332px;
  5655. top:260px;
  5656. width:83px;
  5657. height:32px;
  5658. display:flex;
  5659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5660. font-weight:400;
  5661. font-style:normal;
  5662. font-size:12px;
  5663. color:#333333;
  5664. }
  5665. #u41552 .text {
  5666. position:absolute;
  5667. align-self:center;
  5668. padding:2px 2px 2px 0px;
  5669. box-sizing:border-box;
  5670. width:100%;
  5671. }
  5672. #u41552_text {
  5673. border-width:0px;
  5674. word-wrap:break-word;
  5675. text-transform:none;
  5676. visibility:hidden;
  5677. }
  5678. #u41553_img {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:0px;
  5682. top:0px;
  5683. width:90px;
  5684. height:32px;
  5685. }
  5686. #u41553 {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:415px;
  5690. top:260px;
  5691. width:90px;
  5692. height:32px;
  5693. display:flex;
  5694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5695. font-weight:400;
  5696. font-style:normal;
  5697. font-size:12px;
  5698. color:#333333;
  5699. }
  5700. #u41553 .text {
  5701. position:absolute;
  5702. align-self:center;
  5703. padding:2px 2px 2px 0px;
  5704. box-sizing:border-box;
  5705. width:100%;
  5706. }
  5707. #u41553_text {
  5708. border-width:0px;
  5709. word-wrap:break-word;
  5710. text-transform:none;
  5711. visibility:hidden;
  5712. }
  5713. #u41554_img {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:0px;
  5717. top:0px;
  5718. width:83px;
  5719. height:32px;
  5720. }
  5721. #u41554 {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:505px;
  5725. top:260px;
  5726. width:83px;
  5727. height:32px;
  5728. display:flex;
  5729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5730. font-weight:400;
  5731. font-style:normal;
  5732. font-size:12px;
  5733. color:#333333;
  5734. }
  5735. #u41554 .text {
  5736. position:absolute;
  5737. align-self:center;
  5738. padding:2px 2px 2px 0px;
  5739. box-sizing:border-box;
  5740. width:100%;
  5741. }
  5742. #u41554_text {
  5743. border-width:0px;
  5744. word-wrap:break-word;
  5745. text-transform:none;
  5746. visibility:hidden;
  5747. }
  5748. #u41555_img {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:83px;
  5754. height:32px;
  5755. }
  5756. #u41555 {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:588px;
  5760. top:260px;
  5761. width:83px;
  5762. height:32px;
  5763. display:flex;
  5764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5765. font-weight:400;
  5766. font-style:normal;
  5767. font-size:12px;
  5768. color:#333333;
  5769. }
  5770. #u41555 .text {
  5771. position:absolute;
  5772. align-self:center;
  5773. padding:2px 2px 2px 0px;
  5774. box-sizing:border-box;
  5775. width:100%;
  5776. }
  5777. #u41555_text {
  5778. border-width:0px;
  5779. word-wrap:break-word;
  5780. text-transform:none;
  5781. visibility:hidden;
  5782. }
  5783. #u41556_img {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:0px;
  5787. top:0px;
  5788. width:83px;
  5789. height:32px;
  5790. }
  5791. #u41556 {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:671px;
  5795. top:260px;
  5796. width:83px;
  5797. height:32px;
  5798. display:flex;
  5799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5800. font-weight:400;
  5801. font-style:normal;
  5802. font-size:12px;
  5803. color:#333333;
  5804. }
  5805. #u41556 .text {
  5806. position:absolute;
  5807. align-self:center;
  5808. padding:2px 2px 2px 0px;
  5809. box-sizing:border-box;
  5810. width:100%;
  5811. }
  5812. #u41556_text {
  5813. border-width:0px;
  5814. word-wrap:break-word;
  5815. text-transform:none;
  5816. visibility:hidden;
  5817. }
  5818. #u41557_img {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:0px;
  5822. top:0px;
  5823. width:82px;
  5824. height:32px;
  5825. }
  5826. #u41557 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:754px;
  5830. top:260px;
  5831. width:82px;
  5832. height:32px;
  5833. display:flex;
  5834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:12px;
  5838. color:#333333;
  5839. }
  5840. #u41557 .text {
  5841. position:absolute;
  5842. align-self:center;
  5843. padding:2px 2px 2px 0px;
  5844. box-sizing:border-box;
  5845. width:100%;
  5846. }
  5847. #u41557_text {
  5848. border-width:0px;
  5849. word-wrap:break-word;
  5850. text-transform:none;
  5851. visibility:hidden;
  5852. }
  5853. #u41558_img {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:0px;
  5857. top:0px;
  5858. width:92px;
  5859. height:32px;
  5860. }
  5861. #u41558 {
  5862. border-width:0px;
  5863. position:absolute;
  5864. left:836px;
  5865. top:260px;
  5866. width:92px;
  5867. height:32px;
  5868. display:flex;
  5869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5870. font-weight:400;
  5871. font-style:normal;
  5872. font-size:12px;
  5873. color:#333333;
  5874. }
  5875. #u41558 .text {
  5876. position:absolute;
  5877. align-self:center;
  5878. padding:2px 2px 2px 0px;
  5879. box-sizing:border-box;
  5880. width:100%;
  5881. }
  5882. #u41558_text {
  5883. border-width:0px;
  5884. word-wrap:break-word;
  5885. text-transform:none;
  5886. visibility:hidden;
  5887. }
  5888. #u41559_img {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:66px;
  5894. height:32px;
  5895. }
  5896. #u41559 {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:928px;
  5900. top:260px;
  5901. width:66px;
  5902. height:32px;
  5903. display:flex;
  5904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5905. font-weight:400;
  5906. font-style:normal;
  5907. font-size:12px;
  5908. color:#333333;
  5909. }
  5910. #u41559 .text {
  5911. position:absolute;
  5912. align-self:center;
  5913. padding:2px 2px 2px 0px;
  5914. box-sizing:border-box;
  5915. width:100%;
  5916. }
  5917. #u41559_text {
  5918. border-width:0px;
  5919. word-wrap:break-word;
  5920. text-transform:none;
  5921. visibility:hidden;
  5922. }
  5923. #u41560_img {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:0px;
  5927. top:0px;
  5928. width:83px;
  5929. height:30px;
  5930. }
  5931. #u41560 {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:0px;
  5935. top:292px;
  5936. width:83px;
  5937. height:30px;
  5938. display:flex;
  5939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5940. font-weight:400;
  5941. font-style:normal;
  5942. font-size:12px;
  5943. color:#333333;
  5944. }
  5945. #u41560 .text {
  5946. position:absolute;
  5947. align-self:center;
  5948. padding:2px 2px 2px 0px;
  5949. box-sizing:border-box;
  5950. width:100%;
  5951. }
  5952. #u41560_text {
  5953. border-width:0px;
  5954. word-wrap:break-word;
  5955. text-transform:none;
  5956. visibility:hidden;
  5957. }
  5958. #u41561_img {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:0px;
  5962. top:0px;
  5963. width:83px;
  5964. height:30px;
  5965. }
  5966. #u41561 {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:83px;
  5970. top:292px;
  5971. width:83px;
  5972. height:30px;
  5973. display:flex;
  5974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. font-size:12px;
  5978. color:#333333;
  5979. }
  5980. #u41561 .text {
  5981. position:absolute;
  5982. align-self:center;
  5983. padding:2px 2px 2px 0px;
  5984. box-sizing:border-box;
  5985. width:100%;
  5986. }
  5987. #u41561_text {
  5988. border-width:0px;
  5989. word-wrap:break-word;
  5990. text-transform:none;
  5991. visibility:hidden;
  5992. }
  5993. #u41562_img {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:0px;
  5997. top:0px;
  5998. width:83px;
  5999. height:30px;
  6000. }
  6001. #u41562 {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:166px;
  6005. top:292px;
  6006. width:83px;
  6007. height:30px;
  6008. display:flex;
  6009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6010. font-weight:400;
  6011. font-style:normal;
  6012. font-size:12px;
  6013. color:#333333;
  6014. }
  6015. #u41562 .text {
  6016. position:absolute;
  6017. align-self:center;
  6018. padding:2px 2px 2px 0px;
  6019. box-sizing:border-box;
  6020. width:100%;
  6021. }
  6022. #u41562_text {
  6023. border-width:0px;
  6024. word-wrap:break-word;
  6025. text-transform:none;
  6026. visibility:hidden;
  6027. }
  6028. #u41563_img {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:0px;
  6032. top:0px;
  6033. width:83px;
  6034. height:30px;
  6035. }
  6036. #u41563 {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:249px;
  6040. top:292px;
  6041. width:83px;
  6042. height:30px;
  6043. display:flex;
  6044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6045. font-weight:400;
  6046. font-style:normal;
  6047. font-size:12px;
  6048. color:#333333;
  6049. }
  6050. #u41563 .text {
  6051. position:absolute;
  6052. align-self:center;
  6053. padding:2px 2px 2px 0px;
  6054. box-sizing:border-box;
  6055. width:100%;
  6056. }
  6057. #u41563_text {
  6058. border-width:0px;
  6059. word-wrap:break-word;
  6060. text-transform:none;
  6061. visibility:hidden;
  6062. }
  6063. #u41564_img {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:0px;
  6067. top:0px;
  6068. width:83px;
  6069. height:30px;
  6070. }
  6071. #u41564 {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:332px;
  6075. top:292px;
  6076. width:83px;
  6077. height:30px;
  6078. display:flex;
  6079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:12px;
  6083. color:#333333;
  6084. }
  6085. #u41564 .text {
  6086. position:absolute;
  6087. align-self:center;
  6088. padding:2px 2px 2px 0px;
  6089. box-sizing:border-box;
  6090. width:100%;
  6091. }
  6092. #u41564_text {
  6093. border-width:0px;
  6094. word-wrap:break-word;
  6095. text-transform:none;
  6096. visibility:hidden;
  6097. }
  6098. #u41565_img {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:90px;
  6104. height:30px;
  6105. }
  6106. #u41565 {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:415px;
  6110. top:292px;
  6111. width:90px;
  6112. height:30px;
  6113. display:flex;
  6114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6115. font-weight:400;
  6116. font-style:normal;
  6117. font-size:12px;
  6118. color:#333333;
  6119. }
  6120. #u41565 .text {
  6121. position:absolute;
  6122. align-self:center;
  6123. padding:2px 2px 2px 0px;
  6124. box-sizing:border-box;
  6125. width:100%;
  6126. }
  6127. #u41565_text {
  6128. border-width:0px;
  6129. word-wrap:break-word;
  6130. text-transform:none;
  6131. visibility:hidden;
  6132. }
  6133. #u41566_img {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:83px;
  6139. height:30px;
  6140. }
  6141. #u41566 {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:505px;
  6145. top:292px;
  6146. width:83px;
  6147. height:30px;
  6148. display:flex;
  6149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6150. font-weight:400;
  6151. font-style:normal;
  6152. font-size:12px;
  6153. color:#333333;
  6154. }
  6155. #u41566 .text {
  6156. position:absolute;
  6157. align-self:center;
  6158. padding:2px 2px 2px 0px;
  6159. box-sizing:border-box;
  6160. width:100%;
  6161. }
  6162. #u41566_text {
  6163. border-width:0px;
  6164. word-wrap:break-word;
  6165. text-transform:none;
  6166. visibility:hidden;
  6167. }
  6168. #u41567_img {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:0px;
  6172. top:0px;
  6173. width:83px;
  6174. height:30px;
  6175. }
  6176. #u41567 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:588px;
  6180. top:292px;
  6181. width:83px;
  6182. height:30px;
  6183. display:flex;
  6184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6185. font-weight:400;
  6186. font-style:normal;
  6187. font-size:12px;
  6188. color:#333333;
  6189. }
  6190. #u41567 .text {
  6191. position:absolute;
  6192. align-self:center;
  6193. padding:2px 2px 2px 0px;
  6194. box-sizing:border-box;
  6195. width:100%;
  6196. }
  6197. #u41567_text {
  6198. border-width:0px;
  6199. word-wrap:break-word;
  6200. text-transform:none;
  6201. visibility:hidden;
  6202. }
  6203. #u41568_img {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:0px;
  6207. top:0px;
  6208. width:83px;
  6209. height:30px;
  6210. }
  6211. #u41568 {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:671px;
  6215. top:292px;
  6216. width:83px;
  6217. height:30px;
  6218. display:flex;
  6219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6220. font-weight:400;
  6221. font-style:normal;
  6222. font-size:12px;
  6223. color:#333333;
  6224. }
  6225. #u41568 .text {
  6226. position:absolute;
  6227. align-self:center;
  6228. padding:2px 2px 2px 0px;
  6229. box-sizing:border-box;
  6230. width:100%;
  6231. }
  6232. #u41568_text {
  6233. border-width:0px;
  6234. word-wrap:break-word;
  6235. text-transform:none;
  6236. visibility:hidden;
  6237. }
  6238. #u41569_img {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:0px;
  6242. top:0px;
  6243. width:82px;
  6244. height:30px;
  6245. }
  6246. #u41569 {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:754px;
  6250. top:292px;
  6251. width:82px;
  6252. height:30px;
  6253. display:flex;
  6254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6255. font-weight:400;
  6256. font-style:normal;
  6257. font-size:12px;
  6258. color:#333333;
  6259. }
  6260. #u41569 .text {
  6261. position:absolute;
  6262. align-self:center;
  6263. padding:2px 2px 2px 0px;
  6264. box-sizing:border-box;
  6265. width:100%;
  6266. }
  6267. #u41569_text {
  6268. border-width:0px;
  6269. word-wrap:break-word;
  6270. text-transform:none;
  6271. visibility:hidden;
  6272. }
  6273. #u41570_img {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:0px;
  6277. top:0px;
  6278. width:92px;
  6279. height:30px;
  6280. }
  6281. #u41570 {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:836px;
  6285. top:292px;
  6286. width:92px;
  6287. height:30px;
  6288. display:flex;
  6289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6290. font-weight:400;
  6291. font-style:normal;
  6292. font-size:12px;
  6293. color:#333333;
  6294. }
  6295. #u41570 .text {
  6296. position:absolute;
  6297. align-self:center;
  6298. padding:2px 2px 2px 0px;
  6299. box-sizing:border-box;
  6300. width:100%;
  6301. }
  6302. #u41570_text {
  6303. border-width:0px;
  6304. word-wrap:break-word;
  6305. text-transform:none;
  6306. visibility:hidden;
  6307. }
  6308. #u41571_img {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:0px;
  6312. top:0px;
  6313. width:66px;
  6314. height:30px;
  6315. }
  6316. #u41571 {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:928px;
  6320. top:292px;
  6321. width:66px;
  6322. height:30px;
  6323. display:flex;
  6324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6325. font-weight:400;
  6326. font-style:normal;
  6327. font-size:12px;
  6328. color:#333333;
  6329. }
  6330. #u41571 .text {
  6331. position:absolute;
  6332. align-self:center;
  6333. padding:2px 2px 2px 0px;
  6334. box-sizing:border-box;
  6335. width:100%;
  6336. }
  6337. #u41571_text {
  6338. border-width:0px;
  6339. word-wrap:break-word;
  6340. text-transform:none;
  6341. visibility:hidden;
  6342. }
  6343. #u41572 {
  6344. border-width:0px;
  6345. position:absolute;
  6346. left:0px;
  6347. top:0px;
  6348. width:0px;
  6349. height:0px;
  6350. }
  6351. #u41573_div {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:0px;
  6355. top:0px;
  6356. width:59px;
  6357. height:30px;
  6358. background:inherit;
  6359. background-color:rgba(24, 144, 255, 1);
  6360. box-sizing:border-box;
  6361. border-width:1px;
  6362. border-style:solid;
  6363. border-color:rgba(0, 153, 255, 1);
  6364. border-radius:4px;
  6365. -moz-box-shadow:none;
  6366. -webkit-box-shadow:none;
  6367. box-shadow:none;
  6368. font-family:'Microsoft YaHei', sans-serif;
  6369. font-weight:400;
  6370. font-style:normal;
  6371. font-size:14px;
  6372. color:#FFFFFF;
  6373. }
  6374. #u41573 {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:1004px;
  6378. top:192px;
  6379. width:59px;
  6380. height:30px;
  6381. display:flex;
  6382. font-family:'Microsoft YaHei', sans-serif;
  6383. font-weight:400;
  6384. font-style:normal;
  6385. font-size:14px;
  6386. color:#FFFFFF;
  6387. }
  6388. #u41573 .text {
  6389. position:absolute;
  6390. align-self:center;
  6391. padding:5px 15px 5px 15px;
  6392. box-sizing:border-box;
  6393. width:100%;
  6394. }
  6395. #u41573_text {
  6396. border-width:0px;
  6397. white-space:nowrap;
  6398. text-transform:none;
  6399. }
  6400. #u41574_div {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:55px;
  6406. height:30px;
  6407. background:inherit;
  6408. background-color:rgba(255, 255, 255, 1);
  6409. box-sizing:border-box;
  6410. border-width:1px;
  6411. border-style:solid;
  6412. border-color:rgba(170, 170, 170, 1);
  6413. border-radius:4px;
  6414. -moz-box-shadow:none;
  6415. -webkit-box-shadow:none;
  6416. box-shadow:none;
  6417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6418. font-weight:400;
  6419. font-style:normal;
  6420. font-size:12px;
  6421. color:#555555;
  6422. }
  6423. #u41574 {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:1073px;
  6427. top:192px;
  6428. width:55px;
  6429. height:30px;
  6430. display:flex;
  6431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6432. font-weight:400;
  6433. font-style:normal;
  6434. font-size:12px;
  6435. color:#555555;
  6436. }
  6437. #u41574 .text {
  6438. position:absolute;
  6439. align-self:center;
  6440. padding:5px 15px 5px 15px;
  6441. box-sizing:border-box;
  6442. width:100%;
  6443. }
  6444. #u41574_text {
  6445. border-width:0px;
  6446. white-space:nowrap;
  6447. text-transform:none;
  6448. }
  6449. #u41575 {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:0px;
  6455. height:0px;
  6456. }
  6457. #u41576_div {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:0px;
  6461. top:0px;
  6462. width:140px;
  6463. height:30px;
  6464. background:inherit;
  6465. background-color:rgba(255, 255, 255, 1);
  6466. box-sizing:border-box;
  6467. border-width:1px;
  6468. border-style:solid;
  6469. border-color:rgba(201, 201, 201, 1);
  6470. border-radius:4px;
  6471. -moz-box-shadow:none;
  6472. -webkit-box-shadow:none;
  6473. box-shadow:none;
  6474. font-family:'Microsoft YaHei', sans-serif;
  6475. font-weight:400;
  6476. font-style:normal;
  6477. font-size:14px;
  6478. color:#CCCCCC;
  6479. text-align:left;
  6480. }
  6481. #u41576 {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:704px;
  6485. top:192px;
  6486. width:140px;
  6487. height:30px;
  6488. display:flex;
  6489. font-family:'Microsoft YaHei', sans-serif;
  6490. font-weight:400;
  6491. font-style:normal;
  6492. font-size:14px;
  6493. color:#CCCCCC;
  6494. text-align:left;
  6495. }
  6496. #u41576 .text {
  6497. position:absolute;
  6498. align-self:center;
  6499. padding:2px 8px 2px 8px;
  6500. box-sizing:border-box;
  6501. width:100%;
  6502. }
  6503. #u41576_text {
  6504. border-width:0px;
  6505. word-wrap:break-word;
  6506. text-transform:none;
  6507. visibility:hidden;
  6508. }
  6509. #u41577_input {
  6510. position:absolute;
  6511. left:0px;
  6512. top:0px;
  6513. width:127px;
  6514. height:25px;
  6515. padding:2px 2px 2px 2px;
  6516. font-family:'Microsoft YaHei', sans-serif;
  6517. font-weight:400;
  6518. font-style:normal;
  6519. font-size:10px;
  6520. letter-spacing:normal;
  6521. color:#000000;
  6522. vertical-align:none;
  6523. text-align:left;
  6524. text-transform:none;
  6525. background-color:transparent;
  6526. border-color:transparent;
  6527. }
  6528. #u41577_input.disabled {
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:127px;
  6533. height:25px;
  6534. padding:2px 2px 2px 2px;
  6535. font-family:'Microsoft YaHei', sans-serif;
  6536. font-weight:400;
  6537. font-style:normal;
  6538. font-size:10px;
  6539. letter-spacing:normal;
  6540. color:#000000;
  6541. vertical-align:none;
  6542. text-align:left;
  6543. text-transform:none;
  6544. background-color:transparent;
  6545. border-color:transparent;
  6546. }
  6547. #u41577_div {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:0px;
  6551. top:0px;
  6552. width:127px;
  6553. height:25px;
  6554. background:inherit;
  6555. background-color:rgba(255, 255, 255, 1);
  6556. border:none;
  6557. border-radius:0px;
  6558. -moz-box-shadow:none;
  6559. -webkit-box-shadow:none;
  6560. box-shadow:none;
  6561. font-family:'Microsoft YaHei', sans-serif;
  6562. font-weight:400;
  6563. font-style:normal;
  6564. font-size:10px;
  6565. }
  6566. #u41577 {
  6567. border-width:0px;
  6568. position:absolute;
  6569. left:712px;
  6570. top:193px;
  6571. width:127px;
  6572. height:25px;
  6573. display:flex;
  6574. font-family:'Microsoft YaHei', sans-serif;
  6575. font-weight:400;
  6576. font-style:normal;
  6577. font-size:10px;
  6578. }
  6579. #u41577 .text {
  6580. position:absolute;
  6581. align-self:center;
  6582. padding:2px 2px 2px 2px;
  6583. box-sizing:border-box;
  6584. width:100%;
  6585. }
  6586. #u41577_div.disabled {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:127px;
  6592. height:25px;
  6593. background:inherit;
  6594. background-color:rgba(240, 240, 240, 1);
  6595. border:none;
  6596. border-radius:0px;
  6597. -moz-box-shadow:none;
  6598. -webkit-box-shadow:none;
  6599. box-shadow:none;
  6600. font-family:'Microsoft YaHei', sans-serif;
  6601. font-weight:400;
  6602. font-style:normal;
  6603. font-size:10px;
  6604. }
  6605. #u41577.disabled {
  6606. }
  6607. #u41578 {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:0px;
  6611. top:0px;
  6612. width:0px;
  6613. height:0px;
  6614. }
  6615. #u41579_div {
  6616. border-width:0px;
  6617. position:absolute;
  6618. left:0px;
  6619. top:0px;
  6620. width:140px;
  6621. height:30px;
  6622. background:inherit;
  6623. background-color:rgba(255, 255, 255, 1);
  6624. box-sizing:border-box;
  6625. border-width:1px;
  6626. border-style:solid;
  6627. border-color:rgba(188, 188, 188, 1);
  6628. border-radius:4px;
  6629. -moz-box-shadow:none;
  6630. -webkit-box-shadow:none;
  6631. box-shadow:none;
  6632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6633. font-weight:400;
  6634. font-style:normal;
  6635. font-size:12px;
  6636. color:#FFFFFF;
  6637. }
  6638. #u41579 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:854px;
  6642. top:192px;
  6643. width:140px;
  6644. height:30px;
  6645. display:flex;
  6646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6647. font-weight:400;
  6648. font-style:normal;
  6649. font-size:12px;
  6650. color:#FFFFFF;
  6651. }
  6652. #u41579 .text {
  6653. position:absolute;
  6654. align-self:center;
  6655. padding:8px 15px 8px 15px;
  6656. box-sizing:border-box;
  6657. width:100%;
  6658. }
  6659. #u41579_text {
  6660. border-width:0px;
  6661. word-wrap:break-word;
  6662. text-transform:none;
  6663. visibility:hidden;
  6664. }
  6665. #u41580_img {
  6666. border-width:0px;
  6667. position:absolute;
  6668. left:0px;
  6669. top:0px;
  6670. width:18px;
  6671. height:18px;
  6672. }
  6673. #u41580 {
  6674. border-width:0px;
  6675. position:absolute;
  6676. left:971px;
  6677. top:198px;
  6678. width:18px;
  6679. height:18px;
  6680. display:flex;
  6681. opacity:0.5;
  6682. }
  6683. #u41580 .text {
  6684. position:absolute;
  6685. align-self:center;
  6686. padding:2px 2px 2px 2px;
  6687. box-sizing:border-box;
  6688. width:100%;
  6689. }
  6690. #u41580_text {
  6691. border-width:0px;
  6692. word-wrap:break-word;
  6693. text-transform:none;
  6694. visibility:hidden;
  6695. }
  6696. #u41581_div {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:0px;
  6700. top:0px;
  6701. width:57px;
  6702. height:50px;
  6703. background:inherit;
  6704. background-color:rgba(255, 255, 255, 0);
  6705. box-sizing:border-box;
  6706. border-width:2px;
  6707. border-style:solid;
  6708. border-color:rgba(24, 144, 255, 1);
  6709. border-left:0px;
  6710. border-top:0px;
  6711. border-right:0px;
  6712. border-radius:0px;
  6713. border-bottom-right-radius:0px;
  6714. border-bottom-left-radius:0px;
  6715. -moz-box-shadow:none;
  6716. -webkit-box-shadow:none;
  6717. box-shadow:none;
  6718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6719. font-weight:400;
  6720. font-style:normal;
  6721. font-size:14px;
  6722. color:#1890FF;
  6723. }
  6724. #u41581 {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:353px;
  6728. top:100px;
  6729. width:57px;
  6730. height:50px;
  6731. display:flex;
  6732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6733. font-weight:400;
  6734. font-style:normal;
  6735. font-size:14px;
  6736. color:#1890FF;
  6737. }
  6738. #u41581 .text {
  6739. position:absolute;
  6740. align-self:center;
  6741. padding:0px 0px 0px 0px;
  6742. box-sizing:border-box;
  6743. width:100%;
  6744. }
  6745. #u41581_text {
  6746. border-width:0px;
  6747. white-space:nowrap;
  6748. text-transform:none;
  6749. }
  6750. #u41582_div {
  6751. border-width:0px;
  6752. position:absolute;
  6753. left:0px;
  6754. top:0px;
  6755. width:57px;
  6756. height:50px;
  6757. background:inherit;
  6758. background-color:rgba(255, 255, 255, 0);
  6759. border:none;
  6760. border-left:0px;
  6761. border-top:0px;
  6762. border-right:0px;
  6763. border-radius:0px;
  6764. border-bottom-right-radius:0px;
  6765. border-bottom-left-radius:0px;
  6766. -moz-box-shadow:none;
  6767. -webkit-box-shadow:none;
  6768. box-shadow:none;
  6769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6770. font-weight:400;
  6771. font-style:normal;
  6772. font-size:14px;
  6773. }
  6774. #u41582 {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:430px;
  6778. top:100px;
  6779. width:57px;
  6780. height:50px;
  6781. display:flex;
  6782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6783. font-weight:400;
  6784. font-style:normal;
  6785. font-size:14px;
  6786. }
  6787. #u41582 .text {
  6788. position:absolute;
  6789. align-self:center;
  6790. padding:0px 0px 0px 0px;
  6791. box-sizing:border-box;
  6792. width:100%;
  6793. }
  6794. #u41582_text {
  6795. border-width:0px;
  6796. white-space:nowrap;
  6797. text-transform:none;
  6798. }
  6799. #u41583 {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:0px;
  6803. top:0px;
  6804. width:0px;
  6805. height:0px;
  6806. }
  6807. #u41584_div {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:0px;
  6811. top:0px;
  6812. width:140px;
  6813. height:30px;
  6814. background:inherit;
  6815. background-color:rgba(255, 255, 255, 1);
  6816. box-sizing:border-box;
  6817. border-width:1px;
  6818. border-style:solid;
  6819. border-color:rgba(215, 215, 215, 1);
  6820. border-radius:4px;
  6821. -moz-box-shadow:none;
  6822. -webkit-box-shadow:none;
  6823. box-shadow:none;
  6824. font-size:11px;
  6825. }
  6826. #u41584 {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:554px;
  6830. top:192px;
  6831. width:140px;
  6832. height:30px;
  6833. display:flex;
  6834. font-size:11px;
  6835. }
  6836. #u41584 .text {
  6837. position:absolute;
  6838. align-self:center;
  6839. padding:2px 2px 2px 2px;
  6840. box-sizing:border-box;
  6841. width:100%;
  6842. }
  6843. #u41584_text {
  6844. border-width:0px;
  6845. word-wrap:break-word;
  6846. text-transform:none;
  6847. visibility:hidden;
  6848. }
  6849. #u41585_input {
  6850. position:absolute;
  6851. left:0px;
  6852. top:0px;
  6853. width:126px;
  6854. height:23px;
  6855. padding:2px 2px 2px 2px;
  6856. font-family:'ArialMT', 'Arial', sans-serif;
  6857. font-weight:400;
  6858. font-style:normal;
  6859. font-size:11px;
  6860. letter-spacing:normal;
  6861. color:#AAAAAA;
  6862. vertical-align:none;
  6863. text-align:left;
  6864. text-transform:none;
  6865. background-color:transparent;
  6866. border-color:transparent;
  6867. }
  6868. #u41585_input.disabled {
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:126px;
  6873. height:23px;
  6874. padding:2px 2px 2px 2px;
  6875. font-family:'ArialMT', 'Arial', sans-serif;
  6876. font-weight:400;
  6877. font-style:normal;
  6878. font-size:11px;
  6879. letter-spacing:normal;
  6880. color:#AAAAAA;
  6881. vertical-align:none;
  6882. text-align:left;
  6883. text-transform:none;
  6884. background-color:transparent;
  6885. border-color:transparent;
  6886. }
  6887. #u41585_div {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:0px;
  6891. top:0px;
  6892. width:126px;
  6893. height:23px;
  6894. background:inherit;
  6895. background-color:rgba(255, 255, 255, 1);
  6896. border:none;
  6897. border-radius:0px;
  6898. -moz-box-shadow:none;
  6899. -webkit-box-shadow:none;
  6900. box-shadow:none;
  6901. font-size:11px;
  6902. color:#AAAAAA;
  6903. }
  6904. #u41585 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:561px;
  6908. top:194px;
  6909. width:126px;
  6910. height:23px;
  6911. display:flex;
  6912. font-size:11px;
  6913. color:#AAAAAA;
  6914. }
  6915. #u41585 .text {
  6916. position:absolute;
  6917. align-self:flex-start;
  6918. padding:2px 2px 2px 2px;
  6919. box-sizing:border-box;
  6920. width:100%;
  6921. }
  6922. #u41585_div.disabled {
  6923. border-width:0px;
  6924. position:absolute;
  6925. left:0px;
  6926. top:0px;
  6927. width:126px;
  6928. height:23px;
  6929. background:inherit;
  6930. background-color:rgba(240, 240, 240, 1);
  6931. border:none;
  6932. border-radius:0px;
  6933. -moz-box-shadow:none;
  6934. -webkit-box-shadow:none;
  6935. box-shadow:none;
  6936. font-size:11px;
  6937. color:#AAAAAA;
  6938. }
  6939. #u41585.disabled {
  6940. }
  6941. .u41585_input_option {
  6942. font-size:11px;
  6943. }
  6944. #u41586 {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:0px;
  6948. top:0px;
  6949. width:0px;
  6950. height:0px;
  6951. }
  6952. #u41587_div {
  6953. border-width:0px;
  6954. position:absolute;
  6955. left:0px;
  6956. top:0px;
  6957. width:200px;
  6958. height:1180px;
  6959. background:inherit;
  6960. background-color:rgba(255, 255, 255, 1);
  6961. border:none;
  6962. border-radius:0px;
  6963. -moz-box-shadow:none;
  6964. -webkit-box-shadow:none;
  6965. box-shadow:none;
  6966. }
  6967. #u41587 {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:120px;
  6971. top:50px;
  6972. width:200px;
  6973. height:1180px;
  6974. display:flex;
  6975. }
  6976. #u41587 .text {
  6977. position:absolute;
  6978. align-self:center;
  6979. padding:2px 2px 2px 2px;
  6980. box-sizing:border-box;
  6981. width:100%;
  6982. }
  6983. #u41587_text {
  6984. border-width:0px;
  6985. word-wrap:break-word;
  6986. text-transform:none;
  6987. visibility:hidden;
  6988. }
  6989. #u41588_div {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:0px;
  6993. top:0px;
  6994. width:200px;
  6995. height:60px;
  6996. background:inherit;
  6997. background-color:rgba(224, 231, 247, 1);
  6998. border:none;
  6999. border-radius:0px;
  7000. -moz-box-shadow:none;
  7001. -webkit-box-shadow:none;
  7002. box-shadow:none;
  7003. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7004. font-weight:500;
  7005. font-style:normal;
  7006. font-size:18px;
  7007. }
  7008. #u41588 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:120px;
  7012. top:50px;
  7013. width:200px;
  7014. height:60px;
  7015. display:flex;
  7016. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7017. font-weight:500;
  7018. font-style:normal;
  7019. font-size:18px;
  7020. }
  7021. #u41588 .text {
  7022. position:absolute;
  7023. align-self:center;
  7024. padding:0px 0px 0px 20px;
  7025. box-sizing:border-box;
  7026. width:100%;
  7027. }
  7028. #u41588_text {
  7029. border-width:0px;
  7030. word-wrap:break-word;
  7031. text-transform:none;
  7032. }
  7033. #u41589_div {
  7034. border-width:0px;
  7035. position:absolute;
  7036. left:0px;
  7037. top:0px;
  7038. width:65px;
  7039. height:22px;
  7040. background:inherit;
  7041. background-color:rgba(255, 255, 255, 0);
  7042. border:none;
  7043. border-radius:0px;
  7044. -moz-box-shadow:none;
  7045. -webkit-box-shadow:none;
  7046. box-shadow:none;
  7047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7048. font-weight:400;
  7049. font-style:normal;
  7050. font-size:16px;
  7051. }
  7052. #u41589 {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:147px;
  7056. top:167px;
  7057. width:65px;
  7058. height:22px;
  7059. display:flex;
  7060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7061. font-weight:400;
  7062. font-style:normal;
  7063. font-size:16px;
  7064. }
  7065. #u41589 .text {
  7066. position:absolute;
  7067. align-self:flex-start;
  7068. padding:0px 0px 0px 0px;
  7069. box-sizing:border-box;
  7070. width:100%;
  7071. }
  7072. #u41589_text {
  7073. border-width:0px;
  7074. white-space:nowrap;
  7075. text-transform:none;
  7076. }
  7077. #u41590_div {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:0px;
  7081. top:0px;
  7082. width:65px;
  7083. height:22px;
  7084. background:inherit;
  7085. background-color:rgba(255, 255, 255, 0);
  7086. border:none;
  7087. border-radius:0px;
  7088. -moz-box-shadow:none;
  7089. -webkit-box-shadow:none;
  7090. box-shadow:none;
  7091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7092. font-weight:400;
  7093. font-style:normal;
  7094. font-size:16px;
  7095. }
  7096. #u41590 {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:147px;
  7100. top:251px;
  7101. width:65px;
  7102. height:22px;
  7103. display:flex;
  7104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7105. font-weight:400;
  7106. font-style:normal;
  7107. font-size:16px;
  7108. }
  7109. #u41590 .text {
  7110. position:absolute;
  7111. align-self:flex-start;
  7112. padding:0px 0px 0px 0px;
  7113. box-sizing:border-box;
  7114. width:100%;
  7115. }
  7116. #u41590_text {
  7117. border-width:0px;
  7118. white-space:nowrap;
  7119. text-transform:none;
  7120. }
  7121. #u41591_div {
  7122. border-width:0px;
  7123. position:absolute;
  7124. left:0px;
  7125. top:0px;
  7126. width:49px;
  7127. height:17px;
  7128. background:inherit;
  7129. background-color:rgba(255, 255, 255, 0);
  7130. border:none;
  7131. border-radius:0px;
  7132. -moz-box-shadow:none;
  7133. -webkit-box-shadow:none;
  7134. box-shadow:none;
  7135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7136. font-weight:400;
  7137. font-style:normal;
  7138. font-size:12px;
  7139. color:#AAAAAA;
  7140. }
  7141. #u41591 {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:147px;
  7145. top:130px;
  7146. width:49px;
  7147. height:17px;
  7148. display:flex;
  7149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7150. font-weight:400;
  7151. font-style:normal;
  7152. font-size:12px;
  7153. color:#AAAAAA;
  7154. }
  7155. #u41591 .text {
  7156. position:absolute;
  7157. align-self:flex-start;
  7158. padding:0px 0px 0px 0px;
  7159. box-sizing:border-box;
  7160. width:100%;
  7161. }
  7162. #u41591_text {
  7163. border-width:0px;
  7164. white-space:nowrap;
  7165. text-transform:none;
  7166. }
  7167. #u41592_div {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:0px;
  7171. top:0px;
  7172. width:65px;
  7173. height:22px;
  7174. background:inherit;
  7175. background-color:rgba(255, 255, 255, 0);
  7176. border:none;
  7177. border-radius:0px;
  7178. -moz-box-shadow:none;
  7179. -webkit-box-shadow:none;
  7180. box-shadow:none;
  7181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7182. font-weight:400;
  7183. font-style:normal;
  7184. font-size:16px;
  7185. }
  7186. #u41592 {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:147px;
  7190. top:354px;
  7191. width:65px;
  7192. height:22px;
  7193. display:flex;
  7194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7195. font-weight:400;
  7196. font-style:normal;
  7197. font-size:16px;
  7198. }
  7199. #u41592 .text {
  7200. position:absolute;
  7201. align-self:flex-start;
  7202. padding:0px 0px 0px 0px;
  7203. box-sizing:border-box;
  7204. width:100%;
  7205. }
  7206. #u41592_text {
  7207. border-width:0px;
  7208. white-space:nowrap;
  7209. text-transform:none;
  7210. }
  7211. #u41593_div {
  7212. border-width:0px;
  7213. position:absolute;
  7214. left:0px;
  7215. top:0px;
  7216. width:49px;
  7217. height:17px;
  7218. background:inherit;
  7219. background-color:rgba(255, 255, 255, 0);
  7220. border:none;
  7221. border-radius:0px;
  7222. -moz-box-shadow:none;
  7223. -webkit-box-shadow:none;
  7224. box-shadow:none;
  7225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7226. font-weight:400;
  7227. font-style:normal;
  7228. font-size:12px;
  7229. color:#AAAAAA;
  7230. }
  7231. #u41593 {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:147px;
  7235. top:318px;
  7236. width:49px;
  7237. height:17px;
  7238. display:flex;
  7239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7240. font-weight:400;
  7241. font-style:normal;
  7242. font-size:12px;
  7243. color:#AAAAAA;
  7244. }
  7245. #u41593 .text {
  7246. position:absolute;
  7247. align-self:flex-start;
  7248. padding:0px 0px 0px 0px;
  7249. box-sizing:border-box;
  7250. width:100%;
  7251. }
  7252. #u41593_text {
  7253. border-width:0px;
  7254. white-space:nowrap;
  7255. text-transform:none;
  7256. }
  7257. #u41594_img {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:201px;
  7263. height:2px;
  7264. }
  7265. #u41594 {
  7266. border-width:0px;
  7267. position:absolute;
  7268. left:120px;
  7269. top:293px;
  7270. width:200px;
  7271. height:1px;
  7272. display:flex;
  7273. }
  7274. #u41594 .text {
  7275. position:absolute;
  7276. align-self:center;
  7277. padding:2px 2px 2px 2px;
  7278. box-sizing:border-box;
  7279. width:100%;
  7280. }
  7281. #u41594_text {
  7282. border-width:0px;
  7283. word-wrap:break-word;
  7284. text-transform:none;
  7285. visibility:hidden;
  7286. }
  7287. #u41595_div {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:0px;
  7291. top:0px;
  7292. width:65px;
  7293. height:22px;
  7294. background:inherit;
  7295. background-color:rgba(255, 255, 255, 0);
  7296. border:none;
  7297. border-radius:0px;
  7298. -moz-box-shadow:none;
  7299. -webkit-box-shadow:none;
  7300. box-shadow:none;
  7301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7302. font-weight:400;
  7303. font-style:normal;
  7304. font-size:16px;
  7305. }
  7306. #u41595 {
  7307. border-width:0px;
  7308. position:absolute;
  7309. left:147px;
  7310. top:396px;
  7311. width:65px;
  7312. height:22px;
  7313. display:flex;
  7314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7315. font-weight:400;
  7316. font-style:normal;
  7317. font-size:16px;
  7318. }
  7319. #u41595 .text {
  7320. position:absolute;
  7321. align-self:flex-start;
  7322. padding:0px 0px 0px 0px;
  7323. box-sizing:border-box;
  7324. width:100%;
  7325. }
  7326. #u41595_text {
  7327. border-width:0px;
  7328. white-space:nowrap;
  7329. text-transform:none;
  7330. }
  7331. #u41596_div {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:0px;
  7335. top:0px;
  7336. width:65px;
  7337. height:22px;
  7338. background:inherit;
  7339. background-color:rgba(255, 255, 255, 0);
  7340. border:none;
  7341. border-radius:0px;
  7342. -moz-box-shadow:none;
  7343. -webkit-box-shadow:none;
  7344. box-shadow:none;
  7345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7346. font-weight:400;
  7347. font-style:normal;
  7348. font-size:16px;
  7349. }
  7350. #u41596 {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:147px;
  7354. top:209px;
  7355. width:65px;
  7356. height:22px;
  7357. display:flex;
  7358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7359. font-weight:400;
  7360. font-style:normal;
  7361. font-size:16px;
  7362. }
  7363. #u41596 .text {
  7364. position:absolute;
  7365. align-self:flex-start;
  7366. padding:0px 0px 0px 0px;
  7367. box-sizing:border-box;
  7368. width:100%;
  7369. }
  7370. #u41596_text {
  7371. border-width:0px;
  7372. white-space:nowrap;
  7373. text-transform:none;
  7374. }
  7375. #u41597_div {
  7376. border-width:0px;
  7377. position:absolute;
  7378. left:0px;
  7379. top:0px;
  7380. width:49px;
  7381. height:22px;
  7382. background:inherit;
  7383. background-color:rgba(255, 255, 255, 0);
  7384. border:none;
  7385. border-radius:0px;
  7386. -moz-box-shadow:none;
  7387. -webkit-box-shadow:none;
  7388. box-shadow:none;
  7389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7390. font-weight:400;
  7391. font-style:normal;
  7392. font-size:16px;
  7393. }
  7394. #u41597 {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:147px;
  7398. top:499px;
  7399. width:49px;
  7400. height:22px;
  7401. display:flex;
  7402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7403. font-weight:400;
  7404. font-style:normal;
  7405. font-size:16px;
  7406. }
  7407. #u41597 .text {
  7408. position:absolute;
  7409. align-self:flex-start;
  7410. padding:0px 0px 0px 0px;
  7411. box-sizing:border-box;
  7412. width:100%;
  7413. }
  7414. #u41597_text {
  7415. border-width:0px;
  7416. white-space:nowrap;
  7417. text-transform:none;
  7418. }
  7419. #u41598_div {
  7420. border-width:0px;
  7421. position:absolute;
  7422. left:0px;
  7423. top:0px;
  7424. width:37px;
  7425. height:17px;
  7426. background:inherit;
  7427. background-color:rgba(255, 255, 255, 0);
  7428. border:none;
  7429. border-radius:0px;
  7430. -moz-box-shadow:none;
  7431. -webkit-box-shadow:none;
  7432. box-shadow:none;
  7433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7434. font-weight:400;
  7435. font-style:normal;
  7436. font-size:12px;
  7437. color:#AAAAAA;
  7438. }
  7439. #u41598 {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:147px;
  7443. top:463px;
  7444. width:37px;
  7445. height:17px;
  7446. display:flex;
  7447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7448. font-weight:400;
  7449. font-style:normal;
  7450. font-size:12px;
  7451. color:#AAAAAA;
  7452. }
  7453. #u41598 .text {
  7454. position:absolute;
  7455. align-self:flex-start;
  7456. padding:0px 0px 0px 0px;
  7457. box-sizing:border-box;
  7458. width:100%;
  7459. }
  7460. #u41598_text {
  7461. border-width:0px;
  7462. white-space:nowrap;
  7463. text-transform:none;
  7464. }
  7465. #u41599_img {
  7466. border-width:0px;
  7467. position:absolute;
  7468. left:0px;
  7469. top:0px;
  7470. width:201px;
  7471. height:2px;
  7472. }
  7473. #u41599 {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:120px;
  7477. top:438px;
  7478. width:200px;
  7479. height:1px;
  7480. display:flex;
  7481. }
  7482. #u41599 .text {
  7483. position:absolute;
  7484. align-self:center;
  7485. padding:2px 2px 2px 2px;
  7486. box-sizing:border-box;
  7487. width:100%;
  7488. }
  7489. #u41599_text {
  7490. border-width:0px;
  7491. word-wrap:break-word;
  7492. text-transform:none;
  7493. visibility:hidden;
  7494. }