styles.css 191 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2035px;
  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. #u50880_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. #u50880 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u50880 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u50880_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u50881_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. #u50881 {
  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. #u50881 .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. #u50881_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u50882_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. #u50882 {
  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. #u50882 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u50882_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u50883 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u50884_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u50884 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u50884 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u50884_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u50885_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. #u50885 {
  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. #u50885 .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. #u50885_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u50886_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. #u50886 {
  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. #u50886 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u50886_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u50887 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u50888_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. #u50888_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. #u50888_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. #u50888 {
  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. #u50888 .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. #u50888_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. #u50888.disabled {
  356. }
  357. .u50888_input_option {
  358. font-size:14px;
  359. }
  360. #u50889_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u50889 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u50889 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u50889_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u50890_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. #u50890 {
  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. #u50890 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u50890_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u50891_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. #u50891 {
  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. #u50891 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u50891_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u50892 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u50893_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. #u50893 {
  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. #u50893 .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. #u50893_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u50894_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u50894 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u50894 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u50894_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u50895 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u50896_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. #u50896 {
  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. #u50896 .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. #u50896_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u50897_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u50897 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u50897 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u50897_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u50898 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u50899_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. #u50899 {
  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. #u50899 .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. #u50899_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u50900_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u50900 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u50900 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u50900_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u50901 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u50902_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. #u50902 {
  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. #u50902 .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. #u50902_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u50903_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u50903 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u50903 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u50903_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u50904 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u50905_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. #u50905 {
  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. #u50905 .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. #u50905_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u50906_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u50906 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u50906 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u50906_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u50907 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u50908_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. #u50908 {
  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. #u50908 .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. #u50908_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u50909_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u50909 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u50909 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u50909_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u50910 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u50911_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. #u50911 {
  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. #u50911 .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. #u50911_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u50912_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u50912 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u50912 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u50912_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u50913 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u50914_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. #u50914 {
  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. #u50914 .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. #u50914_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u50915_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u50915 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u50915 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u50915_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u50916 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u50917_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. #u50917 {
  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. #u50917 .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. #u50917_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u50918_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u50918 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u50918 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u50918_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u50919 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u50920_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. #u50920 {
  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. #u50920 .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. #u50920_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u50921_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u50921 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u50921 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u50921_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u50922_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. #u50922 {
  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. #u50922 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u50922_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u50923_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u50923 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u50923 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u50923_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u50924_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. #u50924 {
  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. #u50924 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u50924_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u50925_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u50925 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u50925 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u50925_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u50926 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u50927_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. #u50927 {
  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. #u50927 .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. #u50927_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u50928_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u50928 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u50928 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u50928_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u50929 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u50930_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. #u50930 {
  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. #u50930 .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. #u50930_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u50931_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u50931 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u50931 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u50931_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u50932_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1265px;
  1644. height:1193px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. color:#1890FF;
  1653. }
  1654. #u50932 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:329px;
  1658. top:50px;
  1659. width:1265px;
  1660. height:1193px;
  1661. display:flex;
  1662. color:#1890FF;
  1663. }
  1664. #u50932 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u50932_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u50933_div {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:73px;
  1683. height:50px;
  1684. background:inherit;
  1685. background-color:rgba(255, 255, 255, 0);
  1686. border:none;
  1687. border-left:0px;
  1688. border-top:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-bottom-right-radius:0px;
  1692. border-bottom-left-radius:0px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1697. font-weight:500;
  1698. font-style:normal;
  1699. font-size:18px;
  1700. }
  1701. #u50933 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:348px;
  1705. top:50px;
  1706. width:73px;
  1707. height:50px;
  1708. display:flex;
  1709. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1710. font-weight:500;
  1711. font-style:normal;
  1712. font-size:18px;
  1713. }
  1714. #u50933 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:0px 0px 0px 0px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u50933_text {
  1722. border-width:0px;
  1723. white-space:nowrap;
  1724. text-transform:none;
  1725. }
  1726. #u50934_div {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:67px;
  1732. height:30px;
  1733. background:inherit;
  1734. background-color:rgba(24, 144, 255, 1);
  1735. border:none;
  1736. border-radius:4px;
  1737. -moz-box-shadow:none;
  1738. -webkit-box-shadow:none;
  1739. box-shadow:none;
  1740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. font-size:14px;
  1744. color:#FFFFFF;
  1745. }
  1746. #u50934 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:350px;
  1750. top:154px;
  1751. width:67px;
  1752. height:30px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:14px;
  1758. color:#FFFFFF;
  1759. }
  1760. #u50934 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:5px 15px 5px 15px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u50934_text {
  1768. border-width:0px;
  1769. white-space:nowrap;
  1770. text-transform:none;
  1771. }
  1772. #u50935 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:348px;
  1776. top:201px;
  1777. width:1192px;
  1778. height:366px;
  1779. }
  1780. #u50936_img {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:0px;
  1784. top:0px;
  1785. width:82px;
  1786. height:39px;
  1787. }
  1788. #u50936 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:82px;
  1794. height:39px;
  1795. display:flex;
  1796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1797. font-weight:400;
  1798. font-style:normal;
  1799. font-size:12px;
  1800. color:#FFFFFF;
  1801. }
  1802. #u50936 .text {
  1803. position:absolute;
  1804. align-self:center;
  1805. padding:2px 2px 2px 0px;
  1806. box-sizing:border-box;
  1807. width:100%;
  1808. }
  1809. #u50936_text {
  1810. border-width:0px;
  1811. word-wrap:break-word;
  1812. text-transform:none;
  1813. }
  1814. #u50937_img {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:82px;
  1820. height:39px;
  1821. }
  1822. #u50937 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:82px;
  1826. top:0px;
  1827. width:82px;
  1828. height:39px;
  1829. display:flex;
  1830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:12px;
  1834. color:#FFFFFF;
  1835. }
  1836. #u50937 .text {
  1837. position:absolute;
  1838. align-self:center;
  1839. padding:2px 2px 2px 0px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u50937_text {
  1844. border-width:0px;
  1845. word-wrap:break-word;
  1846. text-transform:none;
  1847. }
  1848. #u50938_img {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:82px;
  1854. height:39px;
  1855. }
  1856. #u50938 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:164px;
  1860. top:0px;
  1861. width:82px;
  1862. height:39px;
  1863. display:flex;
  1864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1865. font-weight:400;
  1866. font-style:normal;
  1867. font-size:12px;
  1868. color:#FFFFFF;
  1869. }
  1870. #u50938 .text {
  1871. position:absolute;
  1872. align-self:center;
  1873. padding:2px 2px 2px 0px;
  1874. box-sizing:border-box;
  1875. width:100%;
  1876. }
  1877. #u50938_text {
  1878. border-width:0px;
  1879. word-wrap:break-word;
  1880. text-transform:none;
  1881. }
  1882. #u50939_img {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:82px;
  1888. height:39px;
  1889. }
  1890. #u50939 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:246px;
  1894. top:0px;
  1895. width:82px;
  1896. height:39px;
  1897. display:flex;
  1898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1899. font-weight:400;
  1900. font-style:normal;
  1901. font-size:12px;
  1902. color:#FFFFFF;
  1903. }
  1904. #u50939 .text {
  1905. position:absolute;
  1906. align-self:center;
  1907. padding:2px 2px 2px 0px;
  1908. box-sizing:border-box;
  1909. width:100%;
  1910. }
  1911. #u50939_text {
  1912. border-width:0px;
  1913. word-wrap:break-word;
  1914. text-transform:none;
  1915. }
  1916. #u50940_img {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:0px;
  1920. top:0px;
  1921. width:82px;
  1922. height:39px;
  1923. }
  1924. #u50940 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:328px;
  1928. top:0px;
  1929. width:82px;
  1930. height:39px;
  1931. display:flex;
  1932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1933. font-weight:400;
  1934. font-style:normal;
  1935. font-size:12px;
  1936. color:#FFFFFF;
  1937. }
  1938. #u50940 .text {
  1939. position:absolute;
  1940. align-self:center;
  1941. padding:2px 2px 2px 0px;
  1942. box-sizing:border-box;
  1943. width:100%;
  1944. }
  1945. #u50940_text {
  1946. border-width:0px;
  1947. word-wrap:break-word;
  1948. text-transform:none;
  1949. }
  1950. #u50941_img {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:0px;
  1954. top:0px;
  1955. width:89px;
  1956. height:39px;
  1957. }
  1958. #u50941 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:410px;
  1962. top:0px;
  1963. width:89px;
  1964. height:39px;
  1965. display:flex;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:12px;
  1970. color:#FFFFFF;
  1971. }
  1972. #u50941 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u50941_text {
  1980. border-width:0px;
  1981. word-wrap:break-word;
  1982. text-transform:none;
  1983. }
  1984. #u50942_img {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:82px;
  1990. height:39px;
  1991. }
  1992. #u50942 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:499px;
  1996. top:0px;
  1997. width:82px;
  1998. height:39px;
  1999. display:flex;
  2000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2001. font-weight:400;
  2002. font-style:normal;
  2003. font-size:12px;
  2004. color:#FFFFFF;
  2005. }
  2006. #u50942 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:2px 2px 2px 0px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u50942_text {
  2014. border-width:0px;
  2015. word-wrap:break-word;
  2016. text-transform:none;
  2017. }
  2018. #u50943_img {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:82px;
  2024. height:39px;
  2025. }
  2026. #u50943 {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:581px;
  2030. top:0px;
  2031. width:82px;
  2032. height:39px;
  2033. display:flex;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:12px;
  2038. color:#FFFFFF;
  2039. }
  2040. #u50943 .text {
  2041. position:absolute;
  2042. align-self:center;
  2043. padding:2px 2px 2px 0px;
  2044. box-sizing:border-box;
  2045. width:100%;
  2046. }
  2047. #u50943_text {
  2048. border-width:0px;
  2049. word-wrap:break-word;
  2050. text-transform:none;
  2051. }
  2052. #u50944_img {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:88px;
  2058. height:39px;
  2059. }
  2060. #u50944 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:663px;
  2064. top:0px;
  2065. width:88px;
  2066. height:39px;
  2067. display:flex;
  2068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2069. font-weight:400;
  2070. font-style:normal;
  2071. font-size:12px;
  2072. color:#FFFFFF;
  2073. }
  2074. #u50944 .text {
  2075. position:absolute;
  2076. align-self:center;
  2077. padding:2px 2px 2px 0px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u50944_text {
  2082. border-width:0px;
  2083. word-wrap:break-word;
  2084. text-transform:none;
  2085. }
  2086. #u50945_img {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:82px;
  2092. height:39px;
  2093. }
  2094. #u50945 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:751px;
  2098. top:0px;
  2099. width:82px;
  2100. height:39px;
  2101. display:flex;
  2102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:12px;
  2106. color:#FFFFFF;
  2107. }
  2108. #u50945 .text {
  2109. position:absolute;
  2110. align-self:center;
  2111. padding:2px 2px 2px 0px;
  2112. box-sizing:border-box;
  2113. width:100%;
  2114. }
  2115. #u50945_text {
  2116. border-width:0px;
  2117. word-wrap:break-word;
  2118. text-transform:none;
  2119. }
  2120. #u50946_img {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:82px;
  2126. height:39px;
  2127. }
  2128. #u50946 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:833px;
  2132. top:0px;
  2133. width:82px;
  2134. height:39px;
  2135. display:flex;
  2136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2137. font-weight:400;
  2138. font-style:normal;
  2139. font-size:12px;
  2140. color:#FFFFFF;
  2141. }
  2142. #u50946 .text {
  2143. position:absolute;
  2144. align-self:center;
  2145. padding:2px 2px 2px 0px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u50946_text {
  2150. border-width:0px;
  2151. word-wrap:break-word;
  2152. text-transform:none;
  2153. }
  2154. #u50947_img {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:89px;
  2160. height:39px;
  2161. }
  2162. #u50947 {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:915px;
  2166. top:0px;
  2167. width:89px;
  2168. height:39px;
  2169. display:flex;
  2170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2171. font-weight:400;
  2172. font-style:normal;
  2173. font-size:12px;
  2174. color:#FFFFFF;
  2175. }
  2176. #u50947 .text {
  2177. position:absolute;
  2178. align-self:center;
  2179. padding:2px 2px 2px 0px;
  2180. box-sizing:border-box;
  2181. width:100%;
  2182. }
  2183. #u50947_text {
  2184. border-width:0px;
  2185. word-wrap:break-word;
  2186. text-transform:none;
  2187. }
  2188. #u50948_img {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:88px;
  2194. height:39px;
  2195. }
  2196. #u50948 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:1004px;
  2200. top:0px;
  2201. width:88px;
  2202. height:39px;
  2203. display:flex;
  2204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2205. font-weight:400;
  2206. font-style:normal;
  2207. font-size:12px;
  2208. color:#FFFFFF;
  2209. }
  2210. #u50948 .text {
  2211. position:absolute;
  2212. align-self:center;
  2213. padding:2px 2px 2px 0px;
  2214. box-sizing:border-box;
  2215. width:100%;
  2216. }
  2217. #u50948_text {
  2218. border-width:0px;
  2219. word-wrap:break-word;
  2220. text-transform:none;
  2221. }
  2222. #u50949_img {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:0px;
  2226. top:0px;
  2227. width:100px;
  2228. height:39px;
  2229. }
  2230. #u50949 {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:1092px;
  2234. top:0px;
  2235. width:100px;
  2236. height:39px;
  2237. display:flex;
  2238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2239. font-weight:400;
  2240. font-style:normal;
  2241. font-size:12px;
  2242. color:#FFFFFF;
  2243. }
  2244. #u50949 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:2px 2px 2px 0px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u50949_text {
  2252. border-width:0px;
  2253. word-wrap:break-word;
  2254. text-transform:none;
  2255. }
  2256. #u50950_img {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:82px;
  2262. height:38px;
  2263. }
  2264. #u50950 {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:39px;
  2269. width:82px;
  2270. height:38px;
  2271. display:flex;
  2272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2273. font-weight:400;
  2274. font-style:normal;
  2275. font-size:12px;
  2276. }
  2277. #u50950 .text {
  2278. position:absolute;
  2279. align-self:center;
  2280. padding:2px 2px 2px 0px;
  2281. box-sizing:border-box;
  2282. width:100%;
  2283. }
  2284. #u50950_text {
  2285. border-width:0px;
  2286. word-wrap:break-word;
  2287. text-transform:none;
  2288. visibility:hidden;
  2289. }
  2290. #u50951_img {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:82px;
  2296. height:38px;
  2297. }
  2298. #u50951 {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:82px;
  2302. top:39px;
  2303. width:82px;
  2304. height:38px;
  2305. display:flex;
  2306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:12px;
  2310. }
  2311. #u50951 .text {
  2312. position:absolute;
  2313. align-self:center;
  2314. padding:2px 2px 2px 0px;
  2315. box-sizing:border-box;
  2316. width:100%;
  2317. }
  2318. #u50951_text {
  2319. border-width:0px;
  2320. word-wrap:break-word;
  2321. text-transform:none;
  2322. visibility:hidden;
  2323. }
  2324. #u50952_img {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:0px;
  2328. top:0px;
  2329. width:82px;
  2330. height:38px;
  2331. }
  2332. #u50952 {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:164px;
  2336. top:39px;
  2337. width:82px;
  2338. height:38px;
  2339. display:flex;
  2340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2341. font-weight:400;
  2342. font-style:normal;
  2343. font-size:12px;
  2344. }
  2345. #u50952 .text {
  2346. position:absolute;
  2347. align-self:center;
  2348. padding:2px 2px 2px 0px;
  2349. box-sizing:border-box;
  2350. width:100%;
  2351. }
  2352. #u50952_text {
  2353. border-width:0px;
  2354. word-wrap:break-word;
  2355. text-transform:none;
  2356. visibility:hidden;
  2357. }
  2358. #u50953_img {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:82px;
  2364. height:38px;
  2365. }
  2366. #u50953 {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:246px;
  2370. top:39px;
  2371. width:82px;
  2372. height:38px;
  2373. display:flex;
  2374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2375. font-weight:400;
  2376. font-style:normal;
  2377. font-size:12px;
  2378. }
  2379. #u50953 .text {
  2380. position:absolute;
  2381. align-self:center;
  2382. padding:2px 2px 2px 0px;
  2383. box-sizing:border-box;
  2384. width:100%;
  2385. }
  2386. #u50953_text {
  2387. border-width:0px;
  2388. word-wrap:break-word;
  2389. text-transform:none;
  2390. visibility:hidden;
  2391. }
  2392. #u50954_img {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:82px;
  2398. height:38px;
  2399. }
  2400. #u50954 {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:328px;
  2404. top:39px;
  2405. width:82px;
  2406. height:38px;
  2407. display:flex;
  2408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2409. font-weight:400;
  2410. font-style:normal;
  2411. font-size:12px;
  2412. }
  2413. #u50954 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:2px 2px 2px 0px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u50954_text {
  2421. border-width:0px;
  2422. word-wrap:break-word;
  2423. text-transform:none;
  2424. }
  2425. #u50955_img {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:89px;
  2431. height:38px;
  2432. }
  2433. #u50955 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:410px;
  2437. top:39px;
  2438. width:89px;
  2439. height:38px;
  2440. display:flex;
  2441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2442. font-weight:400;
  2443. font-style:normal;
  2444. font-size:12px;
  2445. }
  2446. #u50955 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 2px 2px 0px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u50955_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. visibility:hidden;
  2458. }
  2459. #u50956_img {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:82px;
  2465. height:38px;
  2466. }
  2467. #u50956 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:499px;
  2471. top:39px;
  2472. width:82px;
  2473. height:38px;
  2474. display:flex;
  2475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2476. font-weight:400;
  2477. font-style:normal;
  2478. font-size:12px;
  2479. }
  2480. #u50956 .text {
  2481. position:absolute;
  2482. align-self:center;
  2483. padding:2px 2px 2px 0px;
  2484. box-sizing:border-box;
  2485. width:100%;
  2486. }
  2487. #u50956_text {
  2488. border-width:0px;
  2489. word-wrap:break-word;
  2490. text-transform:none;
  2491. visibility:hidden;
  2492. }
  2493. #u50957_img {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:82px;
  2499. height:38px;
  2500. }
  2501. #u50957 {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:581px;
  2505. top:39px;
  2506. width:82px;
  2507. height:38px;
  2508. display:flex;
  2509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2510. font-weight:400;
  2511. font-style:normal;
  2512. font-size:12px;
  2513. }
  2514. #u50957 .text {
  2515. position:absolute;
  2516. align-self:center;
  2517. padding:2px 2px 2px 0px;
  2518. box-sizing:border-box;
  2519. width:100%;
  2520. }
  2521. #u50957_text {
  2522. border-width:0px;
  2523. word-wrap:break-word;
  2524. text-transform:none;
  2525. visibility:hidden;
  2526. }
  2527. #u50958_img {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:88px;
  2533. height:38px;
  2534. }
  2535. #u50958 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:663px;
  2539. top:39px;
  2540. width:88px;
  2541. height:38px;
  2542. display:flex;
  2543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2544. font-weight:400;
  2545. font-style:normal;
  2546. font-size:12px;
  2547. }
  2548. #u50958 .text {
  2549. position:absolute;
  2550. align-self:center;
  2551. padding:2px 2px 2px 0px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u50958_text {
  2556. border-width:0px;
  2557. word-wrap:break-word;
  2558. text-transform:none;
  2559. visibility:hidden;
  2560. }
  2561. #u50959_img {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:82px;
  2567. height:38px;
  2568. }
  2569. #u50959 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:751px;
  2573. top:39px;
  2574. width:82px;
  2575. height:38px;
  2576. display:flex;
  2577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2578. font-weight:400;
  2579. font-style:normal;
  2580. font-size:12px;
  2581. }
  2582. #u50959 .text {
  2583. position:absolute;
  2584. align-self:center;
  2585. padding:2px 2px 2px 0px;
  2586. box-sizing:border-box;
  2587. width:100%;
  2588. }
  2589. #u50959_text {
  2590. border-width:0px;
  2591. word-wrap:break-word;
  2592. text-transform:none;
  2593. visibility:hidden;
  2594. }
  2595. #u50960_img {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:0px;
  2599. top:0px;
  2600. width:82px;
  2601. height:38px;
  2602. }
  2603. #u50960 {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:833px;
  2607. top:39px;
  2608. width:82px;
  2609. height:38px;
  2610. display:flex;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:12px;
  2615. }
  2616. #u50960 .text {
  2617. position:absolute;
  2618. align-self:center;
  2619. padding:2px 2px 2px 0px;
  2620. box-sizing:border-box;
  2621. width:100%;
  2622. }
  2623. #u50960_text {
  2624. border-width:0px;
  2625. word-wrap:break-word;
  2626. text-transform:none;
  2627. visibility:hidden;
  2628. }
  2629. #u50961_img {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:89px;
  2635. height:38px;
  2636. }
  2637. #u50961 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:915px;
  2641. top:39px;
  2642. width:89px;
  2643. height:38px;
  2644. display:flex;
  2645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2646. font-weight:400;
  2647. font-style:normal;
  2648. font-size:12px;
  2649. color:#1890FF;
  2650. }
  2651. #u50961 .text {
  2652. position:absolute;
  2653. align-self:center;
  2654. padding:2px 2px 2px 0px;
  2655. box-sizing:border-box;
  2656. width:100%;
  2657. }
  2658. #u50961_text {
  2659. border-width:0px;
  2660. word-wrap:break-word;
  2661. text-transform:none;
  2662. }
  2663. #u50962_img {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:88px;
  2669. height:38px;
  2670. }
  2671. #u50962 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:1004px;
  2675. top:39px;
  2676. width:88px;
  2677. height:38px;
  2678. display:flex;
  2679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2680. font-weight:400;
  2681. font-style:normal;
  2682. font-size:12px;
  2683. color:#D9001B;
  2684. }
  2685. #u50962 .text {
  2686. position:absolute;
  2687. align-self:center;
  2688. padding:2px 2px 2px 0px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u50962_text {
  2693. border-width:0px;
  2694. word-wrap:break-word;
  2695. text-transform:none;
  2696. }
  2697. #u50963_img {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:100px;
  2703. height:38px;
  2704. }
  2705. #u50963 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:1092px;
  2709. top:39px;
  2710. width:100px;
  2711. height:38px;
  2712. display:flex;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:12px;
  2717. color:#1890FF;
  2718. }
  2719. #u50963 .text {
  2720. position:absolute;
  2721. align-self:center;
  2722. padding:2px 2px 2px 0px;
  2723. box-sizing:border-box;
  2724. width:100%;
  2725. }
  2726. #u50963_text {
  2727. border-width:0px;
  2728. word-wrap:break-word;
  2729. text-transform:none;
  2730. }
  2731. #u50964_img {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:82px;
  2737. height:38px;
  2738. }
  2739. #u50964 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:77px;
  2744. width:82px;
  2745. height:38px;
  2746. display:flex;
  2747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2748. font-weight:400;
  2749. font-style:normal;
  2750. font-size:12px;
  2751. }
  2752. #u50964 .text {
  2753. position:absolute;
  2754. align-self:center;
  2755. padding:2px 2px 2px 0px;
  2756. box-sizing:border-box;
  2757. width:100%;
  2758. }
  2759. #u50964_text {
  2760. border-width:0px;
  2761. word-wrap:break-word;
  2762. text-transform:none;
  2763. visibility:hidden;
  2764. }
  2765. #u50965_img {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:82px;
  2771. height:38px;
  2772. }
  2773. #u50965 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:82px;
  2777. top:77px;
  2778. width:82px;
  2779. height:38px;
  2780. display:flex;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:12px;
  2785. }
  2786. #u50965 .text {
  2787. position:absolute;
  2788. align-self:center;
  2789. padding:2px 2px 2px 0px;
  2790. box-sizing:border-box;
  2791. width:100%;
  2792. }
  2793. #u50965_text {
  2794. border-width:0px;
  2795. word-wrap:break-word;
  2796. text-transform:none;
  2797. visibility:hidden;
  2798. }
  2799. #u50966_img {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:82px;
  2805. height:38px;
  2806. }
  2807. #u50966 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:164px;
  2811. top:77px;
  2812. width:82px;
  2813. height:38px;
  2814. display:flex;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:12px;
  2819. }
  2820. #u50966 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 0px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u50966_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. visibility:hidden;
  2832. }
  2833. #u50967_img {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:82px;
  2839. height:38px;
  2840. }
  2841. #u50967 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:246px;
  2845. top:77px;
  2846. width:82px;
  2847. height:38px;
  2848. display:flex;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:12px;
  2853. }
  2854. #u50967 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:2px 2px 2px 0px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u50967_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. visibility:hidden;
  2866. }
  2867. #u50968_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:82px;
  2873. height:38px;
  2874. }
  2875. #u50968 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:328px;
  2879. top:77px;
  2880. width:82px;
  2881. height:38px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:12px;
  2887. }
  2888. #u50968 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:2px 2px 2px 0px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u50968_text {
  2896. border-width:0px;
  2897. word-wrap:break-word;
  2898. text-transform:none;
  2899. }
  2900. #u50969_img {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:89px;
  2906. height:38px;
  2907. }
  2908. #u50969 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:410px;
  2912. top:77px;
  2913. width:89px;
  2914. height:38px;
  2915. display:flex;
  2916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2917. font-weight:400;
  2918. font-style:normal;
  2919. font-size:12px;
  2920. }
  2921. #u50969 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:2px 2px 2px 0px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u50969_text {
  2929. border-width:0px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. visibility:hidden;
  2933. }
  2934. #u50970_img {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:0px;
  2938. top:0px;
  2939. width:82px;
  2940. height:38px;
  2941. }
  2942. #u50970 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:499px;
  2946. top:77px;
  2947. width:82px;
  2948. height:38px;
  2949. display:flex;
  2950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2951. font-weight:400;
  2952. font-style:normal;
  2953. font-size:12px;
  2954. }
  2955. #u50970 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 0px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u50970_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. visibility:hidden;
  2967. }
  2968. #u50971_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:82px;
  2974. height:38px;
  2975. }
  2976. #u50971 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:581px;
  2980. top:77px;
  2981. width:82px;
  2982. height:38px;
  2983. display:flex;
  2984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:12px;
  2988. }
  2989. #u50971 .text {
  2990. position:absolute;
  2991. align-self:center;
  2992. padding:2px 2px 2px 0px;
  2993. box-sizing:border-box;
  2994. width:100%;
  2995. }
  2996. #u50971_text {
  2997. border-width:0px;
  2998. word-wrap:break-word;
  2999. text-transform:none;
  3000. visibility:hidden;
  3001. }
  3002. #u50972_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:88px;
  3008. height:38px;
  3009. }
  3010. #u50972 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:663px;
  3014. top:77px;
  3015. width:88px;
  3016. height:38px;
  3017. display:flex;
  3018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3019. font-weight:400;
  3020. font-style:normal;
  3021. font-size:12px;
  3022. }
  3023. #u50972 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 0px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u50972_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. visibility:hidden;
  3035. }
  3036. #u50973_img {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:82px;
  3042. height:38px;
  3043. }
  3044. #u50973 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:751px;
  3048. top:77px;
  3049. width:82px;
  3050. height:38px;
  3051. display:flex;
  3052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3053. font-weight:400;
  3054. font-style:normal;
  3055. font-size:12px;
  3056. }
  3057. #u50973 .text {
  3058. position:absolute;
  3059. align-self:center;
  3060. padding:2px 2px 2px 0px;
  3061. box-sizing:border-box;
  3062. width:100%;
  3063. }
  3064. #u50973_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. visibility:hidden;
  3069. }
  3070. #u50974_img {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:82px;
  3076. height:38px;
  3077. }
  3078. #u50974 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:833px;
  3082. top:77px;
  3083. width:82px;
  3084. height:38px;
  3085. display:flex;
  3086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:12px;
  3090. }
  3091. #u50974 .text {
  3092. position:absolute;
  3093. align-self:center;
  3094. padding:2px 2px 2px 0px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u50974_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. visibility:hidden;
  3103. }
  3104. #u50975_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:89px;
  3110. height:38px;
  3111. }
  3112. #u50975 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:915px;
  3116. top:77px;
  3117. width:89px;
  3118. height:38px;
  3119. display:flex;
  3120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:12px;
  3124. color:#1890FF;
  3125. }
  3126. #u50975 .text {
  3127. position:absolute;
  3128. align-self:center;
  3129. padding:2px 2px 2px 0px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u50975_text {
  3134. border-width:0px;
  3135. word-wrap:break-word;
  3136. text-transform:none;
  3137. }
  3138. #u50976_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:88px;
  3144. height:38px;
  3145. }
  3146. #u50976 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:1004px;
  3150. top:77px;
  3151. width:88px;
  3152. height:38px;
  3153. display:flex;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:12px;
  3158. color:#333333;
  3159. }
  3160. #u50976 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 2px 2px 0px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u50976_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. }
  3172. #u50977_img {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:100px;
  3178. height:38px;
  3179. }
  3180. #u50977 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:1092px;
  3184. top:77px;
  3185. width:100px;
  3186. height:38px;
  3187. display:flex;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:12px;
  3192. color:#1890FF;
  3193. }
  3194. #u50977 .text {
  3195. position:absolute;
  3196. align-self:center;
  3197. padding:2px 2px 2px 0px;
  3198. box-sizing:border-box;
  3199. width:100%;
  3200. }
  3201. #u50977_text {
  3202. border-width:0px;
  3203. word-wrap:break-word;
  3204. text-transform:none;
  3205. }
  3206. #u50978_img {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:82px;
  3212. height:38px;
  3213. }
  3214. #u50978 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:115px;
  3219. width:82px;
  3220. height:38px;
  3221. display:flex;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:12px;
  3226. }
  3227. #u50978 .text {
  3228. position:absolute;
  3229. align-self:center;
  3230. padding:2px 2px 2px 0px;
  3231. box-sizing:border-box;
  3232. width:100%;
  3233. }
  3234. #u50978_text {
  3235. border-width:0px;
  3236. word-wrap:break-word;
  3237. text-transform:none;
  3238. visibility:hidden;
  3239. }
  3240. #u50979_img {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:82px;
  3246. height:38px;
  3247. }
  3248. #u50979 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:82px;
  3252. top:115px;
  3253. width:82px;
  3254. height:38px;
  3255. display:flex;
  3256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:12px;
  3260. }
  3261. #u50979 .text {
  3262. position:absolute;
  3263. align-self:center;
  3264. padding:2px 2px 2px 0px;
  3265. box-sizing:border-box;
  3266. width:100%;
  3267. }
  3268. #u50979_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. visibility:hidden;
  3273. }
  3274. #u50980_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:82px;
  3280. height:38px;
  3281. }
  3282. #u50980 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:164px;
  3286. top:115px;
  3287. width:82px;
  3288. height:38px;
  3289. display:flex;
  3290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3291. font-weight:400;
  3292. font-style:normal;
  3293. font-size:12px;
  3294. }
  3295. #u50980 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 0px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u50980_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. visibility:hidden;
  3307. }
  3308. #u50981_img {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:0px;
  3313. width:82px;
  3314. height:38px;
  3315. }
  3316. #u50981 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:246px;
  3320. top:115px;
  3321. width:82px;
  3322. height:38px;
  3323. display:flex;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:12px;
  3328. }
  3329. #u50981 .text {
  3330. position:absolute;
  3331. align-self:center;
  3332. padding:2px 2px 2px 0px;
  3333. box-sizing:border-box;
  3334. width:100%;
  3335. }
  3336. #u50981_text {
  3337. border-width:0px;
  3338. word-wrap:break-word;
  3339. text-transform:none;
  3340. visibility:hidden;
  3341. }
  3342. #u50982_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:82px;
  3348. height:38px;
  3349. }
  3350. #u50982 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:328px;
  3354. top:115px;
  3355. width:82px;
  3356. height:38px;
  3357. display:flex;
  3358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:12px;
  3362. }
  3363. #u50982 .text {
  3364. position:absolute;
  3365. align-self:center;
  3366. padding:2px 2px 2px 0px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u50982_text {
  3371. border-width:0px;
  3372. word-wrap:break-word;
  3373. text-transform:none;
  3374. }
  3375. #u50983_img {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:89px;
  3381. height:38px;
  3382. }
  3383. #u50983 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:410px;
  3387. top:115px;
  3388. width:89px;
  3389. height:38px;
  3390. display:flex;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:12px;
  3395. }
  3396. #u50983 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 0px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u50983_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. visibility:hidden;
  3408. }
  3409. #u50984_img {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:82px;
  3415. height:38px;
  3416. }
  3417. #u50984 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:499px;
  3421. top:115px;
  3422. width:82px;
  3423. height:38px;
  3424. display:flex;
  3425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:12px;
  3429. }
  3430. #u50984 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 0px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u50984_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. visibility:hidden;
  3442. }
  3443. #u50985_img {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:82px;
  3449. height:38px;
  3450. }
  3451. #u50985 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:581px;
  3455. top:115px;
  3456. width:82px;
  3457. height:38px;
  3458. display:flex;
  3459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:12px;
  3463. }
  3464. #u50985 .text {
  3465. position:absolute;
  3466. align-self:center;
  3467. padding:2px 2px 2px 0px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u50985_text {
  3472. border-width:0px;
  3473. word-wrap:break-word;
  3474. text-transform:none;
  3475. visibility:hidden;
  3476. }
  3477. #u50986_img {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:88px;
  3483. height:38px;
  3484. }
  3485. #u50986 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:663px;
  3489. top:115px;
  3490. width:88px;
  3491. height:38px;
  3492. display:flex;
  3493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3494. font-weight:400;
  3495. font-style:normal;
  3496. font-size:12px;
  3497. }
  3498. #u50986 .text {
  3499. position:absolute;
  3500. align-self:center;
  3501. padding:2px 2px 2px 0px;
  3502. box-sizing:border-box;
  3503. width:100%;
  3504. }
  3505. #u50986_text {
  3506. border-width:0px;
  3507. word-wrap:break-word;
  3508. text-transform:none;
  3509. visibility:hidden;
  3510. }
  3511. #u50987_img {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:82px;
  3517. height:38px;
  3518. }
  3519. #u50987 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:751px;
  3523. top:115px;
  3524. width:82px;
  3525. height:38px;
  3526. display:flex;
  3527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3528. font-weight:400;
  3529. font-style:normal;
  3530. font-size:12px;
  3531. }
  3532. #u50987 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 2px 2px 0px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u50987_text {
  3540. border-width:0px;
  3541. word-wrap:break-word;
  3542. text-transform:none;
  3543. visibility:hidden;
  3544. }
  3545. #u50988_img {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:82px;
  3551. height:38px;
  3552. }
  3553. #u50988 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:833px;
  3557. top:115px;
  3558. width:82px;
  3559. height:38px;
  3560. display:flex;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:12px;
  3565. }
  3566. #u50988 .text {
  3567. position:absolute;
  3568. align-self:center;
  3569. padding:2px 2px 2px 0px;
  3570. box-sizing:border-box;
  3571. width:100%;
  3572. }
  3573. #u50988_text {
  3574. border-width:0px;
  3575. word-wrap:break-word;
  3576. text-transform:none;
  3577. visibility:hidden;
  3578. }
  3579. #u50989_img {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:89px;
  3585. height:38px;
  3586. }
  3587. #u50989 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:915px;
  3591. top:115px;
  3592. width:89px;
  3593. height:38px;
  3594. display:flex;
  3595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3596. font-weight:400;
  3597. font-style:normal;
  3598. font-size:12px;
  3599. color:#1890FF;
  3600. }
  3601. #u50989 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:2px 2px 2px 0px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u50989_text {
  3609. border-width:0px;
  3610. word-wrap:break-word;
  3611. text-transform:none;
  3612. }
  3613. #u50990_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:88px;
  3619. height:38px;
  3620. }
  3621. #u50990 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:1004px;
  3625. top:115px;
  3626. width:88px;
  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:#1890FF;
  3634. }
  3635. #u50990 .text {
  3636. position:absolute;
  3637. align-self:center;
  3638. padding:2px 2px 2px 0px;
  3639. box-sizing:border-box;
  3640. width:100%;
  3641. }
  3642. #u50990_text {
  3643. border-width:0px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. visibility:hidden;
  3647. }
  3648. #u50991_img {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:100px;
  3654. height:38px;
  3655. }
  3656. #u50991 {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:1092px;
  3660. top:115px;
  3661. width:100px;
  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:#1890FF;
  3669. }
  3670. #u50991 .text {
  3671. position:absolute;
  3672. align-self:center;
  3673. padding:2px 2px 2px 0px;
  3674. box-sizing:border-box;
  3675. width:100%;
  3676. }
  3677. #u50991_text {
  3678. border-width:0px;
  3679. word-wrap:break-word;
  3680. text-transform:none;
  3681. }
  3682. #u50992_img {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:0px;
  3686. top:0px;
  3687. width:82px;
  3688. height:38px;
  3689. }
  3690. #u50992 {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:153px;
  3695. width:82px;
  3696. height:38px;
  3697. display:flex;
  3698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3699. font-weight:400;
  3700. font-style:normal;
  3701. font-size:12px;
  3702. }
  3703. #u50992 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 2px 2px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u50992_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. visibility:hidden;
  3715. }
  3716. #u50993_img {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:82px;
  3722. height:38px;
  3723. }
  3724. #u50993 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:82px;
  3728. top:153px;
  3729. width:82px;
  3730. height:38px;
  3731. display:flex;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:12px;
  3736. }
  3737. #u50993 .text {
  3738. position:absolute;
  3739. align-self:center;
  3740. padding:2px 2px 2px 0px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u50993_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. visibility:hidden;
  3749. }
  3750. #u50994_img {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:82px;
  3756. height:38px;
  3757. }
  3758. #u50994 {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:164px;
  3762. top:153px;
  3763. width:82px;
  3764. height:38px;
  3765. display:flex;
  3766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3767. font-weight:400;
  3768. font-style:normal;
  3769. font-size:12px;
  3770. }
  3771. #u50994 .text {
  3772. position:absolute;
  3773. align-self:center;
  3774. padding:2px 2px 2px 0px;
  3775. box-sizing:border-box;
  3776. width:100%;
  3777. }
  3778. #u50994_text {
  3779. border-width:0px;
  3780. word-wrap:break-word;
  3781. text-transform:none;
  3782. visibility:hidden;
  3783. }
  3784. #u50995_img {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:0px;
  3788. top:0px;
  3789. width:82px;
  3790. height:38px;
  3791. }
  3792. #u50995 {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:246px;
  3796. top:153px;
  3797. width:82px;
  3798. height:38px;
  3799. display:flex;
  3800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. font-size:12px;
  3804. }
  3805. #u50995 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 0px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u50995_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u50996_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:82px;
  3824. height:38px;
  3825. }
  3826. #u50996 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:328px;
  3830. top:153px;
  3831. width:82px;
  3832. height:38px;
  3833. display:flex;
  3834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:12px;
  3838. }
  3839. #u50996 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 0px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u50996_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u50997_img {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:89px;
  3858. height:38px;
  3859. }
  3860. #u50997 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:410px;
  3864. top:153px;
  3865. width:89px;
  3866. height:38px;
  3867. display:flex;
  3868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. font-size:12px;
  3872. }
  3873. #u50997 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 0px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u50997_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u50998_img {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:82px;
  3892. height:38px;
  3893. }
  3894. #u50998 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:499px;
  3898. top:153px;
  3899. width:82px;
  3900. height:38px;
  3901. display:flex;
  3902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3903. font-weight:400;
  3904. font-style:normal;
  3905. font-size:12px;
  3906. }
  3907. #u50998 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:2px 2px 2px 0px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u50998_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. visibility:hidden;
  3919. }
  3920. #u50999_img {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:0px;
  3925. width:82px;
  3926. height:38px;
  3927. }
  3928. #u50999 {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:581px;
  3932. top:153px;
  3933. width:82px;
  3934. height:38px;
  3935. display:flex;
  3936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3937. font-weight:400;
  3938. font-style:normal;
  3939. font-size:12px;
  3940. }
  3941. #u50999 .text {
  3942. position:absolute;
  3943. align-self:center;
  3944. padding:2px 2px 2px 0px;
  3945. box-sizing:border-box;
  3946. width:100%;
  3947. }
  3948. #u50999_text {
  3949. border-width:0px;
  3950. word-wrap:break-word;
  3951. text-transform:none;
  3952. visibility:hidden;
  3953. }
  3954. #u51000_img {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:88px;
  3960. height:38px;
  3961. }
  3962. #u51000 {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:663px;
  3966. top:153px;
  3967. width:88px;
  3968. height:38px;
  3969. display:flex;
  3970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3971. font-weight:400;
  3972. font-style:normal;
  3973. font-size:12px;
  3974. }
  3975. #u51000 .text {
  3976. position:absolute;
  3977. align-self:center;
  3978. padding:2px 2px 2px 0px;
  3979. box-sizing:border-box;
  3980. width:100%;
  3981. }
  3982. #u51000_text {
  3983. border-width:0px;
  3984. word-wrap:break-word;
  3985. text-transform:none;
  3986. visibility:hidden;
  3987. }
  3988. #u51001_img {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:0px;
  3992. top:0px;
  3993. width:82px;
  3994. height:38px;
  3995. }
  3996. #u51001 {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:751px;
  4000. top:153px;
  4001. width:82px;
  4002. height:38px;
  4003. display:flex;
  4004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4005. font-weight:400;
  4006. font-style:normal;
  4007. font-size:12px;
  4008. }
  4009. #u51001 .text {
  4010. position:absolute;
  4011. align-self:center;
  4012. padding:2px 2px 2px 0px;
  4013. box-sizing:border-box;
  4014. width:100%;
  4015. }
  4016. #u51001_text {
  4017. border-width:0px;
  4018. word-wrap:break-word;
  4019. text-transform:none;
  4020. visibility:hidden;
  4021. }
  4022. #u51002_img {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:0px;
  4026. top:0px;
  4027. width:82px;
  4028. height:38px;
  4029. }
  4030. #u51002 {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:833px;
  4034. top:153px;
  4035. width:82px;
  4036. height:38px;
  4037. display:flex;
  4038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4039. font-weight:400;
  4040. font-style:normal;
  4041. font-size:12px;
  4042. }
  4043. #u51002 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:2px 2px 2px 0px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u51002_text {
  4051. border-width:0px;
  4052. word-wrap:break-word;
  4053. text-transform:none;
  4054. visibility:hidden;
  4055. }
  4056. #u51003_img {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:0px;
  4060. top:0px;
  4061. width:89px;
  4062. height:38px;
  4063. }
  4064. #u51003 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:915px;
  4068. top:153px;
  4069. width:89px;
  4070. height:38px;
  4071. display:flex;
  4072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4073. font-weight:400;
  4074. font-style:normal;
  4075. font-size:12px;
  4076. }
  4077. #u51003 .text {
  4078. position:absolute;
  4079. align-self:center;
  4080. padding:2px 2px 2px 0px;
  4081. box-sizing:border-box;
  4082. width:100%;
  4083. }
  4084. #u51003_text {
  4085. border-width:0px;
  4086. word-wrap:break-word;
  4087. text-transform:none;
  4088. visibility:hidden;
  4089. }
  4090. #u51004_img {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:88px;
  4096. height:38px;
  4097. }
  4098. #u51004 {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:1004px;
  4102. top:153px;
  4103. width:88px;
  4104. height:38px;
  4105. display:flex;
  4106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4107. font-weight:400;
  4108. font-style:normal;
  4109. font-size:12px;
  4110. }
  4111. #u51004 .text {
  4112. position:absolute;
  4113. align-self:center;
  4114. padding:2px 2px 2px 0px;
  4115. box-sizing:border-box;
  4116. width:100%;
  4117. }
  4118. #u51004_text {
  4119. border-width:0px;
  4120. word-wrap:break-word;
  4121. text-transform:none;
  4122. visibility:hidden;
  4123. }
  4124. #u51005_img {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:0px;
  4128. top:0px;
  4129. width:100px;
  4130. height:38px;
  4131. }
  4132. #u51005 {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:1092px;
  4136. top:153px;
  4137. width:100px;
  4138. height:38px;
  4139. display:flex;
  4140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4141. font-weight:400;
  4142. font-style:normal;
  4143. font-size:12px;
  4144. color:#1890FF;
  4145. }
  4146. #u51005 .text {
  4147. position:absolute;
  4148. align-self:center;
  4149. padding:2px 2px 2px 0px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u51005_text {
  4154. border-width:0px;
  4155. word-wrap:break-word;
  4156. text-transform:none;
  4157. visibility:hidden;
  4158. }
  4159. #u51006_img {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:82px;
  4165. height:35px;
  4166. }
  4167. #u51006 {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:191px;
  4172. width:82px;
  4173. height:35px;
  4174. display:flex;
  4175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4176. font-weight:400;
  4177. font-style:normal;
  4178. font-size:12px;
  4179. color:#606266;
  4180. }
  4181. #u51006 .text {
  4182. position:absolute;
  4183. align-self:center;
  4184. padding:2px 2px 2px 0px;
  4185. box-sizing:border-box;
  4186. width:100%;
  4187. }
  4188. #u51006_text {
  4189. border-width:0px;
  4190. word-wrap:break-word;
  4191. text-transform:none;
  4192. visibility:hidden;
  4193. }
  4194. #u51007_img {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:82px;
  4200. height:35px;
  4201. }
  4202. #u51007 {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:82px;
  4206. top:191px;
  4207. width:82px;
  4208. height:35px;
  4209. display:flex;
  4210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4211. font-weight:400;
  4212. font-style:normal;
  4213. font-size:12px;
  4214. color:#606266;
  4215. }
  4216. #u51007 .text {
  4217. position:absolute;
  4218. align-self:center;
  4219. padding:2px 2px 2px 0px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u51007_text {
  4224. border-width:0px;
  4225. word-wrap:break-word;
  4226. text-transform:none;
  4227. visibility:hidden;
  4228. }
  4229. #u51008_img {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:82px;
  4235. height:35px;
  4236. }
  4237. #u51008 {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:164px;
  4241. top:191px;
  4242. width:82px;
  4243. height:35px;
  4244. display:flex;
  4245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4246. font-weight:400;
  4247. font-style:normal;
  4248. font-size:12px;
  4249. color:#606266;
  4250. }
  4251. #u51008 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:2px 2px 2px 0px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u51008_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. visibility:hidden;
  4263. }
  4264. #u51009_img {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:82px;
  4270. height:35px;
  4271. }
  4272. #u51009 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:246px;
  4276. top:191px;
  4277. width:82px;
  4278. height:35px;
  4279. display:flex;
  4280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4281. font-weight:400;
  4282. font-style:normal;
  4283. font-size:12px;
  4284. color:#606266;
  4285. }
  4286. #u51009 .text {
  4287. position:absolute;
  4288. align-self:center;
  4289. padding:2px 2px 2px 0px;
  4290. box-sizing:border-box;
  4291. width:100%;
  4292. }
  4293. #u51009_text {
  4294. border-width:0px;
  4295. word-wrap:break-word;
  4296. text-transform:none;
  4297. visibility:hidden;
  4298. }
  4299. #u51010_img {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:82px;
  4305. height:35px;
  4306. }
  4307. #u51010 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:328px;
  4311. top:191px;
  4312. width:82px;
  4313. height:35px;
  4314. display:flex;
  4315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4316. font-weight:400;
  4317. font-style:normal;
  4318. font-size:12px;
  4319. color:#606266;
  4320. }
  4321. #u51010 .text {
  4322. position:absolute;
  4323. align-self:center;
  4324. padding:2px 2px 2px 0px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u51010_text {
  4329. border-width:0px;
  4330. word-wrap:break-word;
  4331. text-transform:none;
  4332. visibility:hidden;
  4333. }
  4334. #u51011_img {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:0px;
  4338. top:0px;
  4339. width:89px;
  4340. height:35px;
  4341. }
  4342. #u51011 {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:410px;
  4346. top:191px;
  4347. width:89px;
  4348. height:35px;
  4349. display:flex;
  4350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4351. font-weight:400;
  4352. font-style:normal;
  4353. font-size:12px;
  4354. color:#606266;
  4355. }
  4356. #u51011 .text {
  4357. position:absolute;
  4358. align-self:center;
  4359. padding:2px 2px 2px 0px;
  4360. box-sizing:border-box;
  4361. width:100%;
  4362. }
  4363. #u51011_text {
  4364. border-width:0px;
  4365. word-wrap:break-word;
  4366. text-transform:none;
  4367. visibility:hidden;
  4368. }
  4369. #u51012_img {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:82px;
  4375. height:35px;
  4376. }
  4377. #u51012 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:499px;
  4381. top:191px;
  4382. width:82px;
  4383. height:35px;
  4384. display:flex;
  4385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4386. font-weight:400;
  4387. font-style:normal;
  4388. font-size:12px;
  4389. color:#606266;
  4390. }
  4391. #u51012 .text {
  4392. position:absolute;
  4393. align-self:center;
  4394. padding:2px 2px 2px 0px;
  4395. box-sizing:border-box;
  4396. width:100%;
  4397. }
  4398. #u51012_text {
  4399. border-width:0px;
  4400. word-wrap:break-word;
  4401. text-transform:none;
  4402. visibility:hidden;
  4403. }
  4404. #u51013_img {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:82px;
  4410. height:35px;
  4411. }
  4412. #u51013 {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:581px;
  4416. top:191px;
  4417. width:82px;
  4418. height:35px;
  4419. display:flex;
  4420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4421. font-weight:400;
  4422. font-style:normal;
  4423. font-size:12px;
  4424. color:#606266;
  4425. }
  4426. #u51013 .text {
  4427. position:absolute;
  4428. align-self:center;
  4429. padding:2px 2px 2px 0px;
  4430. box-sizing:border-box;
  4431. width:100%;
  4432. }
  4433. #u51013_text {
  4434. border-width:0px;
  4435. word-wrap:break-word;
  4436. text-transform:none;
  4437. visibility:hidden;
  4438. }
  4439. #u51014_img {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:0px;
  4443. top:0px;
  4444. width:88px;
  4445. height:35px;
  4446. }
  4447. #u51014 {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:663px;
  4451. top:191px;
  4452. width:88px;
  4453. height:35px;
  4454. display:flex;
  4455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:12px;
  4459. color:#606266;
  4460. }
  4461. #u51014 .text {
  4462. position:absolute;
  4463. align-self:center;
  4464. padding:2px 2px 2px 0px;
  4465. box-sizing:border-box;
  4466. width:100%;
  4467. }
  4468. #u51014_text {
  4469. border-width:0px;
  4470. word-wrap:break-word;
  4471. text-transform:none;
  4472. visibility:hidden;
  4473. }
  4474. #u51015_img {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:82px;
  4480. height:35px;
  4481. }
  4482. #u51015 {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:751px;
  4486. top:191px;
  4487. width:82px;
  4488. height:35px;
  4489. display:flex;
  4490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4491. font-weight:400;
  4492. font-style:normal;
  4493. font-size:12px;
  4494. color:#606266;
  4495. }
  4496. #u51015 .text {
  4497. position:absolute;
  4498. align-self:center;
  4499. padding:2px 2px 2px 0px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u51015_text {
  4504. border-width:0px;
  4505. word-wrap:break-word;
  4506. text-transform:none;
  4507. visibility:hidden;
  4508. }
  4509. #u51016_img {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:82px;
  4515. height:35px;
  4516. }
  4517. #u51016 {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:833px;
  4521. top:191px;
  4522. width:82px;
  4523. height:35px;
  4524. display:flex;
  4525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4526. font-weight:400;
  4527. font-style:normal;
  4528. font-size:12px;
  4529. color:#606266;
  4530. }
  4531. #u51016 .text {
  4532. position:absolute;
  4533. align-self:center;
  4534. padding:2px 2px 2px 0px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u51016_text {
  4539. border-width:0px;
  4540. word-wrap:break-word;
  4541. text-transform:none;
  4542. visibility:hidden;
  4543. }
  4544. #u51017_img {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:89px;
  4550. height:35px;
  4551. }
  4552. #u51017 {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:915px;
  4556. top:191px;
  4557. width:89px;
  4558. height:35px;
  4559. display:flex;
  4560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4561. font-weight:400;
  4562. font-style:normal;
  4563. font-size:12px;
  4564. color:#606266;
  4565. }
  4566. #u51017 .text {
  4567. position:absolute;
  4568. align-self:center;
  4569. padding:2px 2px 2px 0px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u51017_text {
  4574. border-width:0px;
  4575. word-wrap:break-word;
  4576. text-transform:none;
  4577. visibility:hidden;
  4578. }
  4579. #u51018_img {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:88px;
  4585. height:35px;
  4586. }
  4587. #u51018 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:1004px;
  4591. top:191px;
  4592. width:88px;
  4593. height:35px;
  4594. display:flex;
  4595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4596. font-weight:400;
  4597. font-style:normal;
  4598. font-size:12px;
  4599. color:#606266;
  4600. }
  4601. #u51018 .text {
  4602. position:absolute;
  4603. align-self:center;
  4604. padding:2px 2px 2px 0px;
  4605. box-sizing:border-box;
  4606. width:100%;
  4607. }
  4608. #u51018_text {
  4609. border-width:0px;
  4610. word-wrap:break-word;
  4611. text-transform:none;
  4612. visibility:hidden;
  4613. }
  4614. #u51019_img {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:100px;
  4620. height:35px;
  4621. }
  4622. #u51019 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:1092px;
  4626. top:191px;
  4627. width:100px;
  4628. height:35px;
  4629. display:flex;
  4630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:12px;
  4634. color:#02A7F0;
  4635. }
  4636. #u51019 .text {
  4637. position:absolute;
  4638. align-self:center;
  4639. padding:2px 2px 2px 0px;
  4640. box-sizing:border-box;
  4641. width:100%;
  4642. }
  4643. #u51019_text {
  4644. border-width:0px;
  4645. word-wrap:break-word;
  4646. text-transform:none;
  4647. visibility:hidden;
  4648. }
  4649. #u51020_img {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:82px;
  4655. height:35px;
  4656. }
  4657. #u51020 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:226px;
  4662. width:82px;
  4663. height:35px;
  4664. display:flex;
  4665. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4666. font-weight:400;
  4667. font-style:normal;
  4668. font-size:12px;
  4669. color:#606266;
  4670. }
  4671. #u51020 .text {
  4672. position:absolute;
  4673. align-self:center;
  4674. padding:2px 2px 2px 0px;
  4675. box-sizing:border-box;
  4676. width:100%;
  4677. }
  4678. #u51020_text {
  4679. border-width:0px;
  4680. word-wrap:break-word;
  4681. text-transform:none;
  4682. visibility:hidden;
  4683. }
  4684. #u51021_img {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:0px;
  4688. top:0px;
  4689. width:82px;
  4690. height:35px;
  4691. }
  4692. #u51021 {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:82px;
  4696. top:226px;
  4697. width:82px;
  4698. height:35px;
  4699. display:flex;
  4700. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4701. font-weight:400;
  4702. font-style:normal;
  4703. font-size:12px;
  4704. color:#606266;
  4705. }
  4706. #u51021 .text {
  4707. position:absolute;
  4708. align-self:center;
  4709. padding:2px 2px 2px 0px;
  4710. box-sizing:border-box;
  4711. width:100%;
  4712. }
  4713. #u51021_text {
  4714. border-width:0px;
  4715. word-wrap:break-word;
  4716. text-transform:none;
  4717. visibility:hidden;
  4718. }
  4719. #u51022_img {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:82px;
  4725. height:35px;
  4726. }
  4727. #u51022 {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:164px;
  4731. top:226px;
  4732. width:82px;
  4733. height:35px;
  4734. display:flex;
  4735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4736. font-weight:400;
  4737. font-style:normal;
  4738. font-size:12px;
  4739. color:#606266;
  4740. }
  4741. #u51022 .text {
  4742. position:absolute;
  4743. align-self:center;
  4744. padding:2px 2px 2px 0px;
  4745. box-sizing:border-box;
  4746. width:100%;
  4747. }
  4748. #u51022_text {
  4749. border-width:0px;
  4750. word-wrap:break-word;
  4751. text-transform:none;
  4752. visibility:hidden;
  4753. }
  4754. #u51023_img {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:82px;
  4760. height:35px;
  4761. }
  4762. #u51023 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:246px;
  4766. top:226px;
  4767. width:82px;
  4768. height:35px;
  4769. display:flex;
  4770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:12px;
  4774. color:#606266;
  4775. }
  4776. #u51023 .text {
  4777. position:absolute;
  4778. align-self:center;
  4779. padding:2px 2px 2px 0px;
  4780. box-sizing:border-box;
  4781. width:100%;
  4782. }
  4783. #u51023_text {
  4784. border-width:0px;
  4785. word-wrap:break-word;
  4786. text-transform:none;
  4787. visibility:hidden;
  4788. }
  4789. #u51024_img {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:0px;
  4793. top:0px;
  4794. width:82px;
  4795. height:35px;
  4796. }
  4797. #u51024 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:328px;
  4801. top:226px;
  4802. width:82px;
  4803. height:35px;
  4804. display:flex;
  4805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4806. font-weight:400;
  4807. font-style:normal;
  4808. font-size:12px;
  4809. color:#606266;
  4810. }
  4811. #u51024 .text {
  4812. position:absolute;
  4813. align-self:center;
  4814. padding:2px 2px 2px 0px;
  4815. box-sizing:border-box;
  4816. width:100%;
  4817. }
  4818. #u51024_text {
  4819. border-width:0px;
  4820. word-wrap:break-word;
  4821. text-transform:none;
  4822. visibility:hidden;
  4823. }
  4824. #u51025_img {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:0px;
  4829. width:89px;
  4830. height:35px;
  4831. }
  4832. #u51025 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:410px;
  4836. top:226px;
  4837. width:89px;
  4838. height:35px;
  4839. display:flex;
  4840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4841. font-weight:400;
  4842. font-style:normal;
  4843. font-size:12px;
  4844. color:#606266;
  4845. }
  4846. #u51025 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:2px 2px 2px 0px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u51025_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. visibility:hidden;
  4858. }
  4859. #u51026_img {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:82px;
  4865. height:35px;
  4866. }
  4867. #u51026 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:499px;
  4871. top:226px;
  4872. width:82px;
  4873. height:35px;
  4874. display:flex;
  4875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:12px;
  4879. color:#606266;
  4880. }
  4881. #u51026 .text {
  4882. position:absolute;
  4883. align-self:center;
  4884. padding:2px 2px 2px 0px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u51026_text {
  4889. border-width:0px;
  4890. word-wrap:break-word;
  4891. text-transform:none;
  4892. visibility:hidden;
  4893. }
  4894. #u51027_img {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:82px;
  4900. height:35px;
  4901. }
  4902. #u51027 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:581px;
  4906. top:226px;
  4907. width:82px;
  4908. height:35px;
  4909. display:flex;
  4910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4911. font-weight:400;
  4912. font-style:normal;
  4913. font-size:12px;
  4914. color:#606266;
  4915. }
  4916. #u51027 .text {
  4917. position:absolute;
  4918. align-self:center;
  4919. padding:2px 2px 2px 0px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u51027_text {
  4924. border-width:0px;
  4925. word-wrap:break-word;
  4926. text-transform:none;
  4927. visibility:hidden;
  4928. }
  4929. #u51028_img {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:88px;
  4935. height:35px;
  4936. }
  4937. #u51028 {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:663px;
  4941. top:226px;
  4942. width:88px;
  4943. height:35px;
  4944. display:flex;
  4945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4946. font-weight:400;
  4947. font-style:normal;
  4948. font-size:12px;
  4949. color:#606266;
  4950. }
  4951. #u51028 .text {
  4952. position:absolute;
  4953. align-self:center;
  4954. padding:2px 2px 2px 0px;
  4955. box-sizing:border-box;
  4956. width:100%;
  4957. }
  4958. #u51028_text {
  4959. border-width:0px;
  4960. word-wrap:break-word;
  4961. text-transform:none;
  4962. visibility:hidden;
  4963. }
  4964. #u51029_img {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:0px;
  4968. top:0px;
  4969. width:82px;
  4970. height:35px;
  4971. }
  4972. #u51029 {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:751px;
  4976. top:226px;
  4977. width:82px;
  4978. height:35px;
  4979. display:flex;
  4980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4981. font-weight:400;
  4982. font-style:normal;
  4983. font-size:12px;
  4984. color:#606266;
  4985. }
  4986. #u51029 .text {
  4987. position:absolute;
  4988. align-self:center;
  4989. padding:2px 2px 2px 0px;
  4990. box-sizing:border-box;
  4991. width:100%;
  4992. }
  4993. #u51029_text {
  4994. border-width:0px;
  4995. word-wrap:break-word;
  4996. text-transform:none;
  4997. visibility:hidden;
  4998. }
  4999. #u51030_img {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:0px;
  5003. top:0px;
  5004. width:82px;
  5005. height:35px;
  5006. }
  5007. #u51030 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:833px;
  5011. top:226px;
  5012. width:82px;
  5013. height:35px;
  5014. display:flex;
  5015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. font-size:12px;
  5019. color:#606266;
  5020. }
  5021. #u51030 .text {
  5022. position:absolute;
  5023. align-self:center;
  5024. padding:2px 2px 2px 0px;
  5025. box-sizing:border-box;
  5026. width:100%;
  5027. }
  5028. #u51030_text {
  5029. border-width:0px;
  5030. word-wrap:break-word;
  5031. text-transform:none;
  5032. visibility:hidden;
  5033. }
  5034. #u51031_img {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:0px;
  5038. top:0px;
  5039. width:89px;
  5040. height:35px;
  5041. }
  5042. #u51031 {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:915px;
  5046. top:226px;
  5047. width:89px;
  5048. height:35px;
  5049. display:flex;
  5050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5051. font-weight:400;
  5052. font-style:normal;
  5053. font-size:12px;
  5054. color:#606266;
  5055. }
  5056. #u51031 .text {
  5057. position:absolute;
  5058. align-self:center;
  5059. padding:2px 2px 2px 0px;
  5060. box-sizing:border-box;
  5061. width:100%;
  5062. }
  5063. #u51031_text {
  5064. border-width:0px;
  5065. word-wrap:break-word;
  5066. text-transform:none;
  5067. visibility:hidden;
  5068. }
  5069. #u51032_img {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:0px;
  5073. top:0px;
  5074. width:88px;
  5075. height:35px;
  5076. }
  5077. #u51032 {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:1004px;
  5081. top:226px;
  5082. width:88px;
  5083. height:35px;
  5084. display:flex;
  5085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5086. font-weight:400;
  5087. font-style:normal;
  5088. font-size:12px;
  5089. color:#606266;
  5090. }
  5091. #u51032 .text {
  5092. position:absolute;
  5093. align-self:center;
  5094. padding:2px 2px 2px 0px;
  5095. box-sizing:border-box;
  5096. width:100%;
  5097. }
  5098. #u51032_text {
  5099. border-width:0px;
  5100. word-wrap:break-word;
  5101. text-transform:none;
  5102. visibility:hidden;
  5103. }
  5104. #u51033_img {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:100px;
  5110. height:35px;
  5111. }
  5112. #u51033 {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:1092px;
  5116. top:226px;
  5117. width:100px;
  5118. height:35px;
  5119. display:flex;
  5120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. font-size:12px;
  5124. color:#02A7F0;
  5125. }
  5126. #u51033 .text {
  5127. position:absolute;
  5128. align-self:center;
  5129. padding:2px 2px 2px 0px;
  5130. box-sizing:border-box;
  5131. width:100%;
  5132. }
  5133. #u51033_text {
  5134. border-width:0px;
  5135. word-wrap:break-word;
  5136. text-transform:none;
  5137. visibility:hidden;
  5138. }
  5139. #u51034_img {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:82px;
  5145. height:35px;
  5146. }
  5147. #u51034 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:261px;
  5152. width:82px;
  5153. height:35px;
  5154. display:flex;
  5155. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5156. font-weight:400;
  5157. font-style:normal;
  5158. font-size:12px;
  5159. color:#606266;
  5160. }
  5161. #u51034 .text {
  5162. position:absolute;
  5163. align-self:center;
  5164. padding:2px 2px 2px 0px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u51034_text {
  5169. border-width:0px;
  5170. word-wrap:break-word;
  5171. text-transform:none;
  5172. visibility:hidden;
  5173. }
  5174. #u51035_img {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:82px;
  5180. height:35px;
  5181. }
  5182. #u51035 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:82px;
  5186. top:261px;
  5187. width:82px;
  5188. height:35px;
  5189. display:flex;
  5190. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:12px;
  5194. color:#606266;
  5195. }
  5196. #u51035 .text {
  5197. position:absolute;
  5198. align-self:center;
  5199. padding:2px 2px 2px 0px;
  5200. box-sizing:border-box;
  5201. width:100%;
  5202. }
  5203. #u51035_text {
  5204. border-width:0px;
  5205. word-wrap:break-word;
  5206. text-transform:none;
  5207. visibility:hidden;
  5208. }
  5209. #u51036_img {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:82px;
  5215. height:35px;
  5216. }
  5217. #u51036 {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:164px;
  5221. top:261px;
  5222. width:82px;
  5223. height:35px;
  5224. display:flex;
  5225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5226. font-weight:400;
  5227. font-style:normal;
  5228. font-size:12px;
  5229. color:#606266;
  5230. }
  5231. #u51036 .text {
  5232. position:absolute;
  5233. align-self:center;
  5234. padding:2px 2px 2px 0px;
  5235. box-sizing:border-box;
  5236. width:100%;
  5237. }
  5238. #u51036_text {
  5239. border-width:0px;
  5240. word-wrap:break-word;
  5241. text-transform:none;
  5242. visibility:hidden;
  5243. }
  5244. #u51037_img {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:82px;
  5250. height:35px;
  5251. }
  5252. #u51037 {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:246px;
  5256. top:261px;
  5257. width:82px;
  5258. height:35px;
  5259. display:flex;
  5260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5261. font-weight:400;
  5262. font-style:normal;
  5263. font-size:12px;
  5264. color:#606266;
  5265. }
  5266. #u51037 .text {
  5267. position:absolute;
  5268. align-self:center;
  5269. padding:2px 2px 2px 0px;
  5270. box-sizing:border-box;
  5271. width:100%;
  5272. }
  5273. #u51037_text {
  5274. border-width:0px;
  5275. word-wrap:break-word;
  5276. text-transform:none;
  5277. visibility:hidden;
  5278. }
  5279. #u51038_img {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:82px;
  5285. height:35px;
  5286. }
  5287. #u51038 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:328px;
  5291. top:261px;
  5292. width:82px;
  5293. height:35px;
  5294. display:flex;
  5295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5296. font-weight:400;
  5297. font-style:normal;
  5298. font-size:12px;
  5299. color:#606266;
  5300. }
  5301. #u51038 .text {
  5302. position:absolute;
  5303. align-self:center;
  5304. padding:2px 2px 2px 0px;
  5305. box-sizing:border-box;
  5306. width:100%;
  5307. }
  5308. #u51038_text {
  5309. border-width:0px;
  5310. word-wrap:break-word;
  5311. text-transform:none;
  5312. visibility:hidden;
  5313. }
  5314. #u51039_img {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:89px;
  5320. height:35px;
  5321. }
  5322. #u51039 {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:410px;
  5326. top:261px;
  5327. width:89px;
  5328. height:35px;
  5329. display:flex;
  5330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5331. font-weight:400;
  5332. font-style:normal;
  5333. font-size:12px;
  5334. color:#606266;
  5335. }
  5336. #u51039 .text {
  5337. position:absolute;
  5338. align-self:center;
  5339. padding:2px 2px 2px 0px;
  5340. box-sizing:border-box;
  5341. width:100%;
  5342. }
  5343. #u51039_text {
  5344. border-width:0px;
  5345. word-wrap:break-word;
  5346. text-transform:none;
  5347. visibility:hidden;
  5348. }
  5349. #u51040_img {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:82px;
  5355. height:35px;
  5356. }
  5357. #u51040 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:499px;
  5361. top:261px;
  5362. width:82px;
  5363. height:35px;
  5364. display:flex;
  5365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5366. font-weight:400;
  5367. font-style:normal;
  5368. font-size:12px;
  5369. color:#606266;
  5370. }
  5371. #u51040 .text {
  5372. position:absolute;
  5373. align-self:center;
  5374. padding:2px 2px 2px 0px;
  5375. box-sizing:border-box;
  5376. width:100%;
  5377. }
  5378. #u51040_text {
  5379. border-width:0px;
  5380. word-wrap:break-word;
  5381. text-transform:none;
  5382. visibility:hidden;
  5383. }
  5384. #u51041_img {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:82px;
  5390. height:35px;
  5391. }
  5392. #u51041 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:581px;
  5396. top:261px;
  5397. width:82px;
  5398. height:35px;
  5399. display:flex;
  5400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5401. font-weight:400;
  5402. font-style:normal;
  5403. font-size:12px;
  5404. color:#606266;
  5405. }
  5406. #u51041 .text {
  5407. position:absolute;
  5408. align-self:center;
  5409. padding:2px 2px 2px 0px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u51041_text {
  5414. border-width:0px;
  5415. word-wrap:break-word;
  5416. text-transform:none;
  5417. visibility:hidden;
  5418. }
  5419. #u51042_img {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:88px;
  5425. height:35px;
  5426. }
  5427. #u51042 {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:663px;
  5431. top:261px;
  5432. width:88px;
  5433. height:35px;
  5434. display:flex;
  5435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5436. font-weight:400;
  5437. font-style:normal;
  5438. font-size:12px;
  5439. color:#606266;
  5440. }
  5441. #u51042 .text {
  5442. position:absolute;
  5443. align-self:center;
  5444. padding:2px 2px 2px 0px;
  5445. box-sizing:border-box;
  5446. width:100%;
  5447. }
  5448. #u51042_text {
  5449. border-width:0px;
  5450. word-wrap:break-word;
  5451. text-transform:none;
  5452. visibility:hidden;
  5453. }
  5454. #u51043_img {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:82px;
  5460. height:35px;
  5461. }
  5462. #u51043 {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:751px;
  5466. top:261px;
  5467. width:82px;
  5468. height:35px;
  5469. display:flex;
  5470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5471. font-weight:400;
  5472. font-style:normal;
  5473. font-size:12px;
  5474. color:#606266;
  5475. }
  5476. #u51043 .text {
  5477. position:absolute;
  5478. align-self:center;
  5479. padding:2px 2px 2px 0px;
  5480. box-sizing:border-box;
  5481. width:100%;
  5482. }
  5483. #u51043_text {
  5484. border-width:0px;
  5485. word-wrap:break-word;
  5486. text-transform:none;
  5487. visibility:hidden;
  5488. }
  5489. #u51044_img {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:82px;
  5495. height:35px;
  5496. }
  5497. #u51044 {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:833px;
  5501. top:261px;
  5502. width:82px;
  5503. height:35px;
  5504. display:flex;
  5505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5506. font-weight:400;
  5507. font-style:normal;
  5508. font-size:12px;
  5509. color:#606266;
  5510. }
  5511. #u51044 .text {
  5512. position:absolute;
  5513. align-self:center;
  5514. padding:2px 2px 2px 0px;
  5515. box-sizing:border-box;
  5516. width:100%;
  5517. }
  5518. #u51044_text {
  5519. border-width:0px;
  5520. word-wrap:break-word;
  5521. text-transform:none;
  5522. visibility:hidden;
  5523. }
  5524. #u51045_img {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:0px;
  5528. top:0px;
  5529. width:89px;
  5530. height:35px;
  5531. }
  5532. #u51045 {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:915px;
  5536. top:261px;
  5537. width:89px;
  5538. height:35px;
  5539. display:flex;
  5540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5541. font-weight:400;
  5542. font-style:normal;
  5543. font-size:12px;
  5544. color:#606266;
  5545. }
  5546. #u51045 .text {
  5547. position:absolute;
  5548. align-self:center;
  5549. padding:2px 2px 2px 0px;
  5550. box-sizing:border-box;
  5551. width:100%;
  5552. }
  5553. #u51045_text {
  5554. border-width:0px;
  5555. word-wrap:break-word;
  5556. text-transform:none;
  5557. visibility:hidden;
  5558. }
  5559. #u51046_img {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:0px;
  5563. top:0px;
  5564. width:88px;
  5565. height:35px;
  5566. }
  5567. #u51046 {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:1004px;
  5571. top:261px;
  5572. width:88px;
  5573. height:35px;
  5574. display:flex;
  5575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5576. font-weight:400;
  5577. font-style:normal;
  5578. font-size:12px;
  5579. color:#606266;
  5580. }
  5581. #u51046 .text {
  5582. position:absolute;
  5583. align-self:center;
  5584. padding:2px 2px 2px 0px;
  5585. box-sizing:border-box;
  5586. width:100%;
  5587. }
  5588. #u51046_text {
  5589. border-width:0px;
  5590. word-wrap:break-word;
  5591. text-transform:none;
  5592. visibility:hidden;
  5593. }
  5594. #u51047_img {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:0px;
  5598. top:0px;
  5599. width:100px;
  5600. height:35px;
  5601. }
  5602. #u51047 {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:1092px;
  5606. top:261px;
  5607. width:100px;
  5608. height:35px;
  5609. display:flex;
  5610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5611. font-weight:400;
  5612. font-style:normal;
  5613. font-size:12px;
  5614. color:#02A7F0;
  5615. }
  5616. #u51047 .text {
  5617. position:absolute;
  5618. align-self:center;
  5619. padding:2px 2px 2px 0px;
  5620. box-sizing:border-box;
  5621. width:100%;
  5622. }
  5623. #u51047_text {
  5624. border-width:0px;
  5625. word-wrap:break-word;
  5626. text-transform:none;
  5627. visibility:hidden;
  5628. }
  5629. #u51048_img {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:0px;
  5633. top:0px;
  5634. width:82px;
  5635. height:35px;
  5636. }
  5637. #u51048 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:296px;
  5642. width:82px;
  5643. height:35px;
  5644. display:flex;
  5645. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:12px;
  5649. color:#606266;
  5650. }
  5651. #u51048 .text {
  5652. position:absolute;
  5653. align-self:center;
  5654. padding:2px 2px 2px 0px;
  5655. box-sizing:border-box;
  5656. width:100%;
  5657. }
  5658. #u51048_text {
  5659. border-width:0px;
  5660. word-wrap:break-word;
  5661. text-transform:none;
  5662. visibility:hidden;
  5663. }
  5664. #u51049_img {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:82px;
  5670. height:35px;
  5671. }
  5672. #u51049 {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:82px;
  5676. top:296px;
  5677. width:82px;
  5678. height:35px;
  5679. display:flex;
  5680. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5681. font-weight:400;
  5682. font-style:normal;
  5683. font-size:12px;
  5684. color:#606266;
  5685. }
  5686. #u51049 .text {
  5687. position:absolute;
  5688. align-self:center;
  5689. padding:2px 2px 2px 0px;
  5690. box-sizing:border-box;
  5691. width:100%;
  5692. }
  5693. #u51049_text {
  5694. border-width:0px;
  5695. word-wrap:break-word;
  5696. text-transform:none;
  5697. visibility:hidden;
  5698. }
  5699. #u51050_img {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:82px;
  5705. height:35px;
  5706. }
  5707. #u51050 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:164px;
  5711. top:296px;
  5712. width:82px;
  5713. height:35px;
  5714. display:flex;
  5715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5716. font-weight:400;
  5717. font-style:normal;
  5718. font-size:12px;
  5719. color:#606266;
  5720. }
  5721. #u51050 .text {
  5722. position:absolute;
  5723. align-self:center;
  5724. padding:2px 2px 2px 0px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u51050_text {
  5729. border-width:0px;
  5730. word-wrap:break-word;
  5731. text-transform:none;
  5732. visibility:hidden;
  5733. }
  5734. #u51051_img {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:82px;
  5740. height:35px;
  5741. }
  5742. #u51051 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:246px;
  5746. top:296px;
  5747. width:82px;
  5748. height:35px;
  5749. display:flex;
  5750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5751. font-weight:400;
  5752. font-style:normal;
  5753. font-size:12px;
  5754. color:#606266;
  5755. }
  5756. #u51051 .text {
  5757. position:absolute;
  5758. align-self:center;
  5759. padding:2px 2px 2px 0px;
  5760. box-sizing:border-box;
  5761. width:100%;
  5762. }
  5763. #u51051_text {
  5764. border-width:0px;
  5765. word-wrap:break-word;
  5766. text-transform:none;
  5767. visibility:hidden;
  5768. }
  5769. #u51052_img {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:0px;
  5773. top:0px;
  5774. width:82px;
  5775. height:35px;
  5776. }
  5777. #u51052 {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:328px;
  5781. top:296px;
  5782. width:82px;
  5783. height:35px;
  5784. display:flex;
  5785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5786. font-weight:400;
  5787. font-style:normal;
  5788. font-size:12px;
  5789. color:#606266;
  5790. }
  5791. #u51052 .text {
  5792. position:absolute;
  5793. align-self:center;
  5794. padding:2px 2px 2px 0px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u51052_text {
  5799. border-width:0px;
  5800. word-wrap:break-word;
  5801. text-transform:none;
  5802. visibility:hidden;
  5803. }
  5804. #u51053_img {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:0px;
  5808. top:0px;
  5809. width:89px;
  5810. height:35px;
  5811. }
  5812. #u51053 {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:410px;
  5816. top:296px;
  5817. width:89px;
  5818. height:35px;
  5819. display:flex;
  5820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5821. font-weight:400;
  5822. font-style:normal;
  5823. font-size:12px;
  5824. color:#606266;
  5825. }
  5826. #u51053 .text {
  5827. position:absolute;
  5828. align-self:center;
  5829. padding:2px 2px 2px 0px;
  5830. box-sizing:border-box;
  5831. width:100%;
  5832. }
  5833. #u51053_text {
  5834. border-width:0px;
  5835. word-wrap:break-word;
  5836. text-transform:none;
  5837. visibility:hidden;
  5838. }
  5839. #u51054_img {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:82px;
  5845. height:35px;
  5846. }
  5847. #u51054 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:499px;
  5851. top:296px;
  5852. width:82px;
  5853. height:35px;
  5854. display:flex;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:12px;
  5859. color:#606266;
  5860. }
  5861. #u51054 .text {
  5862. position:absolute;
  5863. align-self:center;
  5864. padding:2px 2px 2px 0px;
  5865. box-sizing:border-box;
  5866. width:100%;
  5867. }
  5868. #u51054_text {
  5869. border-width:0px;
  5870. word-wrap:break-word;
  5871. text-transform:none;
  5872. visibility:hidden;
  5873. }
  5874. #u51055_img {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:0px;
  5878. top:0px;
  5879. width:82px;
  5880. height:35px;
  5881. }
  5882. #u51055 {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:581px;
  5886. top:296px;
  5887. width:82px;
  5888. height:35px;
  5889. display:flex;
  5890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5891. font-weight:400;
  5892. font-style:normal;
  5893. font-size:12px;
  5894. color:#606266;
  5895. }
  5896. #u51055 .text {
  5897. position:absolute;
  5898. align-self:center;
  5899. padding:2px 2px 2px 0px;
  5900. box-sizing:border-box;
  5901. width:100%;
  5902. }
  5903. #u51055_text {
  5904. border-width:0px;
  5905. word-wrap:break-word;
  5906. text-transform:none;
  5907. visibility:hidden;
  5908. }
  5909. #u51056_img {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:0px;
  5913. top:0px;
  5914. width:88px;
  5915. height:35px;
  5916. }
  5917. #u51056 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:663px;
  5921. top:296px;
  5922. width:88px;
  5923. height:35px;
  5924. display:flex;
  5925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:12px;
  5929. color:#606266;
  5930. }
  5931. #u51056 .text {
  5932. position:absolute;
  5933. align-self:center;
  5934. padding:2px 2px 2px 0px;
  5935. box-sizing:border-box;
  5936. width:100%;
  5937. }
  5938. #u51056_text {
  5939. border-width:0px;
  5940. word-wrap:break-word;
  5941. text-transform:none;
  5942. visibility:hidden;
  5943. }
  5944. #u51057_img {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:82px;
  5950. height:35px;
  5951. }
  5952. #u51057 {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:751px;
  5956. top:296px;
  5957. width:82px;
  5958. height:35px;
  5959. display:flex;
  5960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5961. font-weight:400;
  5962. font-style:normal;
  5963. font-size:12px;
  5964. color:#606266;
  5965. }
  5966. #u51057 .text {
  5967. position:absolute;
  5968. align-self:center;
  5969. padding:2px 2px 2px 0px;
  5970. box-sizing:border-box;
  5971. width:100%;
  5972. }
  5973. #u51057_text {
  5974. border-width:0px;
  5975. word-wrap:break-word;
  5976. text-transform:none;
  5977. visibility:hidden;
  5978. }
  5979. #u51058_img {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:0px;
  5983. top:0px;
  5984. width:82px;
  5985. height:35px;
  5986. }
  5987. #u51058 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:833px;
  5991. top:296px;
  5992. width:82px;
  5993. height:35px;
  5994. display:flex;
  5995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5996. font-weight:400;
  5997. font-style:normal;
  5998. font-size:12px;
  5999. color:#606266;
  6000. }
  6001. #u51058 .text {
  6002. position:absolute;
  6003. align-self:center;
  6004. padding:2px 2px 2px 0px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u51058_text {
  6009. border-width:0px;
  6010. word-wrap:break-word;
  6011. text-transform:none;
  6012. visibility:hidden;
  6013. }
  6014. #u51059_img {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:89px;
  6020. height:35px;
  6021. }
  6022. #u51059 {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:915px;
  6026. top:296px;
  6027. width:89px;
  6028. height:35px;
  6029. display:flex;
  6030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6031. font-weight:400;
  6032. font-style:normal;
  6033. font-size:12px;
  6034. color:#606266;
  6035. }
  6036. #u51059 .text {
  6037. position:absolute;
  6038. align-self:center;
  6039. padding:2px 2px 2px 0px;
  6040. box-sizing:border-box;
  6041. width:100%;
  6042. }
  6043. #u51059_text {
  6044. border-width:0px;
  6045. word-wrap:break-word;
  6046. text-transform:none;
  6047. visibility:hidden;
  6048. }
  6049. #u51060_img {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:0px;
  6053. top:0px;
  6054. width:88px;
  6055. height:35px;
  6056. }
  6057. #u51060 {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:1004px;
  6061. top:296px;
  6062. width:88px;
  6063. height:35px;
  6064. display:flex;
  6065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:12px;
  6069. color:#606266;
  6070. }
  6071. #u51060 .text {
  6072. position:absolute;
  6073. align-self:center;
  6074. padding:2px 2px 2px 0px;
  6075. box-sizing:border-box;
  6076. width:100%;
  6077. }
  6078. #u51060_text {
  6079. border-width:0px;
  6080. word-wrap:break-word;
  6081. text-transform:none;
  6082. visibility:hidden;
  6083. }
  6084. #u51061_img {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:0px;
  6088. top:0px;
  6089. width:100px;
  6090. height:35px;
  6091. }
  6092. #u51061 {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:1092px;
  6096. top:296px;
  6097. width:100px;
  6098. height:35px;
  6099. display:flex;
  6100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6101. font-weight:400;
  6102. font-style:normal;
  6103. font-size:12px;
  6104. color:#02A7F0;
  6105. }
  6106. #u51061 .text {
  6107. position:absolute;
  6108. align-self:center;
  6109. padding:2px 2px 2px 0px;
  6110. box-sizing:border-box;
  6111. width:100%;
  6112. }
  6113. #u51061_text {
  6114. border-width:0px;
  6115. word-wrap:break-word;
  6116. text-transform:none;
  6117. visibility:hidden;
  6118. }
  6119. #u51062_img {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:82px;
  6125. height:35px;
  6126. }
  6127. #u51062 {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:331px;
  6132. width:82px;
  6133. height:35px;
  6134. display:flex;
  6135. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6136. font-weight:400;
  6137. font-style:normal;
  6138. font-size:12px;
  6139. color:#606266;
  6140. }
  6141. #u51062 .text {
  6142. position:absolute;
  6143. align-self:center;
  6144. padding:2px 2px 2px 0px;
  6145. box-sizing:border-box;
  6146. width:100%;
  6147. }
  6148. #u51062_text {
  6149. border-width:0px;
  6150. word-wrap:break-word;
  6151. text-transform:none;
  6152. visibility:hidden;
  6153. }
  6154. #u51063_img {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:0px;
  6158. top:0px;
  6159. width:82px;
  6160. height:35px;
  6161. }
  6162. #u51063 {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:82px;
  6166. top:331px;
  6167. width:82px;
  6168. height:35px;
  6169. display:flex;
  6170. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. font-size:12px;
  6174. color:#606266;
  6175. }
  6176. #u51063 .text {
  6177. position:absolute;
  6178. align-self:center;
  6179. padding:2px 2px 2px 0px;
  6180. box-sizing:border-box;
  6181. width:100%;
  6182. }
  6183. #u51063_text {
  6184. border-width:0px;
  6185. word-wrap:break-word;
  6186. text-transform:none;
  6187. visibility:hidden;
  6188. }
  6189. #u51064_img {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:0px;
  6193. top:0px;
  6194. width:82px;
  6195. height:35px;
  6196. }
  6197. #u51064 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:164px;
  6201. top:331px;
  6202. width:82px;
  6203. height:35px;
  6204. display:flex;
  6205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6206. font-weight:400;
  6207. font-style:normal;
  6208. font-size:12px;
  6209. color:#606266;
  6210. }
  6211. #u51064 .text {
  6212. position:absolute;
  6213. align-self:center;
  6214. padding:2px 2px 2px 0px;
  6215. box-sizing:border-box;
  6216. width:100%;
  6217. }
  6218. #u51064_text {
  6219. border-width:0px;
  6220. word-wrap:break-word;
  6221. text-transform:none;
  6222. visibility:hidden;
  6223. }
  6224. #u51065_img {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:82px;
  6230. height:35px;
  6231. }
  6232. #u51065 {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:246px;
  6236. top:331px;
  6237. width:82px;
  6238. height:35px;
  6239. display:flex;
  6240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:12px;
  6244. color:#606266;
  6245. }
  6246. #u51065 .text {
  6247. position:absolute;
  6248. align-self:center;
  6249. padding:2px 2px 2px 0px;
  6250. box-sizing:border-box;
  6251. width:100%;
  6252. }
  6253. #u51065_text {
  6254. border-width:0px;
  6255. word-wrap:break-word;
  6256. text-transform:none;
  6257. visibility:hidden;
  6258. }
  6259. #u51066_img {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:82px;
  6265. height:35px;
  6266. }
  6267. #u51066 {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:328px;
  6271. top:331px;
  6272. width:82px;
  6273. height:35px;
  6274. display:flex;
  6275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6276. font-weight:400;
  6277. font-style:normal;
  6278. font-size:12px;
  6279. color:#606266;
  6280. }
  6281. #u51066 .text {
  6282. position:absolute;
  6283. align-self:center;
  6284. padding:2px 2px 2px 0px;
  6285. box-sizing:border-box;
  6286. width:100%;
  6287. }
  6288. #u51066_text {
  6289. border-width:0px;
  6290. word-wrap:break-word;
  6291. text-transform:none;
  6292. visibility:hidden;
  6293. }
  6294. #u51067_img {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:0px;
  6298. top:0px;
  6299. width:89px;
  6300. height:35px;
  6301. }
  6302. #u51067 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:410px;
  6306. top:331px;
  6307. width:89px;
  6308. height:35px;
  6309. display:flex;
  6310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6311. font-weight:400;
  6312. font-style:normal;
  6313. font-size:12px;
  6314. color:#606266;
  6315. }
  6316. #u51067 .text {
  6317. position:absolute;
  6318. align-self:center;
  6319. padding:2px 2px 2px 0px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u51067_text {
  6324. border-width:0px;
  6325. word-wrap:break-word;
  6326. text-transform:none;
  6327. visibility:hidden;
  6328. }
  6329. #u51068_img {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:82px;
  6335. height:35px;
  6336. }
  6337. #u51068 {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:499px;
  6341. top:331px;
  6342. width:82px;
  6343. height:35px;
  6344. display:flex;
  6345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6346. font-weight:400;
  6347. font-style:normal;
  6348. font-size:12px;
  6349. color:#606266;
  6350. }
  6351. #u51068 .text {
  6352. position:absolute;
  6353. align-self:center;
  6354. padding:2px 2px 2px 0px;
  6355. box-sizing:border-box;
  6356. width:100%;
  6357. }
  6358. #u51068_text {
  6359. border-width:0px;
  6360. word-wrap:break-word;
  6361. text-transform:none;
  6362. visibility:hidden;
  6363. }
  6364. #u51069_img {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:0px;
  6368. top:0px;
  6369. width:82px;
  6370. height:35px;
  6371. }
  6372. #u51069 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:581px;
  6376. top:331px;
  6377. width:82px;
  6378. height:35px;
  6379. display:flex;
  6380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6381. font-weight:400;
  6382. font-style:normal;
  6383. font-size:12px;
  6384. color:#606266;
  6385. }
  6386. #u51069 .text {
  6387. position:absolute;
  6388. align-self:center;
  6389. padding:2px 2px 2px 0px;
  6390. box-sizing:border-box;
  6391. width:100%;
  6392. }
  6393. #u51069_text {
  6394. border-width:0px;
  6395. word-wrap:break-word;
  6396. text-transform:none;
  6397. visibility:hidden;
  6398. }
  6399. #u51070_img {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:88px;
  6405. height:35px;
  6406. }
  6407. #u51070 {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:663px;
  6411. top:331px;
  6412. width:88px;
  6413. height:35px;
  6414. display:flex;
  6415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6416. font-weight:400;
  6417. font-style:normal;
  6418. font-size:12px;
  6419. color:#606266;
  6420. }
  6421. #u51070 .text {
  6422. position:absolute;
  6423. align-self:center;
  6424. padding:2px 2px 2px 0px;
  6425. box-sizing:border-box;
  6426. width:100%;
  6427. }
  6428. #u51070_text {
  6429. border-width:0px;
  6430. word-wrap:break-word;
  6431. text-transform:none;
  6432. visibility:hidden;
  6433. }
  6434. #u51071_img {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:82px;
  6440. height:35px;
  6441. }
  6442. #u51071 {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:751px;
  6446. top:331px;
  6447. width:82px;
  6448. height:35px;
  6449. display:flex;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:12px;
  6454. color:#606266;
  6455. }
  6456. #u51071 .text {
  6457. position:absolute;
  6458. align-self:center;
  6459. padding:2px 2px 2px 0px;
  6460. box-sizing:border-box;
  6461. width:100%;
  6462. }
  6463. #u51071_text {
  6464. border-width:0px;
  6465. word-wrap:break-word;
  6466. text-transform:none;
  6467. visibility:hidden;
  6468. }
  6469. #u51072_img {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:0px;
  6473. top:0px;
  6474. width:82px;
  6475. height:35px;
  6476. }
  6477. #u51072 {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:833px;
  6481. top:331px;
  6482. width:82px;
  6483. height:35px;
  6484. display:flex;
  6485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6486. font-weight:400;
  6487. font-style:normal;
  6488. font-size:12px;
  6489. color:#606266;
  6490. }
  6491. #u51072 .text {
  6492. position:absolute;
  6493. align-self:center;
  6494. padding:2px 2px 2px 0px;
  6495. box-sizing:border-box;
  6496. width:100%;
  6497. }
  6498. #u51072_text {
  6499. border-width:0px;
  6500. word-wrap:break-word;
  6501. text-transform:none;
  6502. visibility:hidden;
  6503. }
  6504. #u51073_img {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:0px;
  6508. top:0px;
  6509. width:89px;
  6510. height:35px;
  6511. }
  6512. #u51073 {
  6513. border-width:0px;
  6514. position:absolute;
  6515. left:915px;
  6516. top:331px;
  6517. width:89px;
  6518. height:35px;
  6519. display:flex;
  6520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6521. font-weight:400;
  6522. font-style:normal;
  6523. font-size:12px;
  6524. color:#606266;
  6525. }
  6526. #u51073 .text {
  6527. position:absolute;
  6528. align-self:center;
  6529. padding:2px 2px 2px 0px;
  6530. box-sizing:border-box;
  6531. width:100%;
  6532. }
  6533. #u51073_text {
  6534. border-width:0px;
  6535. word-wrap:break-word;
  6536. text-transform:none;
  6537. visibility:hidden;
  6538. }
  6539. #u51074_img {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:0px;
  6543. top:0px;
  6544. width:88px;
  6545. height:35px;
  6546. }
  6547. #u51074 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:1004px;
  6551. top:331px;
  6552. width:88px;
  6553. height:35px;
  6554. display:flex;
  6555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:12px;
  6559. color:#606266;
  6560. }
  6561. #u51074 .text {
  6562. position:absolute;
  6563. align-self:center;
  6564. padding:2px 2px 2px 0px;
  6565. box-sizing:border-box;
  6566. width:100%;
  6567. }
  6568. #u51074_text {
  6569. border-width:0px;
  6570. word-wrap:break-word;
  6571. text-transform:none;
  6572. visibility:hidden;
  6573. }
  6574. #u51075_img {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:100px;
  6580. height:35px;
  6581. }
  6582. #u51075 {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:1092px;
  6586. top:331px;
  6587. width:100px;
  6588. height:35px;
  6589. display:flex;
  6590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6591. font-weight:400;
  6592. font-style:normal;
  6593. font-size:12px;
  6594. color:#02A7F0;
  6595. }
  6596. #u51075 .text {
  6597. position:absolute;
  6598. align-self:center;
  6599. padding:2px 2px 2px 0px;
  6600. box-sizing:border-box;
  6601. width:100%;
  6602. }
  6603. #u51075_text {
  6604. border-width:0px;
  6605. word-wrap:break-word;
  6606. text-transform:none;
  6607. visibility:hidden;
  6608. }
  6609. #u51076 {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:0px;
  6613. top:0px;
  6614. width:0px;
  6615. height:0px;
  6616. }
  6617. #u51077_div {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:59px;
  6623. height:30px;
  6624. background:inherit;
  6625. background-color:rgba(24, 144, 255, 1);
  6626. box-sizing:border-box;
  6627. border-width:1px;
  6628. border-style:solid;
  6629. border-color:rgba(0, 153, 255, 1);
  6630. border-radius:4px;
  6631. -moz-box-shadow:none;
  6632. -webkit-box-shadow:none;
  6633. box-shadow:none;
  6634. font-family:'Microsoft YaHei', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:14px;
  6638. color:#FFFFFF;
  6639. }
  6640. #u51077 {
  6641. border-width:0px;
  6642. position:absolute;
  6643. left:1250px;
  6644. top:105px;
  6645. width:59px;
  6646. height:30px;
  6647. display:flex;
  6648. font-family:'Microsoft YaHei', sans-serif;
  6649. font-weight:400;
  6650. font-style:normal;
  6651. font-size:14px;
  6652. color:#FFFFFF;
  6653. }
  6654. #u51077 .text {
  6655. position:absolute;
  6656. align-self:center;
  6657. padding:5px 15px 5px 15px;
  6658. box-sizing:border-box;
  6659. width:100%;
  6660. }
  6661. #u51077_text {
  6662. border-width:0px;
  6663. white-space:nowrap;
  6664. text-transform:none;
  6665. }
  6666. #u51078_div {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:0px;
  6670. top:0px;
  6671. width:55px;
  6672. height:30px;
  6673. background:inherit;
  6674. background-color:rgba(255, 255, 255, 1);
  6675. box-sizing:border-box;
  6676. border-width:1px;
  6677. border-style:solid;
  6678. border-color:rgba(170, 170, 170, 1);
  6679. border-radius:4px;
  6680. -moz-box-shadow:none;
  6681. -webkit-box-shadow:none;
  6682. box-shadow:none;
  6683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6684. font-weight:400;
  6685. font-style:normal;
  6686. font-size:12px;
  6687. color:#555555;
  6688. }
  6689. #u51078 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:1319px;
  6693. top:105px;
  6694. width:55px;
  6695. height:30px;
  6696. display:flex;
  6697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6698. font-weight:400;
  6699. font-style:normal;
  6700. font-size:12px;
  6701. color:#555555;
  6702. }
  6703. #u51078 .text {
  6704. position:absolute;
  6705. align-self:center;
  6706. padding:5px 15px 5px 15px;
  6707. box-sizing:border-box;
  6708. width:100%;
  6709. }
  6710. #u51078_text {
  6711. border-width:0px;
  6712. white-space:nowrap;
  6713. text-transform:none;
  6714. }
  6715. #u51079_img {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:13px;
  6721. height:13px;
  6722. }
  6723. #u51079 {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:428px;
  6727. top:68px;
  6728. width:13px;
  6729. height:13px;
  6730. display:flex;
  6731. }
  6732. #u51079 .text {
  6733. position:absolute;
  6734. align-self:center;
  6735. padding:2px 2px 2px 2px;
  6736. box-sizing:border-box;
  6737. width:100%;
  6738. }
  6739. #u51079_text {
  6740. border-width:0px;
  6741. word-wrap:break-word;
  6742. text-transform:none;
  6743. visibility:hidden;
  6744. }
  6745. #u51080 {
  6746. border-width:0px;
  6747. position:absolute;
  6748. left:0px;
  6749. top:0px;
  6750. width:0px;
  6751. height:0px;
  6752. }
  6753. #u51081_div {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:140px;
  6759. height:30px;
  6760. background:inherit;
  6761. background-color:rgba(255, 255, 255, 1);
  6762. box-sizing:border-box;
  6763. border-width:1px;
  6764. border-style:solid;
  6765. border-color:rgba(201, 201, 201, 1);
  6766. border-radius:4px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. font-family:'Microsoft YaHei', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:14px;
  6774. color:#CCCCCC;
  6775. text-align:left;
  6776. }
  6777. #u51081 {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:800px;
  6781. top:105px;
  6782. width:140px;
  6783. height:30px;
  6784. display:flex;
  6785. font-family:'Microsoft YaHei', sans-serif;
  6786. font-weight:400;
  6787. font-style:normal;
  6788. font-size:14px;
  6789. color:#CCCCCC;
  6790. text-align:left;
  6791. }
  6792. #u51081 .text {
  6793. position:absolute;
  6794. align-self:center;
  6795. padding:2px 8px 2px 8px;
  6796. box-sizing:border-box;
  6797. width:100%;
  6798. }
  6799. #u51081_text {
  6800. border-width:0px;
  6801. word-wrap:break-word;
  6802. text-transform:none;
  6803. visibility:hidden;
  6804. }
  6805. #u51082_input {
  6806. position:absolute;
  6807. left:0px;
  6808. top:0px;
  6809. width:127px;
  6810. height:25px;
  6811. padding:2px 2px 2px 2px;
  6812. font-family:'Microsoft YaHei', sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. font-size:10px;
  6816. letter-spacing:normal;
  6817. color:#000000;
  6818. vertical-align:none;
  6819. text-align:left;
  6820. text-transform:none;
  6821. background-color:transparent;
  6822. border-color:transparent;
  6823. }
  6824. #u51082_input.disabled {
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:127px;
  6829. height:25px;
  6830. padding:2px 2px 2px 2px;
  6831. font-family:'Microsoft YaHei', sans-serif;
  6832. font-weight:400;
  6833. font-style:normal;
  6834. font-size:10px;
  6835. letter-spacing:normal;
  6836. color:#000000;
  6837. vertical-align:none;
  6838. text-align:left;
  6839. text-transform:none;
  6840. background-color:transparent;
  6841. border-color:transparent;
  6842. }
  6843. #u51082_div {
  6844. border-width:0px;
  6845. position:absolute;
  6846. left:0px;
  6847. top:0px;
  6848. width:127px;
  6849. height:25px;
  6850. background:inherit;
  6851. background-color:rgba(255, 255, 255, 1);
  6852. border:none;
  6853. border-radius:0px;
  6854. -moz-box-shadow:none;
  6855. -webkit-box-shadow:none;
  6856. box-shadow:none;
  6857. font-family:'Microsoft YaHei', sans-serif;
  6858. font-weight:400;
  6859. font-style:normal;
  6860. font-size:10px;
  6861. }
  6862. #u51082 {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:808px;
  6866. top:106px;
  6867. width:127px;
  6868. height:25px;
  6869. display:flex;
  6870. font-family:'Microsoft YaHei', sans-serif;
  6871. font-weight:400;
  6872. font-style:normal;
  6873. font-size:10px;
  6874. }
  6875. #u51082 .text {
  6876. position:absolute;
  6877. align-self:center;
  6878. padding:2px 2px 2px 2px;
  6879. box-sizing:border-box;
  6880. width:100%;
  6881. }
  6882. #u51082_div.disabled {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:127px;
  6888. height:25px;
  6889. background:inherit;
  6890. background-color:rgba(240, 240, 240, 1);
  6891. border:none;
  6892. border-radius:0px;
  6893. -moz-box-shadow:none;
  6894. -webkit-box-shadow:none;
  6895. box-shadow:none;
  6896. font-family:'Microsoft YaHei', sans-serif;
  6897. font-weight:400;
  6898. font-style:normal;
  6899. font-size:10px;
  6900. }
  6901. #u51082.disabled {
  6902. }
  6903. #u51083 {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:0px;
  6907. top:0px;
  6908. width:0px;
  6909. height:0px;
  6910. }
  6911. #u51084_div {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:140px;
  6917. height:30px;
  6918. background:inherit;
  6919. background-color:rgba(255, 255, 255, 1);
  6920. box-sizing:border-box;
  6921. border-width:1px;
  6922. border-style:solid;
  6923. border-color:rgba(215, 215, 215, 1);
  6924. border-radius:4px;
  6925. -moz-box-shadow:none;
  6926. -webkit-box-shadow:none;
  6927. box-shadow:none;
  6928. font-size:11px;
  6929. }
  6930. #u51084 {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:500px;
  6934. top:105px;
  6935. width:140px;
  6936. height:30px;
  6937. display:flex;
  6938. font-size:11px;
  6939. }
  6940. #u51084 .text {
  6941. position:absolute;
  6942. align-self:center;
  6943. padding:2px 2px 2px 2px;
  6944. box-sizing:border-box;
  6945. width:100%;
  6946. }
  6947. #u51084_text {
  6948. border-width:0px;
  6949. word-wrap:break-word;
  6950. text-transform:none;
  6951. visibility:hidden;
  6952. }
  6953. #u51085_input {
  6954. position:absolute;
  6955. left:0px;
  6956. top:0px;
  6957. width:120px;
  6958. height:23px;
  6959. padding:2px 2px 2px 2px;
  6960. font-family:'ArialMT', 'Arial', sans-serif;
  6961. font-weight:400;
  6962. font-style:normal;
  6963. font-size:11px;
  6964. letter-spacing:normal;
  6965. color:#AAAAAA;
  6966. vertical-align:none;
  6967. text-align:left;
  6968. text-transform:none;
  6969. background-color:transparent;
  6970. border-color:transparent;
  6971. }
  6972. #u51085_input.disabled {
  6973. position:absolute;
  6974. left:0px;
  6975. top:0px;
  6976. width:120px;
  6977. height:23px;
  6978. padding:2px 2px 2px 2px;
  6979. font-family:'ArialMT', 'Arial', sans-serif;
  6980. font-weight:400;
  6981. font-style:normal;
  6982. font-size:11px;
  6983. letter-spacing:normal;
  6984. color:#AAAAAA;
  6985. vertical-align:none;
  6986. text-align:left;
  6987. text-transform:none;
  6988. background-color:transparent;
  6989. border-color:transparent;
  6990. }
  6991. #u51085_div {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:0px;
  6995. top:0px;
  6996. width:120px;
  6997. height:23px;
  6998. background:inherit;
  6999. background-color:rgba(255, 255, 255, 1);
  7000. border:none;
  7001. border-radius:0px;
  7002. -moz-box-shadow:none;
  7003. -webkit-box-shadow:none;
  7004. box-shadow:none;
  7005. font-size:11px;
  7006. color:#AAAAAA;
  7007. }
  7008. #u51085 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:507px;
  7012. top:107px;
  7013. width:120px;
  7014. height:23px;
  7015. display:flex;
  7016. font-size:11px;
  7017. color:#AAAAAA;
  7018. }
  7019. #u51085 .text {
  7020. position:absolute;
  7021. align-self:flex-start;
  7022. padding:2px 2px 2px 2px;
  7023. box-sizing:border-box;
  7024. width:100%;
  7025. }
  7026. #u51085_div.disabled {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:0px;
  7030. top:0px;
  7031. width:120px;
  7032. height:23px;
  7033. background:inherit;
  7034. background-color:rgba(240, 240, 240, 1);
  7035. border:none;
  7036. border-radius:0px;
  7037. -moz-box-shadow:none;
  7038. -webkit-box-shadow:none;
  7039. box-shadow:none;
  7040. font-size:11px;
  7041. color:#AAAAAA;
  7042. }
  7043. #u51085.disabled {
  7044. }
  7045. .u51085_input_option {
  7046. font-size:11px;
  7047. }
  7048. #u51086 {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:0px;
  7052. top:0px;
  7053. width:0px;
  7054. height:0px;
  7055. }
  7056. #u51087_div {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:0px;
  7060. top:0px;
  7061. width:140px;
  7062. height:30px;
  7063. background:inherit;
  7064. background-color:rgba(255, 255, 255, 1);
  7065. box-sizing:border-box;
  7066. border-width:1px;
  7067. border-style:solid;
  7068. border-color:rgba(215, 215, 215, 1);
  7069. border-radius:4px;
  7070. -moz-box-shadow:none;
  7071. -webkit-box-shadow:none;
  7072. box-shadow:none;
  7073. font-size:11px;
  7074. }
  7075. #u51087 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:650px;
  7079. top:105px;
  7080. width:140px;
  7081. height:30px;
  7082. display:flex;
  7083. font-size:11px;
  7084. }
  7085. #u51087 .text {
  7086. position:absolute;
  7087. align-self:center;
  7088. padding:2px 2px 2px 2px;
  7089. box-sizing:border-box;
  7090. width:100%;
  7091. }
  7092. #u51087_text {
  7093. border-width:0px;
  7094. word-wrap:break-word;
  7095. text-transform:none;
  7096. visibility:hidden;
  7097. }
  7098. #u51088_input {
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:120px;
  7103. height:23px;
  7104. padding:2px 2px 2px 2px;
  7105. font-family:'ArialMT', 'Arial', sans-serif;
  7106. font-weight:400;
  7107. font-style:normal;
  7108. font-size:11px;
  7109. letter-spacing:normal;
  7110. color:#AAAAAA;
  7111. vertical-align:none;
  7112. text-align:left;
  7113. text-transform:none;
  7114. background-color:transparent;
  7115. border-color:transparent;
  7116. }
  7117. #u51088_input.disabled {
  7118. position:absolute;
  7119. left:0px;
  7120. top:0px;
  7121. width:120px;
  7122. height:23px;
  7123. padding:2px 2px 2px 2px;
  7124. font-family:'ArialMT', 'Arial', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:11px;
  7128. letter-spacing:normal;
  7129. color:#AAAAAA;
  7130. vertical-align:none;
  7131. text-align:left;
  7132. text-transform:none;
  7133. background-color:transparent;
  7134. border-color:transparent;
  7135. }
  7136. #u51088_div {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:120px;
  7142. height:23px;
  7143. background:inherit;
  7144. background-color:rgba(255, 255, 255, 1);
  7145. border:none;
  7146. border-radius:0px;
  7147. -moz-box-shadow:none;
  7148. -webkit-box-shadow:none;
  7149. box-shadow:none;
  7150. font-size:11px;
  7151. color:#AAAAAA;
  7152. }
  7153. #u51088 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:657px;
  7157. top:107px;
  7158. width:120px;
  7159. height:23px;
  7160. display:flex;
  7161. font-size:11px;
  7162. color:#AAAAAA;
  7163. }
  7164. #u51088 .text {
  7165. position:absolute;
  7166. align-self:flex-start;
  7167. padding:2px 2px 2px 2px;
  7168. box-sizing:border-box;
  7169. width:100%;
  7170. }
  7171. #u51088_div.disabled {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:0px;
  7175. top:0px;
  7176. width:120px;
  7177. height:23px;
  7178. background:inherit;
  7179. background-color:rgba(240, 240, 240, 1);
  7180. border:none;
  7181. border-radius:0px;
  7182. -moz-box-shadow:none;
  7183. -webkit-box-shadow:none;
  7184. box-shadow:none;
  7185. font-size:11px;
  7186. color:#AAAAAA;
  7187. }
  7188. #u51088.disabled {
  7189. }
  7190. .u51088_input_option {
  7191. font-size:11px;
  7192. }
  7193. #u51089 {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:0px;
  7199. height:0px;
  7200. }
  7201. #u51090_div {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:0px;
  7205. top:0px;
  7206. width:140px;
  7207. height:30px;
  7208. background:inherit;
  7209. background-color:rgba(255, 255, 255, 1);
  7210. box-sizing:border-box;
  7211. border-width:1px;
  7212. border-style:solid;
  7213. border-color:rgba(215, 215, 215, 1);
  7214. border-radius:4px;
  7215. -moz-box-shadow:none;
  7216. -webkit-box-shadow:none;
  7217. box-shadow:none;
  7218. font-size:11px;
  7219. }
  7220. #u51090 {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:950px;
  7224. top:105px;
  7225. width:140px;
  7226. height:30px;
  7227. display:flex;
  7228. font-size:11px;
  7229. }
  7230. #u51090 .text {
  7231. position:absolute;
  7232. align-self:center;
  7233. padding:2px 2px 2px 2px;
  7234. box-sizing:border-box;
  7235. width:100%;
  7236. }
  7237. #u51090_text {
  7238. border-width:0px;
  7239. word-wrap:break-word;
  7240. text-transform:none;
  7241. visibility:hidden;
  7242. }
  7243. #u51091_input {
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:120px;
  7248. height:23px;
  7249. padding:2px 2px 2px 2px;
  7250. font-family:'ArialMT', 'Arial', sans-serif;
  7251. font-weight:400;
  7252. font-style:normal;
  7253. font-size:11px;
  7254. letter-spacing:normal;
  7255. color:#AAAAAA;
  7256. vertical-align:none;
  7257. text-align:left;
  7258. text-transform:none;
  7259. background-color:transparent;
  7260. border-color:transparent;
  7261. }
  7262. #u51091_input.disabled {
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:120px;
  7267. height:23px;
  7268. padding:2px 2px 2px 2px;
  7269. font-family:'ArialMT', 'Arial', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:11px;
  7273. letter-spacing:normal;
  7274. color:#AAAAAA;
  7275. vertical-align:none;
  7276. text-align:left;
  7277. text-transform:none;
  7278. background-color:transparent;
  7279. border-color:transparent;
  7280. }
  7281. #u51091_div {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:0px;
  7285. top:0px;
  7286. width:120px;
  7287. height:23px;
  7288. background:inherit;
  7289. background-color:rgba(255, 255, 255, 1);
  7290. border:none;
  7291. border-radius:0px;
  7292. -moz-box-shadow:none;
  7293. -webkit-box-shadow:none;
  7294. box-shadow:none;
  7295. font-size:11px;
  7296. color:#AAAAAA;
  7297. }
  7298. #u51091 {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:957px;
  7302. top:107px;
  7303. width:120px;
  7304. height:23px;
  7305. display:flex;
  7306. font-size:11px;
  7307. color:#AAAAAA;
  7308. }
  7309. #u51091 .text {
  7310. position:absolute;
  7311. align-self:flex-start;
  7312. padding:2px 2px 2px 2px;
  7313. box-sizing:border-box;
  7314. width:100%;
  7315. }
  7316. #u51091_div.disabled {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:0px;
  7320. top:0px;
  7321. width:120px;
  7322. height:23px;
  7323. background:inherit;
  7324. background-color:rgba(240, 240, 240, 1);
  7325. border:none;
  7326. border-radius:0px;
  7327. -moz-box-shadow:none;
  7328. -webkit-box-shadow:none;
  7329. box-shadow:none;
  7330. font-size:11px;
  7331. color:#AAAAAA;
  7332. }
  7333. #u51091.disabled {
  7334. }
  7335. .u51091_input_option {
  7336. font-size:11px;
  7337. }
  7338. #u51092 {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:0px;
  7342. top:0px;
  7343. width:0px;
  7344. height:0px;
  7345. }
  7346. #u51093_div {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:0px;
  7350. top:0px;
  7351. width:140px;
  7352. height:30px;
  7353. background:inherit;
  7354. background-color:rgba(255, 255, 255, 1);
  7355. box-sizing:border-box;
  7356. border-width:1px;
  7357. border-style:solid;
  7358. border-color:rgba(215, 215, 215, 1);
  7359. border-radius:4px;
  7360. -moz-box-shadow:none;
  7361. -webkit-box-shadow:none;
  7362. box-shadow:none;
  7363. font-size:14px;
  7364. }
  7365. #u51093 {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:350px;
  7369. top:105px;
  7370. width:140px;
  7371. height:30px;
  7372. display:flex;
  7373. font-size:14px;
  7374. }
  7375. #u51093 .text {
  7376. position:absolute;
  7377. align-self:center;
  7378. padding:2px 2px 2px 2px;
  7379. box-sizing:border-box;
  7380. width:100%;
  7381. }
  7382. #u51093_text {
  7383. border-width:0px;
  7384. word-wrap:break-word;
  7385. text-transform:none;
  7386. visibility:hidden;
  7387. }
  7388. #u51094_input {
  7389. position:absolute;
  7390. left:0px;
  7391. top:0px;
  7392. width:134px;
  7393. height:23px;
  7394. padding:2px 2px 2px 2px;
  7395. font-family:'ArialMT', 'Arial', sans-serif;
  7396. font-weight:400;
  7397. font-style:normal;
  7398. font-size:14px;
  7399. letter-spacing:normal;
  7400. color:#AAAAAA;
  7401. vertical-align:none;
  7402. text-align:left;
  7403. text-transform:none;
  7404. background-color:transparent;
  7405. border-color:transparent;
  7406. }
  7407. #u51094_input.disabled {
  7408. position:absolute;
  7409. left:0px;
  7410. top:0px;
  7411. width:134px;
  7412. height:23px;
  7413. padding:2px 2px 2px 2px;
  7414. font-family:'ArialMT', 'Arial', sans-serif;
  7415. font-weight:400;
  7416. font-style:normal;
  7417. font-size:14px;
  7418. letter-spacing:normal;
  7419. color:#AAAAAA;
  7420. vertical-align:none;
  7421. text-align:left;
  7422. text-transform:none;
  7423. background-color:transparent;
  7424. border-color:transparent;
  7425. }
  7426. #u51094_div {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:0px;
  7430. top:0px;
  7431. width:134px;
  7432. height:23px;
  7433. background:inherit;
  7434. background-color:rgba(255, 255, 255, 1);
  7435. border:none;
  7436. border-radius:0px;
  7437. -moz-box-shadow:none;
  7438. -webkit-box-shadow:none;
  7439. box-shadow:none;
  7440. font-size:14px;
  7441. color:#AAAAAA;
  7442. }
  7443. #u51094 {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:354px;
  7447. top:107px;
  7448. width:134px;
  7449. height:23px;
  7450. display:flex;
  7451. font-size:14px;
  7452. color:#AAAAAA;
  7453. }
  7454. #u51094 .text {
  7455. position:absolute;
  7456. align-self:flex-start;
  7457. padding:2px 2px 2px 2px;
  7458. box-sizing:border-box;
  7459. width:100%;
  7460. }
  7461. #u51094_div.disabled {
  7462. border-width:0px;
  7463. position:absolute;
  7464. left:0px;
  7465. top:0px;
  7466. width:134px;
  7467. height:23px;
  7468. background:inherit;
  7469. background-color:rgba(240, 240, 240, 1);
  7470. border:none;
  7471. border-radius:0px;
  7472. -moz-box-shadow:none;
  7473. -webkit-box-shadow:none;
  7474. box-shadow:none;
  7475. font-size:14px;
  7476. color:#AAAAAA;
  7477. }
  7478. #u51094.disabled {
  7479. }
  7480. .u51094_input_option {
  7481. font-size:14px;
  7482. }
  7483. #u51095_div {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:0px;
  7487. top:0px;
  7488. width:310px;
  7489. height:34px;
  7490. background:inherit;
  7491. background-color:rgba(255, 255, 255, 0);
  7492. border:none;
  7493. border-radius:0px;
  7494. -moz-box-shadow:none;
  7495. -webkit-box-shadow:none;
  7496. box-shadow:none;
  7497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7498. font-weight:400;
  7499. font-style:normal;
  7500. font-size:12px;
  7501. color:#D9001B;
  7502. }
  7503. #u51095 {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:1142px;
  7507. top:154px;
  7508. width:310px;
  7509. height:34px;
  7510. display:flex;
  7511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7512. font-weight:400;
  7513. font-style:normal;
  7514. font-size:12px;
  7515. color:#D9001B;
  7516. }
  7517. #u51095 .text {
  7518. position:absolute;
  7519. align-self:flex-start;
  7520. padding:0px 0px 0px 0px;
  7521. box-sizing:border-box;
  7522. width:100%;
  7523. }
  7524. #u51095_text {
  7525. border-width:0px;
  7526. word-wrap:break-word;
  7527. text-transform:none;
  7528. }
  7529. #u51096 {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:0px;
  7533. top:0px;
  7534. width:0px;
  7535. height:0px;
  7536. }
  7537. #u51097_div {
  7538. border-width:0px;
  7539. position:absolute;
  7540. left:0px;
  7541. top:0px;
  7542. width:200px;
  7543. height:1193px;
  7544. background:inherit;
  7545. background-color:rgba(255, 255, 255, 1);
  7546. border:none;
  7547. border-radius:0px;
  7548. -moz-box-shadow:none;
  7549. -webkit-box-shadow:none;
  7550. box-shadow:none;
  7551. }
  7552. #u51097 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:120px;
  7556. top:50px;
  7557. width:200px;
  7558. height:1193px;
  7559. display:flex;
  7560. }
  7561. #u51097 .text {
  7562. position:absolute;
  7563. align-self:center;
  7564. padding:2px 2px 2px 2px;
  7565. box-sizing:border-box;
  7566. width:100%;
  7567. }
  7568. #u51097_text {
  7569. border-width:0px;
  7570. word-wrap:break-word;
  7571. text-transform:none;
  7572. visibility:hidden;
  7573. }
  7574. #u51098_div {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:200px;
  7580. height:60px;
  7581. background:inherit;
  7582. background-color:rgba(224, 231, 247, 1);
  7583. border:none;
  7584. border-radius:0px;
  7585. -moz-box-shadow:none;
  7586. -webkit-box-shadow:none;
  7587. box-shadow:none;
  7588. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7589. font-weight:500;
  7590. font-style:normal;
  7591. font-size:18px;
  7592. }
  7593. #u51098 {
  7594. border-width:0px;
  7595. position:absolute;
  7596. left:120px;
  7597. top:50px;
  7598. width:200px;
  7599. height:60px;
  7600. display:flex;
  7601. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7602. font-weight:500;
  7603. font-style:normal;
  7604. font-size:18px;
  7605. }
  7606. #u51098 .text {
  7607. position:absolute;
  7608. align-self:center;
  7609. padding:0px 0px 0px 20px;
  7610. box-sizing:border-box;
  7611. width:100%;
  7612. }
  7613. #u51098_text {
  7614. border-width:0px;
  7615. word-wrap:break-word;
  7616. text-transform:none;
  7617. }
  7618. #u51099_div {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:0px;
  7622. top:0px;
  7623. width:97px;
  7624. height:22px;
  7625. background:inherit;
  7626. background-color:rgba(255, 255, 255, 0);
  7627. border:none;
  7628. border-radius:0px;
  7629. -moz-box-shadow:none;
  7630. -webkit-box-shadow:none;
  7631. box-shadow:none;
  7632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7633. font-weight:400;
  7634. font-style:normal;
  7635. font-size:16px;
  7636. }
  7637. #u51099 {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:147px;
  7641. top:387px;
  7642. width:97px;
  7643. height:22px;
  7644. display:flex;
  7645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7646. font-weight:400;
  7647. font-style:normal;
  7648. font-size:16px;
  7649. }
  7650. #u51099 .text {
  7651. position:absolute;
  7652. align-self:flex-start;
  7653. padding:0px 0px 0px 0px;
  7654. box-sizing:border-box;
  7655. width:100%;
  7656. }
  7657. #u51099_text {
  7658. border-width:0px;
  7659. word-wrap:break-word;
  7660. text-transform:none;
  7661. }
  7662. #u51100_div {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:0px;
  7666. top:0px;
  7667. width:97px;
  7668. height:22px;
  7669. background:inherit;
  7670. background-color:rgba(255, 255, 255, 0);
  7671. border:none;
  7672. border-radius:0px;
  7673. -moz-box-shadow:none;
  7674. -webkit-box-shadow:none;
  7675. box-shadow:none;
  7676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7677. font-weight:400;
  7678. font-style:normal;
  7679. font-size:16px;
  7680. }
  7681. #u51100 {
  7682. border-width:0px;
  7683. position:absolute;
  7684. left:147px;
  7685. top:166px;
  7686. width:97px;
  7687. height:22px;
  7688. display:flex;
  7689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7690. font-weight:400;
  7691. font-style:normal;
  7692. font-size:16px;
  7693. }
  7694. #u51100 .text {
  7695. position:absolute;
  7696. align-self:flex-start;
  7697. padding:0px 0px 0px 0px;
  7698. box-sizing:border-box;
  7699. width:100%;
  7700. }
  7701. #u51100_text {
  7702. border-width:0px;
  7703. word-wrap:break-word;
  7704. text-transform:none;
  7705. }
  7706. #u51101_div {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:0px;
  7710. top:0px;
  7711. width:49px;
  7712. height:17px;
  7713. background:inherit;
  7714. background-color:rgba(255, 255, 255, 0);
  7715. border:none;
  7716. border-radius:0px;
  7717. -moz-box-shadow:none;
  7718. -webkit-box-shadow:none;
  7719. box-shadow:none;
  7720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7721. font-weight:400;
  7722. font-style:normal;
  7723. font-size:12px;
  7724. color:#AAAAAA;
  7725. }
  7726. #u51101 {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:147px;
  7730. top:130px;
  7731. width:49px;
  7732. height:17px;
  7733. display:flex;
  7734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7735. font-weight:400;
  7736. font-style:normal;
  7737. font-size:12px;
  7738. color:#AAAAAA;
  7739. }
  7740. #u51101 .text {
  7741. position:absolute;
  7742. align-self:flex-start;
  7743. padding:0px 0px 0px 0px;
  7744. box-sizing:border-box;
  7745. width:100%;
  7746. }
  7747. #u51101_text {
  7748. border-width:0px;
  7749. white-space:nowrap;
  7750. text-transform:none;
  7751. }
  7752. #u51102_div {
  7753. border-width:0px;
  7754. position:absolute;
  7755. left:0px;
  7756. top:0px;
  7757. width:97px;
  7758. height:22px;
  7759. background:inherit;
  7760. background-color:rgba(255, 255, 255, 0);
  7761. border:none;
  7762. border-radius:0px;
  7763. -moz-box-shadow:none;
  7764. -webkit-box-shadow:none;
  7765. box-shadow:none;
  7766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7767. font-weight:400;
  7768. font-style:normal;
  7769. font-size:16px;
  7770. }
  7771. #u51102 {
  7772. border-width:0px;
  7773. position:absolute;
  7774. left:147px;
  7775. top:208px;
  7776. width:97px;
  7777. height:22px;
  7778. display:flex;
  7779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7780. font-weight:400;
  7781. font-style:normal;
  7782. font-size:16px;
  7783. }
  7784. #u51102 .text {
  7785. position:absolute;
  7786. align-self:flex-start;
  7787. padding:0px 0px 0px 0px;
  7788. box-sizing:border-box;
  7789. width:100%;
  7790. }
  7791. #u51102_text {
  7792. border-width:0px;
  7793. word-wrap:break-word;
  7794. text-transform:none;
  7795. }
  7796. #u51103_img {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:0px;
  7800. top:0px;
  7801. width:201px;
  7802. height:2px;
  7803. }
  7804. #u51103 {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:120px;
  7808. top:246px;
  7809. width:200px;
  7810. height:1px;
  7811. display:flex;
  7812. }
  7813. #u51103 .text {
  7814. position:absolute;
  7815. align-self:center;
  7816. padding:2px 2px 2px 2px;
  7817. box-sizing:border-box;
  7818. width:100%;
  7819. }
  7820. #u51103_text {
  7821. border-width:0px;
  7822. word-wrap:break-word;
  7823. text-transform:none;
  7824. visibility:hidden;
  7825. }
  7826. #u51104_div {
  7827. border-width:0px;
  7828. position:absolute;
  7829. left:0px;
  7830. top:0px;
  7831. width:97px;
  7832. height:22px;
  7833. background:inherit;
  7834. background-color:rgba(255, 255, 255, 0);
  7835. border:none;
  7836. border-radius:0px;
  7837. -moz-box-shadow:none;
  7838. -webkit-box-shadow:none;
  7839. box-shadow:none;
  7840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7841. font-weight:400;
  7842. font-style:normal;
  7843. font-size:16px;
  7844. }
  7845. #u51104 {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:147px;
  7849. top:569px;
  7850. width:97px;
  7851. height:22px;
  7852. display:flex;
  7853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7854. font-weight:400;
  7855. font-style:normal;
  7856. font-size:16px;
  7857. }
  7858. #u51104 .text {
  7859. position:absolute;
  7860. align-self:flex-start;
  7861. padding:0px 0px 0px 0px;
  7862. box-sizing:border-box;
  7863. width:100%;
  7864. }
  7865. #u51104_text {
  7866. border-width:0px;
  7867. word-wrap:break-word;
  7868. text-transform:none;
  7869. }
  7870. #u51105_div {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:49px;
  7876. height:17px;
  7877. background:inherit;
  7878. background-color:rgba(255, 255, 255, 0);
  7879. border:none;
  7880. border-radius:0px;
  7881. -moz-box-shadow:none;
  7882. -webkit-box-shadow:none;
  7883. box-shadow:none;
  7884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7885. font-weight:400;
  7886. font-style:normal;
  7887. font-size:12px;
  7888. color:#AAAAAA;
  7889. }
  7890. #u51105 {
  7891. border-width:0px;
  7892. position:absolute;
  7893. left:147px;
  7894. top:533px;
  7895. width:49px;
  7896. height:17px;
  7897. display:flex;
  7898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7899. font-weight:400;
  7900. font-style:normal;
  7901. font-size:12px;
  7902. color:#AAAAAA;
  7903. }
  7904. #u51105 .text {
  7905. position:absolute;
  7906. align-self:flex-start;
  7907. padding:0px 0px 0px 0px;
  7908. box-sizing:border-box;
  7909. width:100%;
  7910. }
  7911. #u51105_text {
  7912. border-width:0px;
  7913. white-space:nowrap;
  7914. text-transform:none;
  7915. }
  7916. #u51106_div {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:0px;
  7920. top:0px;
  7921. width:97px;
  7922. height:22px;
  7923. background:inherit;
  7924. background-color:rgba(255, 255, 255, 0);
  7925. border:none;
  7926. border-radius:0px;
  7927. -moz-box-shadow:none;
  7928. -webkit-box-shadow:none;
  7929. box-shadow:none;
  7930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7931. font-weight:400;
  7932. font-style:normal;
  7933. font-size:16px;
  7934. }
  7935. #u51106 {
  7936. border-width:0px;
  7937. position:absolute;
  7938. left:147px;
  7939. top:754px;
  7940. width:97px;
  7941. height:22px;
  7942. display:flex;
  7943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7944. font-weight:400;
  7945. font-style:normal;
  7946. font-size:16px;
  7947. }
  7948. #u51106 .text {
  7949. position:absolute;
  7950. align-self:flex-start;
  7951. padding:0px 0px 0px 0px;
  7952. box-sizing:border-box;
  7953. width:100%;
  7954. }
  7955. #u51106_text {
  7956. border-width:0px;
  7957. word-wrap:break-word;
  7958. text-transform:none;
  7959. }
  7960. #u51107_img {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:0px;
  7964. top:0px;
  7965. width:201px;
  7966. height:2px;
  7967. }
  7968. #u51107 {
  7969. border-width:0px;
  7970. position:absolute;
  7971. left:120px;
  7972. top:655px;
  7973. width:200px;
  7974. height:1px;
  7975. display:flex;
  7976. }
  7977. #u51107 .text {
  7978. position:absolute;
  7979. align-self:center;
  7980. padding:2px 2px 2px 2px;
  7981. box-sizing:border-box;
  7982. width:100%;
  7983. }
  7984. #u51107_text {
  7985. border-width:0px;
  7986. word-wrap:break-word;
  7987. text-transform:none;
  7988. visibility:hidden;
  7989. }
  7990. #u51108_div {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:0px;
  7994. top:0px;
  7995. width:97px;
  7996. height:22px;
  7997. background:inherit;
  7998. background-color:rgba(255, 255, 255, 0);
  7999. border:none;
  8000. border-radius:0px;
  8001. -moz-box-shadow:none;
  8002. -webkit-box-shadow:none;
  8003. box-shadow:none;
  8004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8005. font-weight:400;
  8006. font-style:normal;
  8007. font-size:16px;
  8008. }
  8009. #u51108 {
  8010. border-width:0px;
  8011. position:absolute;
  8012. left:147px;
  8013. top:712px;
  8014. width:97px;
  8015. height:22px;
  8016. display:flex;
  8017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8018. font-weight:400;
  8019. font-style:normal;
  8020. font-size:16px;
  8021. }
  8022. #u51108 .text {
  8023. position:absolute;
  8024. align-self:flex-start;
  8025. padding:0px 0px 0px 0px;
  8026. box-sizing:border-box;
  8027. width:100%;
  8028. }
  8029. #u51108_text {
  8030. border-width:0px;
  8031. word-wrap:break-word;
  8032. text-transform:none;
  8033. }
  8034. #u51109_div {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:0px;
  8038. top:0px;
  8039. width:49px;
  8040. height:17px;
  8041. background:inherit;
  8042. background-color:rgba(255, 255, 255, 0);
  8043. border:none;
  8044. border-radius:0px;
  8045. -moz-box-shadow:none;
  8046. -webkit-box-shadow:none;
  8047. box-shadow:none;
  8048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8049. font-weight:400;
  8050. font-style:normal;
  8051. font-size:12px;
  8052. color:#AAAAAA;
  8053. }
  8054. #u51109 {
  8055. border-width:0px;
  8056. position:absolute;
  8057. left:147px;
  8058. top:676px;
  8059. width:49px;
  8060. height:17px;
  8061. display:flex;
  8062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8063. font-weight:400;
  8064. font-style:normal;
  8065. font-size:12px;
  8066. color:#AAAAAA;
  8067. }
  8068. #u51109 .text {
  8069. position:absolute;
  8070. align-self:flex-start;
  8071. padding:0px 0px 0px 0px;
  8072. box-sizing:border-box;
  8073. width:100%;
  8074. }
  8075. #u51109_text {
  8076. border-width:0px;
  8077. white-space:nowrap;
  8078. text-transform:none;
  8079. }
  8080. #u51110_div {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:0px;
  8084. top:0px;
  8085. width:97px;
  8086. height:22px;
  8087. background:inherit;
  8088. background-color:rgba(255, 255, 255, 0);
  8089. border:none;
  8090. border-radius:0px;
  8091. -moz-box-shadow:none;
  8092. -webkit-box-shadow:none;
  8093. box-shadow:none;
  8094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8095. font-weight:400;
  8096. font-style:normal;
  8097. font-size:16px;
  8098. }
  8099. #u51110 {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:147px;
  8103. top:895px;
  8104. width:97px;
  8105. height:22px;
  8106. display:flex;
  8107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8108. font-weight:400;
  8109. font-style:normal;
  8110. font-size:16px;
  8111. }
  8112. #u51110 .text {
  8113. position:absolute;
  8114. align-self:flex-start;
  8115. padding:0px 0px 0px 0px;
  8116. box-sizing:border-box;
  8117. width:100%;
  8118. }
  8119. #u51110_text {
  8120. border-width:0px;
  8121. word-wrap:break-word;
  8122. text-transform:none;
  8123. }
  8124. #u51111_div {
  8125. border-width:0px;
  8126. position:absolute;
  8127. left:0px;
  8128. top:0px;
  8129. width:97px;
  8130. height:22px;
  8131. background:inherit;
  8132. background-color:rgba(255, 255, 255, 0);
  8133. border:none;
  8134. border-radius:0px;
  8135. -moz-box-shadow:none;
  8136. -webkit-box-shadow:none;
  8137. box-shadow:none;
  8138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8139. font-weight:400;
  8140. font-style:normal;
  8141. font-size:16px;
  8142. }
  8143. #u51111 {
  8144. border-width:0px;
  8145. position:absolute;
  8146. left:147px;
  8147. top:937px;
  8148. width:97px;
  8149. height:22px;
  8150. display:flex;
  8151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8152. font-weight:400;
  8153. font-style:normal;
  8154. font-size:16px;
  8155. }
  8156. #u51111 .text {
  8157. position:absolute;
  8158. align-self:flex-start;
  8159. padding:0px 0px 0px 0px;
  8160. box-sizing:border-box;
  8161. width:100%;
  8162. }
  8163. #u51111_text {
  8164. border-width:0px;
  8165. white-space:nowrap;
  8166. text-transform:none;
  8167. }
  8168. #u51112_img {
  8169. border-width:0px;
  8170. position:absolute;
  8171. left:0px;
  8172. top:0px;
  8173. width:201px;
  8174. height:2px;
  8175. }
  8176. #u51112 {
  8177. border-width:0px;
  8178. position:absolute;
  8179. left:120px;
  8180. top:796px;
  8181. width:200px;
  8182. height:1px;
  8183. display:flex;
  8184. }
  8185. #u51112 .text {
  8186. position:absolute;
  8187. align-self:center;
  8188. padding:2px 2px 2px 2px;
  8189. box-sizing:border-box;
  8190. width:100%;
  8191. }
  8192. #u51112_text {
  8193. border-width:0px;
  8194. word-wrap:break-word;
  8195. text-transform:none;
  8196. visibility:hidden;
  8197. }
  8198. #u51113_div {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:0px;
  8202. top:0px;
  8203. width:97px;
  8204. height:22px;
  8205. background:inherit;
  8206. background-color:rgba(255, 255, 255, 0);
  8207. border:none;
  8208. border-radius:0px;
  8209. -moz-box-shadow:none;
  8210. -webkit-box-shadow:none;
  8211. box-shadow:none;
  8212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8213. font-weight:400;
  8214. font-style:normal;
  8215. font-size:16px;
  8216. }
  8217. #u51113 {
  8218. border-width:0px;
  8219. position:absolute;
  8220. left:147px;
  8221. top:853px;
  8222. width:97px;
  8223. height:22px;
  8224. display:flex;
  8225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8226. font-weight:400;
  8227. font-style:normal;
  8228. font-size:16px;
  8229. }
  8230. #u51113 .text {
  8231. position:absolute;
  8232. align-self:flex-start;
  8233. padding:0px 0px 0px 0px;
  8234. box-sizing:border-box;
  8235. width:100%;
  8236. }
  8237. #u51113_text {
  8238. border-width:0px;
  8239. word-wrap:break-word;
  8240. text-transform:none;
  8241. }
  8242. #u51114_div {
  8243. border-width:0px;
  8244. position:absolute;
  8245. left:0px;
  8246. top:0px;
  8247. width:49px;
  8248. height:17px;
  8249. background:inherit;
  8250. background-color:rgba(255, 255, 255, 0);
  8251. border:none;
  8252. border-radius:0px;
  8253. -moz-box-shadow:none;
  8254. -webkit-box-shadow:none;
  8255. box-shadow:none;
  8256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8257. font-weight:400;
  8258. font-style:normal;
  8259. font-size:12px;
  8260. color:#AAAAAA;
  8261. }
  8262. #u51114 {
  8263. border-width:0px;
  8264. position:absolute;
  8265. left:147px;
  8266. top:817px;
  8267. width:49px;
  8268. height:17px;
  8269. display:flex;
  8270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8271. font-weight:400;
  8272. font-style:normal;
  8273. font-size:12px;
  8274. color:#AAAAAA;
  8275. }
  8276. #u51114 .text {
  8277. position:absolute;
  8278. align-self:flex-start;
  8279. padding:0px 0px 0px 0px;
  8280. box-sizing:border-box;
  8281. width:100%;
  8282. }
  8283. #u51114_text {
  8284. border-width:0px;
  8285. white-space:nowrap;
  8286. text-transform:none;
  8287. }
  8288. #u51115_div {
  8289. border-width:0px;
  8290. position:absolute;
  8291. left:0px;
  8292. top:0px;
  8293. width:97px;
  8294. height:22px;
  8295. background:inherit;
  8296. background-color:rgba(255, 255, 255, 0);
  8297. border:none;
  8298. border-radius:0px;
  8299. -moz-box-shadow:none;
  8300. -webkit-box-shadow:none;
  8301. box-shadow:none;
  8302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8303. font-weight:400;
  8304. font-style:normal;
  8305. font-size:16px;
  8306. }
  8307. #u51115 {
  8308. border-width:0px;
  8309. position:absolute;
  8310. left:147px;
  8311. top:611px;
  8312. width:97px;
  8313. height:22px;
  8314. display:flex;
  8315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8316. font-weight:400;
  8317. font-style:normal;
  8318. font-size:16px;
  8319. }
  8320. #u51115 .text {
  8321. position:absolute;
  8322. align-self:flex-start;
  8323. padding:0px 0px 0px 0px;
  8324. box-sizing:border-box;
  8325. width:100%;
  8326. }
  8327. #u51115_text {
  8328. border-width:0px;
  8329. word-wrap:break-word;
  8330. text-transform:none;
  8331. }
  8332. #u51116_div {
  8333. border-width:0px;
  8334. position:absolute;
  8335. left:0px;
  8336. top:0px;
  8337. width:97px;
  8338. height:22px;
  8339. background:inherit;
  8340. background-color:rgba(255, 255, 255, 0);
  8341. border:none;
  8342. border-radius:0px;
  8343. -moz-box-shadow:none;
  8344. -webkit-box-shadow:none;
  8345. box-shadow:none;
  8346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8347. font-weight:400;
  8348. font-style:normal;
  8349. font-size:16px;
  8350. }
  8351. #u51116 {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:147px;
  8355. top:303px;
  8356. width:97px;
  8357. height:22px;
  8358. display:flex;
  8359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8360. font-weight:400;
  8361. font-style:normal;
  8362. font-size:16px;
  8363. }
  8364. #u51116 .text {
  8365. position:absolute;
  8366. align-self:flex-start;
  8367. padding:0px 0px 0px 0px;
  8368. box-sizing:border-box;
  8369. width:100%;
  8370. }
  8371. #u51116_text {
  8372. border-width:0px;
  8373. word-wrap:break-word;
  8374. text-transform:none;
  8375. }
  8376. #u51117_div {
  8377. border-width:0px;
  8378. position:absolute;
  8379. left:0px;
  8380. top:0px;
  8381. width:49px;
  8382. height:17px;
  8383. background:inherit;
  8384. background-color:rgba(255, 255, 255, 0);
  8385. border:none;
  8386. border-radius:0px;
  8387. -moz-box-shadow:none;
  8388. -webkit-box-shadow:none;
  8389. box-shadow:none;
  8390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8391. font-weight:400;
  8392. font-style:normal;
  8393. font-size:12px;
  8394. color:#AAAAAA;
  8395. }
  8396. #u51117 {
  8397. border-width:0px;
  8398. position:absolute;
  8399. left:147px;
  8400. top:267px;
  8401. width:49px;
  8402. height:17px;
  8403. display:flex;
  8404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8405. font-weight:400;
  8406. font-style:normal;
  8407. font-size:12px;
  8408. color:#AAAAAA;
  8409. }
  8410. #u51117 .text {
  8411. position:absolute;
  8412. align-self:flex-start;
  8413. padding:0px 0px 0px 0px;
  8414. box-sizing:border-box;
  8415. width:100%;
  8416. }
  8417. #u51117_text {
  8418. border-width:0px;
  8419. white-space:nowrap;
  8420. text-transform:none;
  8421. }
  8422. #u51118_div {
  8423. border-width:0px;
  8424. position:absolute;
  8425. left:0px;
  8426. top:0px;
  8427. width:97px;
  8428. height:22px;
  8429. background:inherit;
  8430. background-color:rgba(255, 255, 255, 0);
  8431. border:none;
  8432. border-radius:0px;
  8433. -moz-box-shadow:none;
  8434. -webkit-box-shadow:none;
  8435. box-shadow:none;
  8436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8437. font-weight:400;
  8438. font-style:normal;
  8439. font-size:16px;
  8440. }
  8441. #u51118 {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:147px;
  8445. top:345px;
  8446. width:97px;
  8447. height:22px;
  8448. display:flex;
  8449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8450. font-weight:400;
  8451. font-style:normal;
  8452. font-size:16px;
  8453. }
  8454. #u51118 .text {
  8455. position:absolute;
  8456. align-self:flex-start;
  8457. padding:0px 0px 0px 0px;
  8458. box-sizing:border-box;
  8459. width:100%;
  8460. }
  8461. #u51118_text {
  8462. border-width:0px;
  8463. word-wrap:break-word;
  8464. text-transform:none;
  8465. }
  8466. #u51119_img {
  8467. border-width:0px;
  8468. position:absolute;
  8469. left:0px;
  8470. top:0px;
  8471. width:201px;
  8472. height:2px;
  8473. }
  8474. #u51119 {
  8475. border-width:0px;
  8476. position:absolute;
  8477. left:120px;
  8478. top:514px;
  8479. width:200px;
  8480. height:1px;
  8481. display:flex;
  8482. }
  8483. #u51119 .text {
  8484. position:absolute;
  8485. align-self:center;
  8486. padding:2px 2px 2px 2px;
  8487. box-sizing:border-box;
  8488. width:100%;
  8489. }
  8490. #u51119_text {
  8491. border-width:0px;
  8492. word-wrap:break-word;
  8493. text-transform:none;
  8494. visibility:hidden;
  8495. }
  8496. #u51120_div {
  8497. border-width:0px;
  8498. position:absolute;
  8499. left:0px;
  8500. top:0px;
  8501. width:97px;
  8502. height:22px;
  8503. background:inherit;
  8504. background-color:rgba(255, 255, 255, 0);
  8505. border:none;
  8506. border-radius:0px;
  8507. -moz-box-shadow:none;
  8508. -webkit-box-shadow:none;
  8509. box-shadow:none;
  8510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8511. font-weight:400;
  8512. font-style:normal;
  8513. font-size:16px;
  8514. }
  8515. #u51120 {
  8516. border-width:0px;
  8517. position:absolute;
  8518. left:147px;
  8519. top:429px;
  8520. width:97px;
  8521. height:22px;
  8522. display:flex;
  8523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8524. font-weight:400;
  8525. font-style:normal;
  8526. font-size:16px;
  8527. }
  8528. #u51120 .text {
  8529. position:absolute;
  8530. align-self:flex-start;
  8531. padding:0px 0px 0px 0px;
  8532. box-sizing:border-box;
  8533. width:100%;
  8534. }
  8535. #u51120_text {
  8536. border-width:0px;
  8537. word-wrap:break-word;
  8538. text-transform:none;
  8539. }
  8540. #u51121_div {
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:0px;
  8544. top:0px;
  8545. width:97px;
  8546. height:22px;
  8547. background:inherit;
  8548. background-color:rgba(255, 255, 255, 0);
  8549. border:none;
  8550. border-radius:0px;
  8551. -moz-box-shadow:none;
  8552. -webkit-box-shadow:none;
  8553. box-shadow:none;
  8554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8555. font-weight:400;
  8556. font-style:normal;
  8557. font-size:16px;
  8558. }
  8559. #u51121 {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:147px;
  8563. top:471px;
  8564. width:97px;
  8565. height:22px;
  8566. display:flex;
  8567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8568. font-weight:400;
  8569. font-style:normal;
  8570. font-size:16px;
  8571. }
  8572. #u51121 .text {
  8573. position:absolute;
  8574. align-self:flex-start;
  8575. padding:0px 0px 0px 0px;
  8576. box-sizing:border-box;
  8577. width:100%;
  8578. }
  8579. #u51121_text {
  8580. border-width:0px;
  8581. white-space:nowrap;
  8582. text-transform:none;
  8583. }
  8584. #u51122_div {
  8585. border-width:0px;
  8586. position:absolute;
  8587. left:0px;
  8588. top:0px;
  8589. width:79px;
  8590. height:30px;
  8591. background:inherit;
  8592. background-color:rgba(255, 255, 255, 1);
  8593. box-sizing:border-box;
  8594. border-width:1px;
  8595. border-style:solid;
  8596. border-color:rgba(170, 170, 170, 1);
  8597. border-radius:4px;
  8598. -moz-box-shadow:none;
  8599. -webkit-box-shadow:none;
  8600. box-shadow:none;
  8601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8602. font-weight:400;
  8603. font-style:normal;
  8604. font-size:12px;
  8605. color:#555555;
  8606. }
  8607. #u51122 {
  8608. border-width:0px;
  8609. position:absolute;
  8610. left:1495px;
  8611. top:60px;
  8612. width:79px;
  8613. height:30px;
  8614. display:flex;
  8615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8616. font-weight:400;
  8617. font-style:normal;
  8618. font-size:12px;
  8619. color:#555555;
  8620. }
  8621. #u51122 .text {
  8622. position:absolute;
  8623. align-self:center;
  8624. padding:5px 15px 5px 15px;
  8625. box-sizing:border-box;
  8626. width:100%;
  8627. }
  8628. #u51122_text {
  8629. border-width:0px;
  8630. white-space:nowrap;
  8631. text-transform:none;
  8632. }
  8633. #u51123 {
  8634. border-width:0px;
  8635. position:absolute;
  8636. left:0px;
  8637. top:0px;
  8638. width:0px;
  8639. height:0px;
  8640. }
  8641. #u51124_div {
  8642. border-width:0px;
  8643. position:absolute;
  8644. left:0px;
  8645. top:0px;
  8646. width:100px;
  8647. height:100px;
  8648. background:inherit;
  8649. background-color:rgba(255, 255, 255, 1);
  8650. box-sizing:border-box;
  8651. border-width:1px;
  8652. border-style:solid;
  8653. border-color:rgba(242, 242, 242, 1);
  8654. border-radius:4px;
  8655. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8656. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8657. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8659. font-weight:400;
  8660. font-style:normal;
  8661. font-size:14px;
  8662. text-align:left;
  8663. }
  8664. #u51124 {
  8665. border-width:0px;
  8666. position:absolute;
  8667. left:1461px;
  8668. top:83px;
  8669. width:100px;
  8670. height:100px;
  8671. display:flex;
  8672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8673. font-weight:400;
  8674. font-style:normal;
  8675. font-size:14px;
  8676. text-align:left;
  8677. }
  8678. #u51124 .text {
  8679. position:absolute;
  8680. align-self:center;
  8681. padding:2px 2px 2px 2px;
  8682. box-sizing:border-box;
  8683. width:100%;
  8684. }
  8685. #u51124_text {
  8686. border-width:0px;
  8687. word-wrap:break-word;
  8688. text-transform:none;
  8689. visibility:hidden;
  8690. }
  8691. #u51125_div {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:0px;
  8695. top:0px;
  8696. width:83px;
  8697. height:40px;
  8698. background:inherit;
  8699. background-color:rgba(255, 255, 255, 1);
  8700. box-sizing:border-box;
  8701. border-width:1px;
  8702. border-style:solid;
  8703. border-color:rgba(215, 215, 215, 1);
  8704. border-left:0px;
  8705. border-top:0px;
  8706. border-right:0px;
  8707. border-radius:0px;
  8708. border-bottom-right-radius:0px;
  8709. border-bottom-left-radius:0px;
  8710. -moz-box-shadow:none;
  8711. -webkit-box-shadow:none;
  8712. box-shadow:none;
  8713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8714. font-weight:400;
  8715. font-style:normal;
  8716. font-size:14px;
  8717. }
  8718. #u51125 {
  8719. border-width:0px;
  8720. position:absolute;
  8721. left:1469px;
  8722. top:93px;
  8723. width:83px;
  8724. height:40px;
  8725. display:flex;
  8726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8727. font-weight:400;
  8728. font-style:normal;
  8729. font-size:14px;
  8730. }
  8731. #u51125 .text {
  8732. position:absolute;
  8733. align-self:center;
  8734. padding:2px 2px 2px 2px;
  8735. box-sizing:border-box;
  8736. width:100%;
  8737. }
  8738. #u51125_text {
  8739. border-width:0px;
  8740. word-wrap:break-word;
  8741. text-transform:none;
  8742. }
  8743. #u51126_div {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:0px;
  8747. top:0px;
  8748. width:83px;
  8749. height:40px;
  8750. background:inherit;
  8751. background-color:rgba(255, 255, 255, 1);
  8752. border:none;
  8753. border-left:0px;
  8754. border-top:0px;
  8755. border-right:0px;
  8756. border-radius:0px;
  8757. border-bottom-right-radius:0px;
  8758. border-bottom-left-radius:0px;
  8759. -moz-box-shadow:none;
  8760. -webkit-box-shadow:none;
  8761. box-shadow:none;
  8762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8763. font-weight:400;
  8764. font-style:normal;
  8765. font-size:14px;
  8766. }
  8767. #u51126 {
  8768. border-width:0px;
  8769. position:absolute;
  8770. left:1469px;
  8771. top:133px;
  8772. width:83px;
  8773. height:40px;
  8774. display:flex;
  8775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8776. font-weight:400;
  8777. font-style:normal;
  8778. font-size:14px;
  8779. }
  8780. #u51126 .text {
  8781. position:absolute;
  8782. align-self:center;
  8783. padding:2px 2px 2px 2px;
  8784. box-sizing:border-box;
  8785. width:100%;
  8786. }
  8787. #u51126_text {
  8788. border-width:0px;
  8789. word-wrap:break-word;
  8790. text-transform:none;
  8791. }
  8792. #u51127 {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:0px;
  8796. top:0px;
  8797. width:0px;
  8798. height:0px;
  8799. }
  8800. #u51128 {
  8801. border-width:0px;
  8802. position:absolute;
  8803. left:0px;
  8804. top:0px;
  8805. width:0px;
  8806. height:0px;
  8807. }
  8808. #u51129_div {
  8809. border-width:0px;
  8810. position:absolute;
  8811. left:0px;
  8812. top:0px;
  8813. width:380px;
  8814. height:164px;
  8815. background:inherit;
  8816. background-color:rgba(255, 255, 255, 1);
  8817. border:none;
  8818. border-radius:4px;
  8819. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8820. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8821. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8822. font-family:'Microsoft YaHei', sans-serif;
  8823. font-weight:400;
  8824. font-style:normal;
  8825. }
  8826. #u51129 {
  8827. border-width:0px;
  8828. position:absolute;
  8829. left:1655px;
  8830. top:64px;
  8831. width:380px;
  8832. height:164px;
  8833. display:flex;
  8834. font-family:'Microsoft YaHei', sans-serif;
  8835. font-weight:400;
  8836. font-style:normal;
  8837. }
  8838. #u51129 .text {
  8839. position:absolute;
  8840. align-self:center;
  8841. padding:2px 2px 2px 2px;
  8842. box-sizing:border-box;
  8843. width:100%;
  8844. }
  8845. #u51129_text {
  8846. border-width:0px;
  8847. word-wrap:break-word;
  8848. text-transform:none;
  8849. visibility:hidden;
  8850. }
  8851. #u51130_div {
  8852. border-width:0px;
  8853. position:absolute;
  8854. left:0px;
  8855. top:0px;
  8856. width:299px;
  8857. height:44px;
  8858. background:inherit;
  8859. background-color:rgba(255, 255, 255, 0);
  8860. border:none;
  8861. border-radius:0px;
  8862. -moz-box-shadow:none;
  8863. -webkit-box-shadow:none;
  8864. box-shadow:none;
  8865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8866. font-weight:400;
  8867. font-style:normal;
  8868. font-size:14px;
  8869. color:#666666;
  8870. line-height:22px;
  8871. }
  8872. #u51130 {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:1715px;
  8876. top:119px;
  8877. width:299px;
  8878. height:44px;
  8879. display:flex;
  8880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8881. font-weight:400;
  8882. font-style:normal;
  8883. font-size:14px;
  8884. color:#666666;
  8885. line-height:22px;
  8886. }
  8887. #u51130 .text {
  8888. position:absolute;
  8889. align-self:flex-start;
  8890. padding:0px 0px 0px 0px;
  8891. box-sizing:border-box;
  8892. width:100%;
  8893. }
  8894. #u51130_text {
  8895. border-width:0px;
  8896. word-wrap:break-word;
  8897. text-transform:none;
  8898. }
  8899. #u51131_div {
  8900. border-width:0px;
  8901. position:absolute;
  8902. left:0px;
  8903. top:0px;
  8904. width:199px;
  8905. height:21px;
  8906. background:inherit;
  8907. background-color:rgba(255, 255, 255, 0);
  8908. border:none;
  8909. border-radius:0px;
  8910. -moz-box-shadow:none;
  8911. -webkit-box-shadow:none;
  8912. box-shadow:none;
  8913. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8914. font-weight:650;
  8915. font-style:normal;
  8916. font-size:18px;
  8917. color:#000000;
  8918. line-height:22px;
  8919. }
  8920. #u51131 {
  8921. border-width:0px;
  8922. position:absolute;
  8923. left:1715px;
  8924. top:89px;
  8925. width:199px;
  8926. height:21px;
  8927. display:flex;
  8928. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8929. font-weight:650;
  8930. font-style:normal;
  8931. font-size:18px;
  8932. color:#000000;
  8933. line-height:22px;
  8934. }
  8935. #u51131 .text {
  8936. position:absolute;
  8937. align-self:flex-start;
  8938. padding:0px 0px 0px 0px;
  8939. box-sizing:border-box;
  8940. width:100%;
  8941. }
  8942. #u51131_text {
  8943. border-width:0px;
  8944. white-space:nowrap;
  8945. text-transform:none;
  8946. }
  8947. #u51132_div {
  8948. border-width:0px;
  8949. position:absolute;
  8950. left:0px;
  8951. top:0px;
  8952. width:61px;
  8953. height:32px;
  8954. background:inherit;
  8955. background-color:rgba(24, 144, 255, 1);
  8956. border:none;
  8957. border-radius:4px;
  8958. -moz-box-shadow:none;
  8959. -webkit-box-shadow:none;
  8960. box-shadow:none;
  8961. font-family:'Microsoft YaHei', sans-serif;
  8962. font-weight:400;
  8963. font-style:normal;
  8964. font-size:14px;
  8965. color:#FFFFFF;
  8966. }
  8967. #u51132 {
  8968. border-width:0px;
  8969. position:absolute;
  8970. left:1957px;
  8971. top:179px;
  8972. width:61px;
  8973. height:32px;
  8974. display:flex;
  8975. font-family:'Microsoft YaHei', sans-serif;
  8976. font-weight:400;
  8977. font-style:normal;
  8978. font-size:14px;
  8979. color:#FFFFFF;
  8980. }
  8981. #u51132 .text {
  8982. position:absolute;
  8983. align-self:center;
  8984. padding:2px 16px 2px 16px;
  8985. box-sizing:border-box;
  8986. width:100%;
  8987. }
  8988. #u51132_text {
  8989. border-width:0px;
  8990. white-space:nowrap;
  8991. text-transform:none;
  8992. }
  8993. #u51133_div {
  8994. border-width:0px;
  8995. position:absolute;
  8996. left:0px;
  8997. top:0px;
  8998. width:66px;
  8999. height:32px;
  9000. background:inherit;
  9001. background-color:rgba(255, 255, 255, 1);
  9002. box-sizing:border-box;
  9003. border-width:1px;
  9004. border-style:solid;
  9005. border-color:rgba(217, 217, 217, 1);
  9006. border-radius:4px;
  9007. -moz-box-shadow:none;
  9008. -webkit-box-shadow:none;
  9009. box-shadow:none;
  9010. font-family:'Microsoft YaHei', sans-serif;
  9011. font-weight:400;
  9012. font-style:normal;
  9013. font-size:14px;
  9014. color:rgba(0, 0, 0, 0.647058823529412);
  9015. line-height:21px;
  9016. }
  9017. #u51133 {
  9018. border-width:0px;
  9019. position:absolute;
  9020. left:1875px;
  9021. top:179px;
  9022. width:66px;
  9023. height:32px;
  9024. display:flex;
  9025. font-family:'Microsoft YaHei', sans-serif;
  9026. font-weight:400;
  9027. font-style:normal;
  9028. font-size:14px;
  9029. color:rgba(0, 0, 0, 0.647058823529412);
  9030. line-height:21px;
  9031. }
  9032. #u51133 .text {
  9033. position:absolute;
  9034. align-self:center;
  9035. padding:2px 16px 2px 16px;
  9036. box-sizing:border-box;
  9037. width:100%;
  9038. }
  9039. #u51133_text {
  9040. border-width:0px;
  9041. white-space:nowrap;
  9042. text-transform:none;
  9043. }
  9044. #u51134_img {
  9045. border-width:0px;
  9046. position:absolute;
  9047. left:0px;
  9048. top:0px;
  9049. width:20px;
  9050. height:20px;
  9051. }
  9052. #u51134 {
  9053. border-width:0px;
  9054. position:absolute;
  9055. left:1684px;
  9056. top:93px;
  9057. width:20px;
  9058. height:20px;
  9059. display:flex;
  9060. }
  9061. #u51134 .text {
  9062. position:absolute;
  9063. align-self:center;
  9064. padding:2px 2px 2px 2px;
  9065. box-sizing:border-box;
  9066. width:100%;
  9067. }
  9068. #u51134_text {
  9069. border-width:0px;
  9070. word-wrap:break-word;
  9071. text-transform:none;
  9072. visibility:hidden;
  9073. }
  9074. #u51135 {
  9075. border-width:0px;
  9076. position:absolute;
  9077. left:0px;
  9078. top:0px;
  9079. width:0px;
  9080. height:0px;
  9081. }
  9082. #u51136 {
  9083. border-width:0px;
  9084. position:absolute;
  9085. left:0px;
  9086. top:0px;
  9087. width:0px;
  9088. height:0px;
  9089. }
  9090. #u51137_div {
  9091. border-width:0px;
  9092. position:absolute;
  9093. left:0px;
  9094. top:0px;
  9095. width:380px;
  9096. height:164px;
  9097. background:inherit;
  9098. background-color:rgba(255, 255, 255, 1);
  9099. border:none;
  9100. border-radius:4px;
  9101. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9102. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9103. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9104. font-family:'Microsoft YaHei', sans-serif;
  9105. font-weight:400;
  9106. font-style:normal;
  9107. }
  9108. #u51137 {
  9109. border-width:0px;
  9110. position:absolute;
  9111. left:1655px;
  9112. top:254px;
  9113. width:380px;
  9114. height:164px;
  9115. display:flex;
  9116. font-family:'Microsoft YaHei', sans-serif;
  9117. font-weight:400;
  9118. font-style:normal;
  9119. }
  9120. #u51137 .text {
  9121. position:absolute;
  9122. align-self:center;
  9123. padding:2px 2px 2px 2px;
  9124. box-sizing:border-box;
  9125. width:100%;
  9126. }
  9127. #u51137_text {
  9128. border-width:0px;
  9129. word-wrap:break-word;
  9130. text-transform:none;
  9131. visibility:hidden;
  9132. }
  9133. #u51138_div {
  9134. border-width:0px;
  9135. position:absolute;
  9136. left:0px;
  9137. top:0px;
  9138. width:299px;
  9139. height:44px;
  9140. background:inherit;
  9141. background-color:rgba(255, 255, 255, 0);
  9142. border:none;
  9143. border-radius:0px;
  9144. -moz-box-shadow:none;
  9145. -webkit-box-shadow:none;
  9146. box-shadow:none;
  9147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9148. font-weight:400;
  9149. font-style:normal;
  9150. font-size:14px;
  9151. color:#666666;
  9152. line-height:22px;
  9153. }
  9154. #u51138 {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:1715px;
  9158. top:309px;
  9159. width:299px;
  9160. height:44px;
  9161. display:flex;
  9162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9163. font-weight:400;
  9164. font-style:normal;
  9165. font-size:14px;
  9166. color:#666666;
  9167. line-height:22px;
  9168. }
  9169. #u51138 .text {
  9170. position:absolute;
  9171. align-self:flex-start;
  9172. padding:0px 0px 0px 0px;
  9173. box-sizing:border-box;
  9174. width:100%;
  9175. }
  9176. #u51138_text {
  9177. border-width:0px;
  9178. word-wrap:break-word;
  9179. text-transform:none;
  9180. }
  9181. #u51139_div {
  9182. border-width:0px;
  9183. position:absolute;
  9184. left:0px;
  9185. top:0px;
  9186. width:199px;
  9187. height:21px;
  9188. background:inherit;
  9189. background-color:rgba(255, 255, 255, 0);
  9190. border:none;
  9191. border-radius:0px;
  9192. -moz-box-shadow:none;
  9193. -webkit-box-shadow:none;
  9194. box-shadow:none;
  9195. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9196. font-weight:650;
  9197. font-style:normal;
  9198. font-size:18px;
  9199. color:#000000;
  9200. line-height:22px;
  9201. }
  9202. #u51139 {
  9203. border-width:0px;
  9204. position:absolute;
  9205. left:1715px;
  9206. top:279px;
  9207. width:199px;
  9208. height:21px;
  9209. display:flex;
  9210. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9211. font-weight:650;
  9212. font-style:normal;
  9213. font-size:18px;
  9214. color:#000000;
  9215. line-height:22px;
  9216. }
  9217. #u51139 .text {
  9218. position:absolute;
  9219. align-self:flex-start;
  9220. padding:0px 0px 0px 0px;
  9221. box-sizing:border-box;
  9222. width:100%;
  9223. }
  9224. #u51139_text {
  9225. border-width:0px;
  9226. white-space:nowrap;
  9227. text-transform:none;
  9228. }
  9229. #u51140_div {
  9230. border-width:0px;
  9231. position:absolute;
  9232. left:0px;
  9233. top:0px;
  9234. width:61px;
  9235. height:32px;
  9236. background:inherit;
  9237. background-color:rgba(24, 144, 255, 1);
  9238. border:none;
  9239. border-radius:4px;
  9240. -moz-box-shadow:none;
  9241. -webkit-box-shadow:none;
  9242. box-shadow:none;
  9243. font-family:'Microsoft YaHei', sans-serif;
  9244. font-weight:400;
  9245. font-style:normal;
  9246. font-size:14px;
  9247. color:#FFFFFF;
  9248. }
  9249. #u51140 {
  9250. border-width:0px;
  9251. position:absolute;
  9252. left:1957px;
  9253. top:369px;
  9254. width:61px;
  9255. height:32px;
  9256. display:flex;
  9257. font-family:'Microsoft YaHei', sans-serif;
  9258. font-weight:400;
  9259. font-style:normal;
  9260. font-size:14px;
  9261. color:#FFFFFF;
  9262. }
  9263. #u51140 .text {
  9264. position:absolute;
  9265. align-self:center;
  9266. padding:2px 16px 2px 16px;
  9267. box-sizing:border-box;
  9268. width:100%;
  9269. }
  9270. #u51140_text {
  9271. border-width:0px;
  9272. white-space:nowrap;
  9273. text-transform:none;
  9274. }
  9275. #u51141_div {
  9276. border-width:0px;
  9277. position:absolute;
  9278. left:0px;
  9279. top:0px;
  9280. width:66px;
  9281. height:32px;
  9282. background:inherit;
  9283. background-color:rgba(255, 255, 255, 1);
  9284. box-sizing:border-box;
  9285. border-width:1px;
  9286. border-style:solid;
  9287. border-color:rgba(217, 217, 217, 1);
  9288. border-radius:4px;
  9289. -moz-box-shadow:none;
  9290. -webkit-box-shadow:none;
  9291. box-shadow:none;
  9292. font-family:'Microsoft YaHei', sans-serif;
  9293. font-weight:400;
  9294. font-style:normal;
  9295. font-size:14px;
  9296. color:rgba(0, 0, 0, 0.647058823529412);
  9297. line-height:21px;
  9298. }
  9299. #u51141 {
  9300. border-width:0px;
  9301. position:absolute;
  9302. left:1875px;
  9303. top:369px;
  9304. width:66px;
  9305. height:32px;
  9306. display:flex;
  9307. font-family:'Microsoft YaHei', sans-serif;
  9308. font-weight:400;
  9309. font-style:normal;
  9310. font-size:14px;
  9311. color:rgba(0, 0, 0, 0.647058823529412);
  9312. line-height:21px;
  9313. }
  9314. #u51141 .text {
  9315. position:absolute;
  9316. align-self:center;
  9317. padding:2px 16px 2px 16px;
  9318. box-sizing:border-box;
  9319. width:100%;
  9320. }
  9321. #u51141_text {
  9322. border-width:0px;
  9323. white-space:nowrap;
  9324. text-transform:none;
  9325. }
  9326. #u51142_img {
  9327. border-width:0px;
  9328. position:absolute;
  9329. left:0px;
  9330. top:0px;
  9331. width:20px;
  9332. height:20px;
  9333. }
  9334. #u51142 {
  9335. border-width:0px;
  9336. position:absolute;
  9337. left:1684px;
  9338. top:283px;
  9339. width:20px;
  9340. height:20px;
  9341. display:flex;
  9342. }
  9343. #u51142 .text {
  9344. position:absolute;
  9345. align-self:center;
  9346. padding:2px 2px 2px 2px;
  9347. box-sizing:border-box;
  9348. width:100%;
  9349. }
  9350. #u51142_text {
  9351. border-width:0px;
  9352. word-wrap:break-word;
  9353. text-transform:none;
  9354. visibility:hidden;
  9355. }
  9356. #u51143 {
  9357. border-width:0px;
  9358. position:absolute;
  9359. left:0px;
  9360. top:0px;
  9361. width:0px;
  9362. height:0px;
  9363. }
  9364. #u51144_div {
  9365. border-width:0px;
  9366. position:absolute;
  9367. left:0px;
  9368. top:0px;
  9369. width:140px;
  9370. height:30px;
  9371. background:inherit;
  9372. background-color:rgba(255, 255, 255, 1);
  9373. box-sizing:border-box;
  9374. border-width:1px;
  9375. border-style:solid;
  9376. border-color:rgba(215, 215, 215, 1);
  9377. border-radius:4px;
  9378. -moz-box-shadow:none;
  9379. -webkit-box-shadow:none;
  9380. box-shadow:none;
  9381. font-size:11px;
  9382. }
  9383. #u51144 {
  9384. border-width:0px;
  9385. position:absolute;
  9386. left:1100px;
  9387. top:105px;
  9388. width:140px;
  9389. height:30px;
  9390. display:flex;
  9391. font-size:11px;
  9392. }
  9393. #u51144 .text {
  9394. position:absolute;
  9395. align-self:center;
  9396. padding:2px 2px 2px 2px;
  9397. box-sizing:border-box;
  9398. width:100%;
  9399. }
  9400. #u51144_text {
  9401. border-width:0px;
  9402. word-wrap:break-word;
  9403. text-transform:none;
  9404. visibility:hidden;
  9405. }
  9406. #u51145_input {
  9407. position:absolute;
  9408. left:0px;
  9409. top:0px;
  9410. width:120px;
  9411. height:23px;
  9412. padding:2px 2px 2px 2px;
  9413. font-family:'ArialMT', 'Arial', sans-serif;
  9414. font-weight:400;
  9415. font-style:normal;
  9416. font-size:11px;
  9417. letter-spacing:normal;
  9418. color:#AAAAAA;
  9419. vertical-align:none;
  9420. text-align:left;
  9421. text-transform:none;
  9422. background-color:transparent;
  9423. border-color:transparent;
  9424. }
  9425. #u51145_input.disabled {
  9426. position:absolute;
  9427. left:0px;
  9428. top:0px;
  9429. width:120px;
  9430. height:23px;
  9431. padding:2px 2px 2px 2px;
  9432. font-family:'ArialMT', 'Arial', sans-serif;
  9433. font-weight:400;
  9434. font-style:normal;
  9435. font-size:11px;
  9436. letter-spacing:normal;
  9437. color:#AAAAAA;
  9438. vertical-align:none;
  9439. text-align:left;
  9440. text-transform:none;
  9441. background-color:transparent;
  9442. border-color:transparent;
  9443. }
  9444. #u51145_div {
  9445. border-width:0px;
  9446. position:absolute;
  9447. left:0px;
  9448. top:0px;
  9449. width:120px;
  9450. height:23px;
  9451. background:inherit;
  9452. background-color:rgba(255, 255, 255, 1);
  9453. border:none;
  9454. border-radius:0px;
  9455. -moz-box-shadow:none;
  9456. -webkit-box-shadow:none;
  9457. box-shadow:none;
  9458. font-size:11px;
  9459. color:#AAAAAA;
  9460. }
  9461. #u51145 {
  9462. border-width:0px;
  9463. position:absolute;
  9464. left:1107px;
  9465. top:107px;
  9466. width:120px;
  9467. height:23px;
  9468. display:flex;
  9469. font-size:11px;
  9470. color:#AAAAAA;
  9471. }
  9472. #u51145 .text {
  9473. position:absolute;
  9474. align-self:flex-start;
  9475. padding:2px 2px 2px 2px;
  9476. box-sizing:border-box;
  9477. width:100%;
  9478. }
  9479. #u51145_div.disabled {
  9480. border-width:0px;
  9481. position:absolute;
  9482. left:0px;
  9483. top:0px;
  9484. width:120px;
  9485. height:23px;
  9486. background:inherit;
  9487. background-color:rgba(240, 240, 240, 1);
  9488. border:none;
  9489. border-radius:0px;
  9490. -moz-box-shadow:none;
  9491. -webkit-box-shadow:none;
  9492. box-shadow:none;
  9493. font-size:11px;
  9494. color:#AAAAAA;
  9495. }
  9496. #u51145.disabled {
  9497. }
  9498. .u51145_input_option {
  9499. font-size:11px;
  9500. }
  9501. #u51146_div {
  9502. border-width:0px;
  9503. position:absolute;
  9504. left:0px;
  9505. top:0px;
  9506. width:87px;
  9507. height:30px;
  9508. background:inherit;
  9509. background-color:rgba(24, 144, 255, 1);
  9510. border:none;
  9511. border-radius:4px;
  9512. -moz-box-shadow:none;
  9513. -webkit-box-shadow:none;
  9514. box-shadow:none;
  9515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9516. font-weight:400;
  9517. font-style:normal;
  9518. font-size:14px;
  9519. color:#FFFFFF;
  9520. }
  9521. #u51146 {
  9522. border-width:0px;
  9523. position:absolute;
  9524. left:427px;
  9525. top:154px;
  9526. width:87px;
  9527. height:30px;
  9528. display:flex;
  9529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9530. font-weight:400;
  9531. font-style:normal;
  9532. font-size:14px;
  9533. color:#FFFFFF;
  9534. }
  9535. #u51146 .text {
  9536. position:absolute;
  9537. align-self:center;
  9538. padding:5px 15px 5px 15px;
  9539. box-sizing:border-box;
  9540. width:100%;
  9541. }
  9542. #u51146_text {
  9543. border-width:0px;
  9544. white-space:nowrap;
  9545. text-transform:none;
  9546. }
  9547. #u51147 {
  9548. border-width:0px;
  9549. position:absolute;
  9550. left:0px;
  9551. top:0px;
  9552. width:0px;
  9553. height:0px;
  9554. }
  9555. #u51148_div {
  9556. border-width:0px;
  9557. position:absolute;
  9558. left:0px;
  9559. top:0px;
  9560. width:100px;
  9561. height:100px;
  9562. background:inherit;
  9563. background-color:rgba(255, 255, 255, 1);
  9564. box-sizing:border-box;
  9565. border-width:1px;
  9566. border-style:solid;
  9567. border-color:rgba(242, 242, 242, 1);
  9568. border-radius:4px;
  9569. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9570. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9571. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9573. font-weight:400;
  9574. font-style:normal;
  9575. font-size:14px;
  9576. text-align:left;
  9577. }
  9578. #u51148 {
  9579. border-width:0px;
  9580. position:absolute;
  9581. left:1427px;
  9582. top:350px;
  9583. width:100px;
  9584. height:100px;
  9585. display:flex;
  9586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9587. font-weight:400;
  9588. font-style:normal;
  9589. font-size:14px;
  9590. text-align:left;
  9591. }
  9592. #u51148 .text {
  9593. position:absolute;
  9594. align-self:center;
  9595. padding:2px 2px 2px 2px;
  9596. box-sizing:border-box;
  9597. width:100%;
  9598. }
  9599. #u51148_text {
  9600. border-width:0px;
  9601. word-wrap:break-word;
  9602. text-transform:none;
  9603. visibility:hidden;
  9604. }
  9605. #u51149_div {
  9606. border-width:0px;
  9607. position:absolute;
  9608. left:0px;
  9609. top:0px;
  9610. width:83px;
  9611. height:40px;
  9612. background:inherit;
  9613. background-color:rgba(255, 255, 255, 1);
  9614. box-sizing:border-box;
  9615. border-width:1px;
  9616. border-style:solid;
  9617. border-color:rgba(215, 215, 215, 1);
  9618. border-left:0px;
  9619. border-top:0px;
  9620. border-right:0px;
  9621. border-radius:0px;
  9622. border-bottom-right-radius:0px;
  9623. border-bottom-left-radius:0px;
  9624. -moz-box-shadow:none;
  9625. -webkit-box-shadow:none;
  9626. box-shadow:none;
  9627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9628. font-weight:400;
  9629. font-style:normal;
  9630. font-size:14px;
  9631. }
  9632. #u51149 {
  9633. border-width:0px;
  9634. position:absolute;
  9635. left:1435px;
  9636. top:360px;
  9637. width:83px;
  9638. height:40px;
  9639. display:flex;
  9640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9641. font-weight:400;
  9642. font-style:normal;
  9643. font-size:14px;
  9644. }
  9645. #u51149 .text {
  9646. position:absolute;
  9647. align-self:center;
  9648. padding:2px 2px 2px 2px;
  9649. box-sizing:border-box;
  9650. width:100%;
  9651. }
  9652. #u51149_text {
  9653. border-width:0px;
  9654. word-wrap:break-word;
  9655. text-transform:none;
  9656. }
  9657. #u51150_div {
  9658. border-width:0px;
  9659. position:absolute;
  9660. left:0px;
  9661. top:0px;
  9662. width:83px;
  9663. height:40px;
  9664. background:inherit;
  9665. background-color:rgba(255, 255, 255, 1);
  9666. border:none;
  9667. border-left:0px;
  9668. border-top:0px;
  9669. border-right:0px;
  9670. border-radius:0px;
  9671. border-bottom-right-radius:0px;
  9672. border-bottom-left-radius:0px;
  9673. -moz-box-shadow:none;
  9674. -webkit-box-shadow:none;
  9675. box-shadow:none;
  9676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9677. font-weight:400;
  9678. font-style:normal;
  9679. font-size:14px;
  9680. }
  9681. #u51150 {
  9682. border-width:0px;
  9683. position:absolute;
  9684. left:1435px;
  9685. top:400px;
  9686. width:83px;
  9687. height:40px;
  9688. display:flex;
  9689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9690. font-weight:400;
  9691. font-style:normal;
  9692. font-size:14px;
  9693. }
  9694. #u51150 .text {
  9695. position:absolute;
  9696. align-self:center;
  9697. padding:2px 2px 2px 2px;
  9698. box-sizing:border-box;
  9699. width:100%;
  9700. }
  9701. #u51150_text {
  9702. border-width:0px;
  9703. word-wrap:break-word;
  9704. text-transform:none;
  9705. }
  9706. #u51151 {
  9707. border-width:0px;
  9708. position:absolute;
  9709. left:0px;
  9710. top:0px;
  9711. width:0px;
  9712. height:0px;
  9713. }
  9714. #u51152_div {
  9715. border-width:0px;
  9716. position:absolute;
  9717. left:0px;
  9718. top:0px;
  9719. width:640px;
  9720. height:466px;
  9721. background:inherit;
  9722. background-color:rgba(255, 255, 255, 1);
  9723. box-sizing:border-box;
  9724. border-width:1px;
  9725. border-style:solid;
  9726. border-color:rgba(215, 215, 215, 1);
  9727. border-radius:0px;
  9728. -moz-box-shadow:none;
  9729. -webkit-box-shadow:none;
  9730. box-shadow:none;
  9731. }
  9732. #u51152 {
  9733. border-width:0px;
  9734. position:absolute;
  9735. left:600px;
  9736. top:392px;
  9737. width:640px;
  9738. height:466px;
  9739. display:flex;
  9740. }
  9741. #u51152 .text {
  9742. position:absolute;
  9743. align-self:center;
  9744. padding:2px 2px 2px 2px;
  9745. box-sizing:border-box;
  9746. width:100%;
  9747. }
  9748. #u51152_text {
  9749. border-width:0px;
  9750. word-wrap:break-word;
  9751. text-transform:none;
  9752. visibility:hidden;
  9753. }
  9754. #u51153_div {
  9755. border-width:0px;
  9756. position:absolute;
  9757. left:0px;
  9758. top:0px;
  9759. width:73px;
  9760. height:30px;
  9761. background:inherit;
  9762. background-color:rgba(255, 255, 255, 0);
  9763. border:none;
  9764. border-radius:0px;
  9765. -moz-box-shadow:none;
  9766. -webkit-box-shadow:none;
  9767. box-shadow:none;
  9768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9769. font-weight:400;
  9770. font-style:normal;
  9771. font-size:18px;
  9772. color:#000000;
  9773. line-height:30px;
  9774. }
  9775. #u51153 {
  9776. border-width:0px;
  9777. position:absolute;
  9778. left:620px;
  9779. top:412px;
  9780. width:73px;
  9781. height:30px;
  9782. display:flex;
  9783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9784. font-weight:400;
  9785. font-style:normal;
  9786. font-size:18px;
  9787. color:#000000;
  9788. line-height:30px;
  9789. }
  9790. #u51153 .text {
  9791. position:absolute;
  9792. align-self:flex-start;
  9793. padding:0px 0px 0px 0px;
  9794. box-sizing:border-box;
  9795. width:100%;
  9796. }
  9797. #u51153_text {
  9798. border-width:0px;
  9799. white-space:nowrap;
  9800. text-transform:none;
  9801. }
  9802. #u51154 {
  9803. border-width:0px;
  9804. position:absolute;
  9805. left:0px;
  9806. top:0px;
  9807. width:0px;
  9808. height:0px;
  9809. }
  9810. #u51155_div {
  9811. border-width:0px;
  9812. position:absolute;
  9813. left:0px;
  9814. top:0px;
  9815. width:40px;
  9816. height:40px;
  9817. background:inherit;
  9818. background-color:rgba(255, 255, 255, 0);
  9819. border:none;
  9820. border-top:0px;
  9821. border-right:0px;
  9822. border-bottom:0px;
  9823. border-radius:0px;
  9824. border-top-left-radius:0px;
  9825. border-bottom-left-radius:0px;
  9826. -moz-box-shadow:none;
  9827. -webkit-box-shadow:none;
  9828. box-shadow:none;
  9829. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9830. font-weight:500;
  9831. font-style:normal;
  9832. font-size:18px;
  9833. text-align:center;
  9834. }
  9835. #u51155 {
  9836. border-width:0px;
  9837. position:absolute;
  9838. left:1200px;
  9839. top:392px;
  9840. width:40px;
  9841. height:40px;
  9842. display:flex;
  9843. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9844. font-weight:500;
  9845. font-style:normal;
  9846. font-size:18px;
  9847. text-align:center;
  9848. }
  9849. #u51155 .text {
  9850. position:absolute;
  9851. align-self:center;
  9852. padding:5px 10px 5px 0px;
  9853. box-sizing:border-box;
  9854. width:100%;
  9855. }
  9856. #u51155_text {
  9857. border-width:0px;
  9858. word-wrap:break-word;
  9859. text-transform:none;
  9860. }
  9861. #u51156_img {
  9862. border-width:0px;
  9863. position:absolute;
  9864. left:0px;
  9865. top:0px;
  9866. width:13px;
  9867. height:17px;
  9868. }
  9869. #u51156 {
  9870. border-width:0px;
  9871. position:absolute;
  9872. left:1187px;
  9873. top:404px;
  9874. width:13px;
  9875. height:17px;
  9876. display:flex;
  9877. }
  9878. #u51156 .text {
  9879. position:absolute;
  9880. align-self:center;
  9881. padding:2px 2px 2px 2px;
  9882. box-sizing:border-box;
  9883. width:100%;
  9884. }
  9885. #u51156_text {
  9886. border-width:0px;
  9887. word-wrap:break-word;
  9888. text-transform:none;
  9889. visibility:hidden;
  9890. }
  9891. #u51157 {
  9892. border-width:0px;
  9893. position:absolute;
  9894. left:0px;
  9895. top:0px;
  9896. width:0px;
  9897. height:0px;
  9898. }
  9899. #u51158_div {
  9900. border-width:0px;
  9901. position:absolute;
  9902. left:0px;
  9903. top:0px;
  9904. width:640px;
  9905. height:60px;
  9906. background:inherit;
  9907. background-color:rgba(255, 255, 255, 1);
  9908. box-sizing:border-box;
  9909. border-width:1px;
  9910. border-style:solid;
  9911. border-color:rgba(215, 215, 215, 1);
  9912. border-radius:0px;
  9913. -moz-box-shadow:none;
  9914. -webkit-box-shadow:none;
  9915. box-shadow:none;
  9916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9917. font-weight:400;
  9918. font-style:normal;
  9919. font-size:14px;
  9920. color:#AAAAAA;
  9921. text-align:center;
  9922. line-height:30px;
  9923. }
  9924. #u51158 {
  9925. border-width:0px;
  9926. position:absolute;
  9927. left:600px;
  9928. top:798px;
  9929. width:640px;
  9930. height:60px;
  9931. display:flex;
  9932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9933. font-weight:400;
  9934. font-style:normal;
  9935. font-size:14px;
  9936. color:#AAAAAA;
  9937. text-align:center;
  9938. line-height:30px;
  9939. }
  9940. #u51158 .text {
  9941. position:absolute;
  9942. align-self:center;
  9943. padding:5px 10px 5px 10px;
  9944. box-sizing:border-box;
  9945. width:100%;
  9946. }
  9947. #u51158_text {
  9948. border-width:0px;
  9949. word-wrap:break-word;
  9950. text-transform:none;
  9951. visibility:hidden;
  9952. }
  9953. #u51159_div {
  9954. border-width:0px;
  9955. position:absolute;
  9956. left:0px;
  9957. top:0px;
  9958. width:80px;
  9959. height:30px;
  9960. background:inherit;
  9961. background-color:rgba(255, 255, 255, 1);
  9962. box-sizing:border-box;
  9963. border-width:1px;
  9964. border-style:solid;
  9965. border-color:rgba(170, 170, 170, 1);
  9966. border-radius:4px;
  9967. -moz-box-shadow:none;
  9968. -webkit-box-shadow:none;
  9969. box-shadow:none;
  9970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9971. font-weight:400;
  9972. font-style:normal;
  9973. font-size:14px;
  9974. }
  9975. #u51159 {
  9976. border-width:0px;
  9977. position:absolute;
  9978. left:1134px;
  9979. top:813px;
  9980. width:80px;
  9981. height:30px;
  9982. display:flex;
  9983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9984. font-weight:400;
  9985. font-style:normal;
  9986. font-size:14px;
  9987. }
  9988. #u51159 .text {
  9989. position:absolute;
  9990. align-self:center;
  9991. padding:2px 2px 2px 2px;
  9992. box-sizing:border-box;
  9993. width:100%;
  9994. }
  9995. #u51159_text {
  9996. border-width:0px;
  9997. word-wrap:break-word;
  9998. text-transform:none;
  9999. }
  10000. #u51160 {
  10001. border-width:0px;
  10002. position:absolute;
  10003. left:631px;
  10004. top:458px;
  10005. width:589px;
  10006. height:180px;
  10007. }
  10008. #u51161_img {
  10009. border-width:0px;
  10010. position:absolute;
  10011. left:0px;
  10012. top:0px;
  10013. width:118px;
  10014. height:30px;
  10015. }
  10016. #u51161 {
  10017. border-width:0px;
  10018. position:absolute;
  10019. left:0px;
  10020. top:0px;
  10021. width:118px;
  10022. height:30px;
  10023. display:flex;
  10024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10025. font-weight:400;
  10026. font-style:normal;
  10027. font-size:12px;
  10028. color:#FFFFFF;
  10029. }
  10030. #u51161 .text {
  10031. position:absolute;
  10032. align-self:center;
  10033. padding:2px 2px 2px 2px;
  10034. box-sizing:border-box;
  10035. width:100%;
  10036. }
  10037. #u51161_text {
  10038. border-width:0px;
  10039. word-wrap:break-word;
  10040. text-transform:none;
  10041. }
  10042. #u51162_img {
  10043. border-width:0px;
  10044. position:absolute;
  10045. left:0px;
  10046. top:0px;
  10047. width:118px;
  10048. height:30px;
  10049. }
  10050. #u51162 {
  10051. border-width:0px;
  10052. position:absolute;
  10053. left:118px;
  10054. top:0px;
  10055. width:118px;
  10056. height:30px;
  10057. display:flex;
  10058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10059. font-weight:400;
  10060. font-style:normal;
  10061. font-size:12px;
  10062. color:#FFFFFF;
  10063. }
  10064. #u51162 .text {
  10065. position:absolute;
  10066. align-self:center;
  10067. padding:2px 2px 2px 2px;
  10068. box-sizing:border-box;
  10069. width:100%;
  10070. }
  10071. #u51162_text {
  10072. border-width:0px;
  10073. word-wrap:break-word;
  10074. text-transform:none;
  10075. }
  10076. #u51163_img {
  10077. border-width:0px;
  10078. position:absolute;
  10079. left:0px;
  10080. top:0px;
  10081. width:118px;
  10082. height:30px;
  10083. }
  10084. #u51163 {
  10085. border-width:0px;
  10086. position:absolute;
  10087. left:236px;
  10088. top:0px;
  10089. width:118px;
  10090. height:30px;
  10091. display:flex;
  10092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10093. font-weight:400;
  10094. font-style:normal;
  10095. font-size:12px;
  10096. color:#FFFFFF;
  10097. }
  10098. #u51163 .text {
  10099. position:absolute;
  10100. align-self:center;
  10101. padding:2px 2px 2px 2px;
  10102. box-sizing:border-box;
  10103. width:100%;
  10104. }
  10105. #u51163_text {
  10106. border-width:0px;
  10107. word-wrap:break-word;
  10108. text-transform:none;
  10109. }
  10110. #u51164_img {
  10111. border-width:0px;
  10112. position:absolute;
  10113. left:0px;
  10114. top:0px;
  10115. width:118px;
  10116. height:30px;
  10117. }
  10118. #u51164 {
  10119. border-width:0px;
  10120. position:absolute;
  10121. left:354px;
  10122. top:0px;
  10123. width:118px;
  10124. height:30px;
  10125. display:flex;
  10126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10127. font-weight:400;
  10128. font-style:normal;
  10129. font-size:12px;
  10130. color:#FFFFFF;
  10131. }
  10132. #u51164 .text {
  10133. position:absolute;
  10134. align-self:center;
  10135. padding:2px 2px 2px 2px;
  10136. box-sizing:border-box;
  10137. width:100%;
  10138. }
  10139. #u51164_text {
  10140. border-width:0px;
  10141. word-wrap:break-word;
  10142. text-transform:none;
  10143. }
  10144. #u51165_img {
  10145. border-width:0px;
  10146. position:absolute;
  10147. left:0px;
  10148. top:0px;
  10149. width:117px;
  10150. height:30px;
  10151. }
  10152. #u51165 {
  10153. border-width:0px;
  10154. position:absolute;
  10155. left:472px;
  10156. top:0px;
  10157. width:117px;
  10158. height:30px;
  10159. display:flex;
  10160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10161. font-weight:400;
  10162. font-style:normal;
  10163. font-size:12px;
  10164. color:#FFFFFF;
  10165. }
  10166. #u51165 .text {
  10167. position:absolute;
  10168. align-self:center;
  10169. padding:2px 2px 2px 2px;
  10170. box-sizing:border-box;
  10171. width:100%;
  10172. }
  10173. #u51165_text {
  10174. border-width:0px;
  10175. word-wrap:break-word;
  10176. text-transform:none;
  10177. }
  10178. #u51166_img {
  10179. border-width:0px;
  10180. position:absolute;
  10181. left:0px;
  10182. top:0px;
  10183. width:118px;
  10184. height:30px;
  10185. }
  10186. #u51166 {
  10187. border-width:0px;
  10188. position:absolute;
  10189. left:0px;
  10190. top:30px;
  10191. width:118px;
  10192. height:30px;
  10193. display:flex;
  10194. font-size:12px;
  10195. }
  10196. #u51166 .text {
  10197. position:absolute;
  10198. align-self:center;
  10199. padding:2px 2px 2px 2px;
  10200. box-sizing:border-box;
  10201. width:100%;
  10202. }
  10203. #u51166_text {
  10204. border-width:0px;
  10205. word-wrap:break-word;
  10206. text-transform:none;
  10207. visibility:hidden;
  10208. }
  10209. #u51167_img {
  10210. border-width:0px;
  10211. position:absolute;
  10212. left:0px;
  10213. top:0px;
  10214. width:118px;
  10215. height:30px;
  10216. }
  10217. #u51167 {
  10218. border-width:0px;
  10219. position:absolute;
  10220. left:118px;
  10221. top:30px;
  10222. width:118px;
  10223. height:30px;
  10224. display:flex;
  10225. font-size:12px;
  10226. }
  10227. #u51167 .text {
  10228. position:absolute;
  10229. align-self:center;
  10230. padding:2px 2px 2px 2px;
  10231. box-sizing:border-box;
  10232. width:100%;
  10233. }
  10234. #u51167_text {
  10235. border-width:0px;
  10236. word-wrap:break-word;
  10237. text-transform:none;
  10238. visibility:hidden;
  10239. }
  10240. #u51168_img {
  10241. border-width:0px;
  10242. position:absolute;
  10243. left:0px;
  10244. top:0px;
  10245. width:118px;
  10246. height:30px;
  10247. }
  10248. #u51168 {
  10249. border-width:0px;
  10250. position:absolute;
  10251. left:236px;
  10252. top:30px;
  10253. width:118px;
  10254. height:30px;
  10255. display:flex;
  10256. font-size:12px;
  10257. }
  10258. #u51168 .text {
  10259. position:absolute;
  10260. align-self:center;
  10261. padding:2px 2px 2px 2px;
  10262. box-sizing:border-box;
  10263. width:100%;
  10264. }
  10265. #u51168_text {
  10266. border-width:0px;
  10267. word-wrap:break-word;
  10268. text-transform:none;
  10269. }
  10270. #u51169_img {
  10271. border-width:0px;
  10272. position:absolute;
  10273. left:0px;
  10274. top:0px;
  10275. width:118px;
  10276. height:30px;
  10277. }
  10278. #u51169 {
  10279. border-width:0px;
  10280. position:absolute;
  10281. left:354px;
  10282. top:30px;
  10283. width:118px;
  10284. height:30px;
  10285. display:flex;
  10286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10287. font-weight:400;
  10288. font-style:normal;
  10289. font-size:12px;
  10290. }
  10291. #u51169 .text {
  10292. position:absolute;
  10293. align-self:center;
  10294. padding:2px 2px 2px 2px;
  10295. box-sizing:border-box;
  10296. width:100%;
  10297. }
  10298. #u51169_text {
  10299. border-width:0px;
  10300. word-wrap:break-word;
  10301. text-transform:none;
  10302. }
  10303. #u51170_img {
  10304. border-width:0px;
  10305. position:absolute;
  10306. left:0px;
  10307. top:0px;
  10308. width:117px;
  10309. height:30px;
  10310. }
  10311. #u51170 {
  10312. border-width:0px;
  10313. position:absolute;
  10314. left:472px;
  10315. top:30px;
  10316. width:117px;
  10317. height:30px;
  10318. display:flex;
  10319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10320. font-weight:400;
  10321. font-style:normal;
  10322. font-size:12px;
  10323. }
  10324. #u51170 .text {
  10325. position:absolute;
  10326. align-self:center;
  10327. padding:2px 2px 2px 2px;
  10328. box-sizing:border-box;
  10329. width:100%;
  10330. }
  10331. #u51170_text {
  10332. border-width:0px;
  10333. word-wrap:break-word;
  10334. text-transform:none;
  10335. }
  10336. #u51171_img {
  10337. border-width:0px;
  10338. position:absolute;
  10339. left:0px;
  10340. top:0px;
  10341. width:118px;
  10342. height:30px;
  10343. }
  10344. #u51171 {
  10345. border-width:0px;
  10346. position:absolute;
  10347. left:0px;
  10348. top:60px;
  10349. width:118px;
  10350. height:30px;
  10351. display:flex;
  10352. font-size:12px;
  10353. }
  10354. #u51171 .text {
  10355. position:absolute;
  10356. align-self:center;
  10357. padding:2px 2px 2px 2px;
  10358. box-sizing:border-box;
  10359. width:100%;
  10360. }
  10361. #u51171_text {
  10362. border-width:0px;
  10363. word-wrap:break-word;
  10364. text-transform:none;
  10365. visibility:hidden;
  10366. }
  10367. #u51172_img {
  10368. border-width:0px;
  10369. position:absolute;
  10370. left:0px;
  10371. top:0px;
  10372. width:118px;
  10373. height:30px;
  10374. }
  10375. #u51172 {
  10376. border-width:0px;
  10377. position:absolute;
  10378. left:118px;
  10379. top:60px;
  10380. width:118px;
  10381. height:30px;
  10382. display:flex;
  10383. font-size:12px;
  10384. }
  10385. #u51172 .text {
  10386. position:absolute;
  10387. align-self:center;
  10388. padding:2px 2px 2px 2px;
  10389. box-sizing:border-box;
  10390. width:100%;
  10391. }
  10392. #u51172_text {
  10393. border-width:0px;
  10394. word-wrap:break-word;
  10395. text-transform:none;
  10396. visibility:hidden;
  10397. }
  10398. #u51173_img {
  10399. border-width:0px;
  10400. position:absolute;
  10401. left:0px;
  10402. top:0px;
  10403. width:118px;
  10404. height:30px;
  10405. }
  10406. #u51173 {
  10407. border-width:0px;
  10408. position:absolute;
  10409. left:236px;
  10410. top:60px;
  10411. width:118px;
  10412. height:30px;
  10413. display:flex;
  10414. font-size:12px;
  10415. }
  10416. #u51173 .text {
  10417. position:absolute;
  10418. align-self:center;
  10419. padding:2px 2px 2px 2px;
  10420. box-sizing:border-box;
  10421. width:100%;
  10422. }
  10423. #u51173_text {
  10424. border-width:0px;
  10425. word-wrap:break-word;
  10426. text-transform:none;
  10427. visibility:hidden;
  10428. }
  10429. #u51174_img {
  10430. border-width:0px;
  10431. position:absolute;
  10432. left:0px;
  10433. top:0px;
  10434. width:118px;
  10435. height:30px;
  10436. }
  10437. #u51174 {
  10438. border-width:0px;
  10439. position:absolute;
  10440. left:354px;
  10441. top:60px;
  10442. width:118px;
  10443. height:30px;
  10444. display:flex;
  10445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10446. font-weight:400;
  10447. font-style:normal;
  10448. font-size:12px;
  10449. }
  10450. #u51174 .text {
  10451. position:absolute;
  10452. align-self:center;
  10453. padding:2px 2px 2px 2px;
  10454. box-sizing:border-box;
  10455. width:100%;
  10456. }
  10457. #u51174_text {
  10458. border-width:0px;
  10459. word-wrap:break-word;
  10460. text-transform:none;
  10461. }
  10462. #u51175_img {
  10463. border-width:0px;
  10464. position:absolute;
  10465. left:0px;
  10466. top:0px;
  10467. width:117px;
  10468. height:30px;
  10469. }
  10470. #u51175 {
  10471. border-width:0px;
  10472. position:absolute;
  10473. left:472px;
  10474. top:60px;
  10475. width:117px;
  10476. height:30px;
  10477. display:flex;
  10478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10479. font-weight:400;
  10480. font-style:normal;
  10481. font-size:12px;
  10482. color:#00BFBF;
  10483. }
  10484. #u51175 .text {
  10485. position:absolute;
  10486. align-self:center;
  10487. padding:2px 2px 2px 2px;
  10488. box-sizing:border-box;
  10489. width:100%;
  10490. }
  10491. #u51175_text {
  10492. border-width:0px;
  10493. word-wrap:break-word;
  10494. text-transform:none;
  10495. }
  10496. #u51176_img {
  10497. border-width:0px;
  10498. position:absolute;
  10499. left:0px;
  10500. top:0px;
  10501. width:118px;
  10502. height:30px;
  10503. }
  10504. #u51176 {
  10505. border-width:0px;
  10506. position:absolute;
  10507. left:0px;
  10508. top:90px;
  10509. width:118px;
  10510. height:30px;
  10511. display:flex;
  10512. font-size:12px;
  10513. }
  10514. #u51176 .text {
  10515. position:absolute;
  10516. align-self:center;
  10517. padding:2px 2px 2px 2px;
  10518. box-sizing:border-box;
  10519. width:100%;
  10520. }
  10521. #u51176_text {
  10522. border-width:0px;
  10523. word-wrap:break-word;
  10524. text-transform:none;
  10525. visibility:hidden;
  10526. }
  10527. #u51177_img {
  10528. border-width:0px;
  10529. position:absolute;
  10530. left:0px;
  10531. top:0px;
  10532. width:118px;
  10533. height:30px;
  10534. }
  10535. #u51177 {
  10536. border-width:0px;
  10537. position:absolute;
  10538. left:118px;
  10539. top:90px;
  10540. width:118px;
  10541. height:30px;
  10542. display:flex;
  10543. font-size:12px;
  10544. }
  10545. #u51177 .text {
  10546. position:absolute;
  10547. align-self:center;
  10548. padding:2px 2px 2px 2px;
  10549. box-sizing:border-box;
  10550. width:100%;
  10551. }
  10552. #u51177_text {
  10553. border-width:0px;
  10554. word-wrap:break-word;
  10555. text-transform:none;
  10556. visibility:hidden;
  10557. }
  10558. #u51178_img {
  10559. border-width:0px;
  10560. position:absolute;
  10561. left:0px;
  10562. top:0px;
  10563. width:118px;
  10564. height:30px;
  10565. }
  10566. #u51178 {
  10567. border-width:0px;
  10568. position:absolute;
  10569. left:236px;
  10570. top:90px;
  10571. width:118px;
  10572. height:30px;
  10573. display:flex;
  10574. font-size:12px;
  10575. }
  10576. #u51178 .text {
  10577. position:absolute;
  10578. align-self:center;
  10579. padding:2px 2px 2px 2px;
  10580. box-sizing:border-box;
  10581. width:100%;
  10582. }
  10583. #u51178_text {
  10584. border-width:0px;
  10585. word-wrap:break-word;
  10586. text-transform:none;
  10587. visibility:hidden;
  10588. }
  10589. #u51179_img {
  10590. border-width:0px;
  10591. position:absolute;
  10592. left:0px;
  10593. top:0px;
  10594. width:118px;
  10595. height:30px;
  10596. }
  10597. #u51179 {
  10598. border-width:0px;
  10599. position:absolute;
  10600. left:354px;
  10601. top:90px;
  10602. width:118px;
  10603. height:30px;
  10604. display:flex;
  10605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10606. font-weight:400;
  10607. font-style:normal;
  10608. font-size:12px;
  10609. }
  10610. #u51179 .text {
  10611. position:absolute;
  10612. align-self:center;
  10613. padding:2px 2px 2px 2px;
  10614. box-sizing:border-box;
  10615. width:100%;
  10616. }
  10617. #u51179_text {
  10618. border-width:0px;
  10619. word-wrap:break-word;
  10620. text-transform:none;
  10621. }
  10622. #u51180_img {
  10623. border-width:0px;
  10624. position:absolute;
  10625. left:0px;
  10626. top:0px;
  10627. width:117px;
  10628. height:30px;
  10629. }
  10630. #u51180 {
  10631. border-width:0px;
  10632. position:absolute;
  10633. left:472px;
  10634. top:90px;
  10635. width:117px;
  10636. height:30px;
  10637. display:flex;
  10638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10639. font-weight:400;
  10640. font-style:normal;
  10641. font-size:12px;
  10642. color:#D9001B;
  10643. }
  10644. #u51180 .text {
  10645. position:absolute;
  10646. align-self:center;
  10647. padding:2px 2px 2px 2px;
  10648. box-sizing:border-box;
  10649. width:100%;
  10650. }
  10651. #u51180_text {
  10652. border-width:0px;
  10653. word-wrap:break-word;
  10654. text-transform:none;
  10655. }
  10656. #u51181_img {
  10657. border-width:0px;
  10658. position:absolute;
  10659. left:0px;
  10660. top:0px;
  10661. width:118px;
  10662. height:30px;
  10663. }
  10664. #u51181 {
  10665. border-width:0px;
  10666. position:absolute;
  10667. left:0px;
  10668. top:120px;
  10669. width:118px;
  10670. height:30px;
  10671. display:flex;
  10672. font-size:12px;
  10673. }
  10674. #u51181 .text {
  10675. position:absolute;
  10676. align-self:center;
  10677. padding:2px 2px 2px 2px;
  10678. box-sizing:border-box;
  10679. width:100%;
  10680. }
  10681. #u51181_text {
  10682. border-width:0px;
  10683. word-wrap:break-word;
  10684. text-transform:none;
  10685. visibility:hidden;
  10686. }
  10687. #u51182_img {
  10688. border-width:0px;
  10689. position:absolute;
  10690. left:0px;
  10691. top:0px;
  10692. width:118px;
  10693. height:30px;
  10694. }
  10695. #u51182 {
  10696. border-width:0px;
  10697. position:absolute;
  10698. left:118px;
  10699. top:120px;
  10700. width:118px;
  10701. height:30px;
  10702. display:flex;
  10703. font-size:12px;
  10704. }
  10705. #u51182 .text {
  10706. position:absolute;
  10707. align-self:center;
  10708. padding:2px 2px 2px 2px;
  10709. box-sizing:border-box;
  10710. width:100%;
  10711. }
  10712. #u51182_text {
  10713. border-width:0px;
  10714. word-wrap:break-word;
  10715. text-transform:none;
  10716. visibility:hidden;
  10717. }
  10718. #u51183_img {
  10719. border-width:0px;
  10720. position:absolute;
  10721. left:0px;
  10722. top:0px;
  10723. width:118px;
  10724. height:30px;
  10725. }
  10726. #u51183 {
  10727. border-width:0px;
  10728. position:absolute;
  10729. left:236px;
  10730. top:120px;
  10731. width:118px;
  10732. height:30px;
  10733. display:flex;
  10734. font-size:12px;
  10735. }
  10736. #u51183 .text {
  10737. position:absolute;
  10738. align-self:center;
  10739. padding:2px 2px 2px 2px;
  10740. box-sizing:border-box;
  10741. width:100%;
  10742. }
  10743. #u51183_text {
  10744. border-width:0px;
  10745. word-wrap:break-word;
  10746. text-transform:none;
  10747. visibility:hidden;
  10748. }
  10749. #u51184_img {
  10750. border-width:0px;
  10751. position:absolute;
  10752. left:0px;
  10753. top:0px;
  10754. width:118px;
  10755. height:30px;
  10756. }
  10757. #u51184 {
  10758. border-width:0px;
  10759. position:absolute;
  10760. left:354px;
  10761. top:120px;
  10762. width:118px;
  10763. height:30px;
  10764. display:flex;
  10765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10766. font-weight:400;
  10767. font-style:normal;
  10768. font-size:12px;
  10769. }
  10770. #u51184 .text {
  10771. position:absolute;
  10772. align-self:center;
  10773. padding:2px 2px 2px 2px;
  10774. box-sizing:border-box;
  10775. width:100%;
  10776. }
  10777. #u51184_text {
  10778. border-width:0px;
  10779. word-wrap:break-word;
  10780. text-transform:none;
  10781. }
  10782. #u51185_img {
  10783. border-width:0px;
  10784. position:absolute;
  10785. left:0px;
  10786. top:0px;
  10787. width:117px;
  10788. height:30px;
  10789. }
  10790. #u51185 {
  10791. border-width:0px;
  10792. position:absolute;
  10793. left:472px;
  10794. top:120px;
  10795. width:117px;
  10796. height:30px;
  10797. display:flex;
  10798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10799. font-weight:400;
  10800. font-style:normal;
  10801. font-size:12px;
  10802. color:#00BFBF;
  10803. }
  10804. #u51185 .text {
  10805. position:absolute;
  10806. align-self:center;
  10807. padding:2px 2px 2px 2px;
  10808. box-sizing:border-box;
  10809. width:100%;
  10810. }
  10811. #u51185_text {
  10812. border-width:0px;
  10813. word-wrap:break-word;
  10814. text-transform:none;
  10815. }
  10816. #u51186_img {
  10817. border-width:0px;
  10818. position:absolute;
  10819. left:0px;
  10820. top:0px;
  10821. width:118px;
  10822. height:30px;
  10823. }
  10824. #u51186 {
  10825. border-width:0px;
  10826. position:absolute;
  10827. left:0px;
  10828. top:150px;
  10829. width:118px;
  10830. height:30px;
  10831. display:flex;
  10832. font-size:12px;
  10833. }
  10834. #u51186 .text {
  10835. position:absolute;
  10836. align-self:center;
  10837. padding:2px 2px 2px 2px;
  10838. box-sizing:border-box;
  10839. width:100%;
  10840. }
  10841. #u51186_text {
  10842. border-width:0px;
  10843. word-wrap:break-word;
  10844. text-transform:none;
  10845. visibility:hidden;
  10846. }
  10847. #u51187_img {
  10848. border-width:0px;
  10849. position:absolute;
  10850. left:0px;
  10851. top:0px;
  10852. width:118px;
  10853. height:30px;
  10854. }
  10855. #u51187 {
  10856. border-width:0px;
  10857. position:absolute;
  10858. left:118px;
  10859. top:150px;
  10860. width:118px;
  10861. height:30px;
  10862. display:flex;
  10863. font-size:12px;
  10864. }
  10865. #u51187 .text {
  10866. position:absolute;
  10867. align-self:center;
  10868. padding:2px 2px 2px 2px;
  10869. box-sizing:border-box;
  10870. width:100%;
  10871. }
  10872. #u51187_text {
  10873. border-width:0px;
  10874. word-wrap:break-word;
  10875. text-transform:none;
  10876. visibility:hidden;
  10877. }
  10878. #u51188_img {
  10879. border-width:0px;
  10880. position:absolute;
  10881. left:0px;
  10882. top:0px;
  10883. width:118px;
  10884. height:30px;
  10885. }
  10886. #u51188 {
  10887. border-width:0px;
  10888. position:absolute;
  10889. left:236px;
  10890. top:150px;
  10891. width:118px;
  10892. height:30px;
  10893. display:flex;
  10894. font-size:12px;
  10895. }
  10896. #u51188 .text {
  10897. position:absolute;
  10898. align-self:center;
  10899. padding:2px 2px 2px 2px;
  10900. box-sizing:border-box;
  10901. width:100%;
  10902. }
  10903. #u51188_text {
  10904. border-width:0px;
  10905. word-wrap:break-word;
  10906. text-transform:none;
  10907. visibility:hidden;
  10908. }
  10909. #u51189_img {
  10910. border-width:0px;
  10911. position:absolute;
  10912. left:0px;
  10913. top:0px;
  10914. width:118px;
  10915. height:30px;
  10916. }
  10917. #u51189 {
  10918. border-width:0px;
  10919. position:absolute;
  10920. left:354px;
  10921. top:150px;
  10922. width:118px;
  10923. height:30px;
  10924. display:flex;
  10925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10926. font-weight:400;
  10927. font-style:normal;
  10928. font-size:12px;
  10929. }
  10930. #u51189 .text {
  10931. position:absolute;
  10932. align-self:center;
  10933. padding:2px 2px 2px 2px;
  10934. box-sizing:border-box;
  10935. width:100%;
  10936. }
  10937. #u51189_text {
  10938. border-width:0px;
  10939. word-wrap:break-word;
  10940. text-transform:none;
  10941. }
  10942. #u51190_img {
  10943. border-width:0px;
  10944. position:absolute;
  10945. left:0px;
  10946. top:0px;
  10947. width:117px;
  10948. height:30px;
  10949. }
  10950. #u51190 {
  10951. border-width:0px;
  10952. position:absolute;
  10953. left:472px;
  10954. top:150px;
  10955. width:117px;
  10956. height:30px;
  10957. display:flex;
  10958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10959. font-weight:400;
  10960. font-style:normal;
  10961. font-size:12px;
  10962. }
  10963. #u51190 .text {
  10964. position:absolute;
  10965. align-self:center;
  10966. padding:2px 2px 2px 2px;
  10967. box-sizing:border-box;
  10968. width:100%;
  10969. }
  10970. #u51190_text {
  10971. border-width:0px;
  10972. word-wrap:break-word;
  10973. text-transform:none;
  10974. }