styles.css 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u51725_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. #u51725 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u51725 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u51725_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u51726_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. #u51726 {
  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. #u51726 .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. #u51726_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u51727_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. #u51727 {
  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. #u51727 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u51727_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u51728 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u51729_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u51729 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u51729 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u51729_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u51730_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. #u51730 {
  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. #u51730 .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. #u51730_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u51731_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. #u51731 {
  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. #u51731 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u51731_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u51732 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u51733_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. #u51733_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. #u51733_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. #u51733 {
  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. #u51733 .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. #u51733_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. #u51733.disabled {
  356. }
  357. .u51733_input_option {
  358. font-size:14px;
  359. }
  360. #u51734_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u51734 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u51734 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u51734_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u51735_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. #u51735 {
  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. #u51735 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u51735_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u51736_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. #u51736 {
  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. #u51736 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u51736_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u51737 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u51738_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. #u51738 {
  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. #u51738 .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. #u51738_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u51739_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u51739 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u51739 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u51739_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u51740 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u51741_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. #u51741 {
  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. #u51741 .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. #u51741_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u51742_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u51742 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u51742 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u51742_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u51743 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u51744_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. #u51744 {
  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. #u51744 .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. #u51744_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u51745_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u51745 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u51745 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u51745_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u51746 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u51747_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. #u51747 {
  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. #u51747 .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. #u51747_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u51748_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u51748 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u51748 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u51748_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u51749 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u51750_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. #u51750 {
  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. #u51750 .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. #u51750_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u51751_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u51751 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u51751 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u51751_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u51752 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u51753_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. #u51753 {
  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. #u51753 .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. #u51753_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u51754_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u51754 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u51754 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u51754_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u51755 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u51756_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. #u51756 {
  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. #u51756 .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. #u51756_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u51757_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u51757 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u51757 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u51757_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u51758 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u51759_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. #u51759 {
  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. #u51759 .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. #u51759_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u51760_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u51760 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u51760 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u51760_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u51761 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u51762_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. #u51762 {
  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. #u51762 .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. #u51762_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u51763_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u51763 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u51763 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u51763_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u51764 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u51765_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. #u51765 {
  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. #u51765 .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. #u51765_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u51766_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u51766 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u51766 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u51766_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u51767_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. #u51767 {
  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. #u51767 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u51767_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u51768_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u51768 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u51768 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u51768_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u51769_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. #u51769 {
  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. #u51769 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u51769_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u51770_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u51770 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u51770 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u51770_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u51771 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u51772_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. #u51772 {
  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. #u51772 .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. #u51772_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u51773_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u51773 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u51773 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u51773_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u51774 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u51775_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. #u51775 {
  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. #u51775 .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. #u51775_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u51776_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u51776 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u51776 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u51776_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u51777_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. #u51777 {
  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. #u51777 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u51777_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u51778_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. #u51778 {
  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. #u51778 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:0px 0px 0px 0px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u51778_text {
  1722. border-width:0px;
  1723. white-space:nowrap;
  1724. text-transform:none;
  1725. }
  1726. #u51779 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:0px;
  1732. height:0px;
  1733. }
  1734. #u51780_div {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:200px;
  1740. height:1193px;
  1741. background:inherit;
  1742. background-color:rgba(255, 255, 255, 1);
  1743. border:none;
  1744. border-radius:0px;
  1745. -moz-box-shadow:none;
  1746. -webkit-box-shadow:none;
  1747. box-shadow:none;
  1748. }
  1749. #u51780 {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:120px;
  1753. top:50px;
  1754. width:200px;
  1755. height:1193px;
  1756. display:flex;
  1757. }
  1758. #u51780 .text {
  1759. position:absolute;
  1760. align-self:center;
  1761. padding:2px 2px 2px 2px;
  1762. box-sizing:border-box;
  1763. width:100%;
  1764. }
  1765. #u51780_text {
  1766. border-width:0px;
  1767. word-wrap:break-word;
  1768. text-transform:none;
  1769. visibility:hidden;
  1770. }
  1771. #u51781_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:200px;
  1777. height:60px;
  1778. background:inherit;
  1779. background-color:rgba(224, 231, 247, 1);
  1780. border:none;
  1781. border-radius:0px;
  1782. -moz-box-shadow:none;
  1783. -webkit-box-shadow:none;
  1784. box-shadow:none;
  1785. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1786. font-weight:500;
  1787. font-style:normal;
  1788. font-size:18px;
  1789. }
  1790. #u51781 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:120px;
  1794. top:50px;
  1795. width:200px;
  1796. height:60px;
  1797. display:flex;
  1798. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1799. font-weight:500;
  1800. font-style:normal;
  1801. font-size:18px;
  1802. }
  1803. #u51781 .text {
  1804. position:absolute;
  1805. align-self:center;
  1806. padding:0px 0px 0px 20px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u51781_text {
  1811. border-width:0px;
  1812. word-wrap:break-word;
  1813. text-transform:none;
  1814. }
  1815. #u51782_div {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:97px;
  1821. height:22px;
  1822. background:inherit;
  1823. background-color:rgba(255, 255, 255, 0);
  1824. border:none;
  1825. border-radius:0px;
  1826. -moz-box-shadow:none;
  1827. -webkit-box-shadow:none;
  1828. box-shadow:none;
  1829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. font-size:16px;
  1833. }
  1834. #u51782 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:147px;
  1838. top:386px;
  1839. width:97px;
  1840. height:22px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:16px;
  1846. }
  1847. #u51782 .text {
  1848. position:absolute;
  1849. align-self:flex-start;
  1850. padding:0px 0px 0px 0px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u51782_text {
  1855. border-width:0px;
  1856. word-wrap:break-word;
  1857. text-transform:none;
  1858. }
  1859. #u51783_div {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:97px;
  1865. height:22px;
  1866. background:inherit;
  1867. background-color:rgba(255, 255, 255, 0);
  1868. border:none;
  1869. border-radius:0px;
  1870. -moz-box-shadow:none;
  1871. -webkit-box-shadow:none;
  1872. box-shadow:none;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:16px;
  1877. }
  1878. #u51783 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:147px;
  1882. top:166px;
  1883. width:97px;
  1884. height:22px;
  1885. display:flex;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:16px;
  1890. }
  1891. #u51783 .text {
  1892. position:absolute;
  1893. align-self:flex-start;
  1894. padding:0px 0px 0px 0px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u51783_text {
  1899. border-width:0px;
  1900. word-wrap:break-word;
  1901. text-transform:none;
  1902. }
  1903. #u51784_div {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:49px;
  1909. height:17px;
  1910. background:inherit;
  1911. background-color:rgba(255, 255, 255, 0);
  1912. border:none;
  1913. border-radius:0px;
  1914. -moz-box-shadow:none;
  1915. -webkit-box-shadow:none;
  1916. box-shadow:none;
  1917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1918. font-weight:400;
  1919. font-style:normal;
  1920. font-size:12px;
  1921. color:#AAAAAA;
  1922. }
  1923. #u51784 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:147px;
  1927. top:130px;
  1928. width:49px;
  1929. height:17px;
  1930. display:flex;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:12px;
  1935. color:#AAAAAA;
  1936. }
  1937. #u51784 .text {
  1938. position:absolute;
  1939. align-self:flex-start;
  1940. padding:0px 0px 0px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u51784_text {
  1945. border-width:0px;
  1946. white-space:nowrap;
  1947. text-transform:none;
  1948. }
  1949. #u51785_div {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:97px;
  1955. height:22px;
  1956. background:inherit;
  1957. background-color:rgba(255, 255, 255, 0);
  1958. border:none;
  1959. border-radius:0px;
  1960. -moz-box-shadow:none;
  1961. -webkit-box-shadow:none;
  1962. box-shadow:none;
  1963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1964. font-weight:400;
  1965. font-style:normal;
  1966. font-size:16px;
  1967. }
  1968. #u51785 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:147px;
  1972. top:208px;
  1973. width:97px;
  1974. height:22px;
  1975. display:flex;
  1976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:16px;
  1980. }
  1981. #u51785 .text {
  1982. position:absolute;
  1983. align-self:flex-start;
  1984. padding:0px 0px 0px 0px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u51785_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. }
  1993. #u51786_img {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:201px;
  1999. height:2px;
  2000. }
  2001. #u51786 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:120px;
  2005. top:247px;
  2006. width:200px;
  2007. height:1px;
  2008. display:flex;
  2009. }
  2010. #u51786 .text {
  2011. position:absolute;
  2012. align-self:center;
  2013. padding:2px 2px 2px 2px;
  2014. box-sizing:border-box;
  2015. width:100%;
  2016. }
  2017. #u51786_text {
  2018. border-width:0px;
  2019. word-wrap:break-word;
  2020. text-transform:none;
  2021. visibility:hidden;
  2022. }
  2023. #u51787_div {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:97px;
  2029. height:22px;
  2030. background:inherit;
  2031. background-color:rgba(255, 255, 255, 0);
  2032. border:none;
  2033. border-radius:0px;
  2034. -moz-box-shadow:none;
  2035. -webkit-box-shadow:none;
  2036. box-shadow:none;
  2037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2038. font-weight:400;
  2039. font-style:normal;
  2040. font-size:16px;
  2041. }
  2042. #u51787 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:147px;
  2046. top:304px;
  2047. width:97px;
  2048. height:22px;
  2049. display:flex;
  2050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2051. font-weight:400;
  2052. font-style:normal;
  2053. font-size:16px;
  2054. }
  2055. #u51787 .text {
  2056. position:absolute;
  2057. align-self:flex-start;
  2058. padding:0px 0px 0px 0px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u51787_text {
  2063. border-width:0px;
  2064. word-wrap:break-word;
  2065. text-transform:none;
  2066. }
  2067. #u51788_div {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:49px;
  2073. height:17px;
  2074. background:inherit;
  2075. background-color:rgba(255, 255, 255, 0);
  2076. border:none;
  2077. border-radius:0px;
  2078. -moz-box-shadow:none;
  2079. -webkit-box-shadow:none;
  2080. box-shadow:none;
  2081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:12px;
  2085. color:#AAAAAA;
  2086. }
  2087. #u51788 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:147px;
  2091. top:268px;
  2092. width:49px;
  2093. height:17px;
  2094. display:flex;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:12px;
  2099. color:#AAAAAA;
  2100. }
  2101. #u51788 .text {
  2102. position:absolute;
  2103. align-self:flex-start;
  2104. padding:0px 0px 0px 0px;
  2105. box-sizing:border-box;
  2106. width:100%;
  2107. }
  2108. #u51788_text {
  2109. border-width:0px;
  2110. white-space:nowrap;
  2111. text-transform:none;
  2112. }
  2113. #u51789_div {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:97px;
  2119. height:22px;
  2120. background:inherit;
  2121. background-color:rgba(255, 255, 255, 0);
  2122. border:none;
  2123. border-radius:0px;
  2124. -moz-box-shadow:none;
  2125. -webkit-box-shadow:none;
  2126. box-shadow:none;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:16px;
  2131. }
  2132. #u51789 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:147px;
  2136. top:532px;
  2137. width:97px;
  2138. height:22px;
  2139. display:flex;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:16px;
  2144. }
  2145. #u51789 .text {
  2146. position:absolute;
  2147. align-self:flex-start;
  2148. padding:0px 0px 0px 0px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u51789_text {
  2153. border-width:0px;
  2154. word-wrap:break-word;
  2155. text-transform:none;
  2156. }
  2157. #u51790_img {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:201px;
  2163. height:2px;
  2164. }
  2165. #u51790 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:120px;
  2169. top:433px;
  2170. width:200px;
  2171. height:1px;
  2172. display:flex;
  2173. }
  2174. #u51790 .text {
  2175. position:absolute;
  2176. align-self:center;
  2177. padding:2px 2px 2px 2px;
  2178. box-sizing:border-box;
  2179. width:100%;
  2180. }
  2181. #u51790_text {
  2182. border-width:0px;
  2183. word-wrap:break-word;
  2184. text-transform:none;
  2185. visibility:hidden;
  2186. }
  2187. #u51791_div {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:0px;
  2191. top:0px;
  2192. width:97px;
  2193. height:22px;
  2194. background:inherit;
  2195. background-color:rgba(255, 255, 255, 0);
  2196. border:none;
  2197. border-radius:0px;
  2198. -moz-box-shadow:none;
  2199. -webkit-box-shadow:none;
  2200. box-shadow:none;
  2201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2202. font-weight:400;
  2203. font-style:normal;
  2204. font-size:16px;
  2205. }
  2206. #u51791 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:147px;
  2210. top:490px;
  2211. width:97px;
  2212. height:22px;
  2213. display:flex;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:16px;
  2218. }
  2219. #u51791 .text {
  2220. position:absolute;
  2221. align-self:flex-start;
  2222. padding:0px 0px 0px 0px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u51791_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. }
  2231. #u51792_div {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:49px;
  2237. height:17px;
  2238. background:inherit;
  2239. background-color:rgba(255, 255, 255, 0);
  2240. border:none;
  2241. border-radius:0px;
  2242. -moz-box-shadow:none;
  2243. -webkit-box-shadow:none;
  2244. box-shadow:none;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:12px;
  2249. color:#AAAAAA;
  2250. }
  2251. #u51792 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:147px;
  2255. top:454px;
  2256. width:49px;
  2257. height:17px;
  2258. display:flex;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:12px;
  2263. color:#AAAAAA;
  2264. }
  2265. #u51792 .text {
  2266. position:absolute;
  2267. align-self:flex-start;
  2268. padding:0px 0px 0px 0px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u51792_text {
  2273. border-width:0px;
  2274. white-space:nowrap;
  2275. text-transform:none;
  2276. }
  2277. #u51793_div {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:97px;
  2283. height:22px;
  2284. background:inherit;
  2285. background-color:rgba(255, 255, 255, 0);
  2286. border:none;
  2287. border-radius:0px;
  2288. -moz-box-shadow:none;
  2289. -webkit-box-shadow:none;
  2290. box-shadow:none;
  2291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2292. font-weight:400;
  2293. font-style:normal;
  2294. font-size:16px;
  2295. }
  2296. #u51793 {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:147px;
  2300. top:673px;
  2301. width:97px;
  2302. height:22px;
  2303. display:flex;
  2304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2305. font-weight:400;
  2306. font-style:normal;
  2307. font-size:16px;
  2308. }
  2309. #u51793 .text {
  2310. position:absolute;
  2311. align-self:flex-start;
  2312. padding:0px 0px 0px 0px;
  2313. box-sizing:border-box;
  2314. width:100%;
  2315. }
  2316. #u51793_text {
  2317. border-width:0px;
  2318. word-wrap:break-word;
  2319. text-transform:none;
  2320. }
  2321. #u51794_div {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:97px;
  2327. height:22px;
  2328. background:inherit;
  2329. background-color:rgba(255, 255, 255, 0);
  2330. border:none;
  2331. border-radius:0px;
  2332. -moz-box-shadow:none;
  2333. -webkit-box-shadow:none;
  2334. box-shadow:none;
  2335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:16px;
  2339. }
  2340. #u51794 {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:147px;
  2344. top:715px;
  2345. width:97px;
  2346. height:22px;
  2347. display:flex;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:16px;
  2352. }
  2353. #u51794 .text {
  2354. position:absolute;
  2355. align-self:flex-start;
  2356. padding:0px 0px 0px 0px;
  2357. box-sizing:border-box;
  2358. width:100%;
  2359. }
  2360. #u51794_text {
  2361. border-width:0px;
  2362. white-space:nowrap;
  2363. text-transform:none;
  2364. }
  2365. #u51795_img {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:0px;
  2369. top:0px;
  2370. width:201px;
  2371. height:2px;
  2372. }
  2373. #u51795 {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:120px;
  2377. top:574px;
  2378. width:200px;
  2379. height:1px;
  2380. display:flex;
  2381. }
  2382. #u51795 .text {
  2383. position:absolute;
  2384. align-self:center;
  2385. padding:2px 2px 2px 2px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u51795_text {
  2390. border-width:0px;
  2391. word-wrap:break-word;
  2392. text-transform:none;
  2393. visibility:hidden;
  2394. }
  2395. #u51796_div {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:97px;
  2401. height:22px;
  2402. background:inherit;
  2403. background-color:rgba(255, 255, 255, 0);
  2404. border:none;
  2405. border-radius:0px;
  2406. -moz-box-shadow:none;
  2407. -webkit-box-shadow:none;
  2408. box-shadow:none;
  2409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:16px;
  2413. }
  2414. #u51796 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:147px;
  2418. top:631px;
  2419. width:97px;
  2420. height:22px;
  2421. display:flex;
  2422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2423. font-weight:400;
  2424. font-style:normal;
  2425. font-size:16px;
  2426. }
  2427. #u51796 .text {
  2428. position:absolute;
  2429. align-self:flex-start;
  2430. padding:0px 0px 0px 0px;
  2431. box-sizing:border-box;
  2432. width:100%;
  2433. }
  2434. #u51796_text {
  2435. border-width:0px;
  2436. word-wrap:break-word;
  2437. text-transform:none;
  2438. }
  2439. #u51797_div {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:49px;
  2445. height:17px;
  2446. background:inherit;
  2447. background-color:rgba(255, 255, 255, 0);
  2448. border:none;
  2449. border-radius:0px;
  2450. -moz-box-shadow:none;
  2451. -webkit-box-shadow:none;
  2452. box-shadow:none;
  2453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2454. font-weight:400;
  2455. font-style:normal;
  2456. font-size:12px;
  2457. color:#AAAAAA;
  2458. }
  2459. #u51797 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:147px;
  2463. top:595px;
  2464. width:49px;
  2465. height:17px;
  2466. display:flex;
  2467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2468. font-weight:400;
  2469. font-style:normal;
  2470. font-size:12px;
  2471. color:#AAAAAA;
  2472. }
  2473. #u51797 .text {
  2474. position:absolute;
  2475. align-self:flex-start;
  2476. padding:0px 0px 0px 0px;
  2477. box-sizing:border-box;
  2478. width:100%;
  2479. }
  2480. #u51797_text {
  2481. border-width:0px;
  2482. white-space:nowrap;
  2483. text-transform:none;
  2484. }
  2485. #u51798_div {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:97px;
  2491. height:22px;
  2492. background:inherit;
  2493. background-color:rgba(255, 255, 255, 0);
  2494. border:none;
  2495. border-radius:0px;
  2496. -moz-box-shadow:none;
  2497. -webkit-box-shadow:none;
  2498. box-shadow:none;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:16px;
  2503. }
  2504. #u51798 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:147px;
  2508. top:346px;
  2509. width:97px;
  2510. height:22px;
  2511. display:flex;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:16px;
  2516. }
  2517. #u51798 .text {
  2518. position:absolute;
  2519. align-self:flex-start;
  2520. padding:0px 0px 0px 0px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u51798_text {
  2525. border-width:0px;
  2526. word-wrap:break-word;
  2527. text-transform:none;
  2528. }
  2529. #u51799 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:348px;
  2533. top:206px;
  2534. width:1231px;
  2535. height:364px;
  2536. }
  2537. #u51800_img {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:122px;
  2543. height:39px;
  2544. }
  2545. #u51800 {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:122px;
  2551. height:39px;
  2552. display:flex;
  2553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2554. font-weight:400;
  2555. font-style:normal;
  2556. font-size:12px;
  2557. color:#FFFFFF;
  2558. }
  2559. #u51800 .text {
  2560. position:absolute;
  2561. align-self:center;
  2562. padding:2px 2px 2px 0px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u51800_text {
  2567. border-width:0px;
  2568. word-wrap:break-word;
  2569. text-transform:none;
  2570. }
  2571. #u51801_img {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:123px;
  2577. height:39px;
  2578. }
  2579. #u51801 {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:122px;
  2583. top:0px;
  2584. width:123px;
  2585. height:39px;
  2586. display:flex;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:12px;
  2591. color:#FFFFFF;
  2592. }
  2593. #u51801 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:2px 2px 2px 0px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u51801_text {
  2601. border-width:0px;
  2602. word-wrap:break-word;
  2603. text-transform:none;
  2604. }
  2605. #u51802_img {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:123px;
  2611. height:39px;
  2612. }
  2613. #u51802 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:245px;
  2617. top:0px;
  2618. width:123px;
  2619. height:39px;
  2620. display:flex;
  2621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2622. font-weight:400;
  2623. font-style:normal;
  2624. font-size:12px;
  2625. color:#FFFFFF;
  2626. }
  2627. #u51802 .text {
  2628. position:absolute;
  2629. align-self:center;
  2630. padding:2px 2px 2px 0px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u51802_text {
  2635. border-width:0px;
  2636. word-wrap:break-word;
  2637. text-transform:none;
  2638. }
  2639. #u51803_img {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:123px;
  2645. height:39px;
  2646. }
  2647. #u51803 {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:368px;
  2651. top:0px;
  2652. width:123px;
  2653. height:39px;
  2654. display:flex;
  2655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2656. font-weight:400;
  2657. font-style:normal;
  2658. font-size:12px;
  2659. color:#FFFFFF;
  2660. }
  2661. #u51803 .text {
  2662. position:absolute;
  2663. align-self:center;
  2664. padding:2px 2px 2px 0px;
  2665. box-sizing:border-box;
  2666. width:100%;
  2667. }
  2668. #u51803_text {
  2669. border-width:0px;
  2670. word-wrap:break-word;
  2671. text-transform:none;
  2672. }
  2673. #u51804_img {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:0px;
  2677. top:0px;
  2678. width:124px;
  2679. height:39px;
  2680. }
  2681. #u51804 {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:491px;
  2685. top:0px;
  2686. width:124px;
  2687. height:39px;
  2688. display:flex;
  2689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2690. font-weight:400;
  2691. font-style:normal;
  2692. font-size:12px;
  2693. color:#FFFFFF;
  2694. }
  2695. #u51804 .text {
  2696. position:absolute;
  2697. align-self:center;
  2698. padding:2px 2px 2px 0px;
  2699. box-sizing:border-box;
  2700. width:100%;
  2701. }
  2702. #u51804_text {
  2703. border-width:0px;
  2704. word-wrap:break-word;
  2705. text-transform:none;
  2706. }
  2707. #u51805_img {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:0px;
  2711. top:0px;
  2712. width:124px;
  2713. height:39px;
  2714. }
  2715. #u51805 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:615px;
  2719. top:0px;
  2720. width:124px;
  2721. height:39px;
  2722. display:flex;
  2723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2724. font-weight:400;
  2725. font-style:normal;
  2726. font-size:12px;
  2727. color:#FFFFFF;
  2728. }
  2729. #u51805 .text {
  2730. position:absolute;
  2731. align-self:center;
  2732. padding:2px 2px 2px 0px;
  2733. box-sizing:border-box;
  2734. width:100%;
  2735. }
  2736. #u51805_text {
  2737. border-width:0px;
  2738. word-wrap:break-word;
  2739. text-transform:none;
  2740. }
  2741. #u51806_img {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:123px;
  2747. height:39px;
  2748. }
  2749. #u51806 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:739px;
  2753. top:0px;
  2754. width:123px;
  2755. height:39px;
  2756. display:flex;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:12px;
  2761. color:#FFFFFF;
  2762. }
  2763. #u51806 .text {
  2764. position:absolute;
  2765. align-self:center;
  2766. padding:2px 2px 2px 0px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u51806_text {
  2771. border-width:0px;
  2772. word-wrap:break-word;
  2773. text-transform:none;
  2774. }
  2775. #u51807_img {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:124px;
  2781. height:39px;
  2782. }
  2783. #u51807 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:862px;
  2787. top:0px;
  2788. width:124px;
  2789. height:39px;
  2790. display:flex;
  2791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2792. font-weight:400;
  2793. font-style:normal;
  2794. font-size:12px;
  2795. color:#FFFFFF;
  2796. }
  2797. #u51807 .text {
  2798. position:absolute;
  2799. align-self:center;
  2800. padding:2px 2px 2px 0px;
  2801. box-sizing:border-box;
  2802. width:100%;
  2803. }
  2804. #u51807_text {
  2805. border-width:0px;
  2806. word-wrap:break-word;
  2807. text-transform:none;
  2808. }
  2809. #u51808_img {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:123px;
  2815. height:39px;
  2816. }
  2817. #u51808 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:986px;
  2821. top:0px;
  2822. width:123px;
  2823. height:39px;
  2824. display:flex;
  2825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2826. font-weight:400;
  2827. font-style:normal;
  2828. font-size:12px;
  2829. color:#FFFFFF;
  2830. }
  2831. #u51808 .text {
  2832. position:absolute;
  2833. align-self:center;
  2834. padding:2px 2px 2px 0px;
  2835. box-sizing:border-box;
  2836. width:100%;
  2837. }
  2838. #u51808_text {
  2839. border-width:0px;
  2840. word-wrap:break-word;
  2841. text-transform:none;
  2842. }
  2843. #u51809_img {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:122px;
  2849. height:39px;
  2850. }
  2851. #u51809 {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:1109px;
  2855. top:0px;
  2856. width:122px;
  2857. height:39px;
  2858. display:flex;
  2859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2860. font-weight:400;
  2861. font-style:normal;
  2862. font-size:12px;
  2863. color:#FFFFFF;
  2864. }
  2865. #u51809 .text {
  2866. position:absolute;
  2867. align-self:center;
  2868. padding:2px 2px 2px 0px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u51809_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. }
  2877. #u51810_img {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:0px;
  2881. top:0px;
  2882. width:122px;
  2883. height:36px;
  2884. }
  2885. #u51810 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:0px;
  2889. top:39px;
  2890. width:122px;
  2891. height:36px;
  2892. display:flex;
  2893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2894. font-weight:400;
  2895. font-style:normal;
  2896. font-size:12px;
  2897. }
  2898. #u51810 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 2px 2px 0px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u51810_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. visibility:hidden;
  2910. }
  2911. #u51811_img {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:123px;
  2917. height:36px;
  2918. }
  2919. #u51811 {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:122px;
  2923. top:39px;
  2924. width:123px;
  2925. height:36px;
  2926. display:flex;
  2927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2928. font-weight:400;
  2929. font-style:normal;
  2930. font-size:12px;
  2931. }
  2932. #u51811 .text {
  2933. position:absolute;
  2934. align-self:center;
  2935. padding:2px 2px 2px 0px;
  2936. box-sizing:border-box;
  2937. width:100%;
  2938. }
  2939. #u51811_text {
  2940. border-width:0px;
  2941. word-wrap:break-word;
  2942. text-transform:none;
  2943. visibility:hidden;
  2944. }
  2945. #u51812_img {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:0px;
  2949. top:0px;
  2950. width:123px;
  2951. height:36px;
  2952. }
  2953. #u51812 {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:245px;
  2957. top:39px;
  2958. width:123px;
  2959. height:36px;
  2960. display:flex;
  2961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2962. font-weight:400;
  2963. font-style:normal;
  2964. font-size:12px;
  2965. }
  2966. #u51812 .text {
  2967. position:absolute;
  2968. align-self:center;
  2969. padding:2px 2px 2px 0px;
  2970. box-sizing:border-box;
  2971. width:100%;
  2972. }
  2973. #u51812_text {
  2974. border-width:0px;
  2975. word-wrap:break-word;
  2976. text-transform:none;
  2977. visibility:hidden;
  2978. }
  2979. #u51813_img {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:0px;
  2983. top:0px;
  2984. width:123px;
  2985. height:36px;
  2986. }
  2987. #u51813 {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:368px;
  2991. top:39px;
  2992. width:123px;
  2993. height:36px;
  2994. display:flex;
  2995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2996. font-weight:400;
  2997. font-style:normal;
  2998. font-size:12px;
  2999. }
  3000. #u51813 .text {
  3001. position:absolute;
  3002. align-self:center;
  3003. padding:2px 2px 2px 0px;
  3004. box-sizing:border-box;
  3005. width:100%;
  3006. }
  3007. #u51813_text {
  3008. border-width:0px;
  3009. word-wrap:break-word;
  3010. text-transform:none;
  3011. visibility:hidden;
  3012. }
  3013. #u51814_img {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:0px;
  3017. top:0px;
  3018. width:124px;
  3019. height:36px;
  3020. }
  3021. #u51814 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:491px;
  3025. top:39px;
  3026. width:124px;
  3027. height:36px;
  3028. display:flex;
  3029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3030. font-weight:400;
  3031. font-style:normal;
  3032. font-size:12px;
  3033. }
  3034. #u51814 .text {
  3035. position:absolute;
  3036. align-self:center;
  3037. padding:2px 2px 2px 0px;
  3038. box-sizing:border-box;
  3039. width:100%;
  3040. }
  3041. #u51814_text {
  3042. border-width:0px;
  3043. word-wrap:break-word;
  3044. text-transform:none;
  3045. visibility:hidden;
  3046. }
  3047. #u51815_img {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:124px;
  3053. height:36px;
  3054. }
  3055. #u51815 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:615px;
  3059. top:39px;
  3060. width:124px;
  3061. height:36px;
  3062. display:flex;
  3063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3064. font-weight:400;
  3065. font-style:normal;
  3066. font-size:12px;
  3067. }
  3068. #u51815 .text {
  3069. position:absolute;
  3070. align-self:center;
  3071. padding:2px 2px 2px 0px;
  3072. box-sizing:border-box;
  3073. width:100%;
  3074. }
  3075. #u51815_text {
  3076. border-width:0px;
  3077. word-wrap:break-word;
  3078. text-transform:none;
  3079. visibility:hidden;
  3080. }
  3081. #u51816_img {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:123px;
  3087. height:36px;
  3088. }
  3089. #u51816 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:739px;
  3093. top:39px;
  3094. width:123px;
  3095. height:36px;
  3096. display:flex;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:12px;
  3101. }
  3102. #u51816 .text {
  3103. position:absolute;
  3104. align-self:center;
  3105. padding:2px 2px 2px 0px;
  3106. box-sizing:border-box;
  3107. width:100%;
  3108. }
  3109. #u51816_text {
  3110. border-width:0px;
  3111. word-wrap:break-word;
  3112. text-transform:none;
  3113. visibility:hidden;
  3114. }
  3115. #u51817_img {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:124px;
  3121. height:36px;
  3122. }
  3123. #u51817 {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:862px;
  3127. top:39px;
  3128. width:124px;
  3129. height:36px;
  3130. display:flex;
  3131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3132. font-weight:400;
  3133. font-style:normal;
  3134. font-size:12px;
  3135. }
  3136. #u51817 .text {
  3137. position:absolute;
  3138. align-self:center;
  3139. padding:2px 2px 2px 0px;
  3140. box-sizing:border-box;
  3141. width:100%;
  3142. }
  3143. #u51817_text {
  3144. border-width:0px;
  3145. word-wrap:break-word;
  3146. text-transform:none;
  3147. visibility:hidden;
  3148. }
  3149. #u51818_img {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:0px;
  3153. top:0px;
  3154. width:123px;
  3155. height:36px;
  3156. }
  3157. #u51818 {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:986px;
  3161. top:39px;
  3162. width:123px;
  3163. height:36px;
  3164. display:flex;
  3165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3166. font-weight:400;
  3167. font-style:normal;
  3168. font-size:12px;
  3169. }
  3170. #u51818 .text {
  3171. position:absolute;
  3172. align-self:center;
  3173. padding:2px 2px 2px 0px;
  3174. box-sizing:border-box;
  3175. width:100%;
  3176. }
  3177. #u51818_text {
  3178. border-width:0px;
  3179. word-wrap:break-word;
  3180. text-transform:none;
  3181. visibility:hidden;
  3182. }
  3183. #u51819_img {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:0px;
  3187. top:0px;
  3188. width:122px;
  3189. height:36px;
  3190. }
  3191. #u51819 {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:1109px;
  3195. top:39px;
  3196. width:122px;
  3197. height:36px;
  3198. display:flex;
  3199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3200. font-weight:400;
  3201. font-style:normal;
  3202. font-size:12px;
  3203. }
  3204. #u51819 .text {
  3205. position:absolute;
  3206. align-self:center;
  3207. padding:2px 2px 2px 0px;
  3208. box-sizing:border-box;
  3209. width:100%;
  3210. }
  3211. #u51819_text {
  3212. border-width:0px;
  3213. word-wrap:break-word;
  3214. text-transform:none;
  3215. visibility:hidden;
  3216. }
  3217. #u51820_img {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:0px;
  3221. top:0px;
  3222. width:122px;
  3223. height:38px;
  3224. }
  3225. #u51820 {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:75px;
  3230. width:122px;
  3231. height:38px;
  3232. display:flex;
  3233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3234. font-weight:400;
  3235. font-style:normal;
  3236. font-size:12px;
  3237. }
  3238. #u51820 .text {
  3239. position:absolute;
  3240. align-self:center;
  3241. padding:2px 2px 2px 0px;
  3242. box-sizing:border-box;
  3243. width:100%;
  3244. }
  3245. #u51820_text {
  3246. border-width:0px;
  3247. word-wrap:break-word;
  3248. text-transform:none;
  3249. visibility:hidden;
  3250. }
  3251. #u51821_img {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:123px;
  3257. height:38px;
  3258. }
  3259. #u51821 {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:122px;
  3263. top:75px;
  3264. width:123px;
  3265. height:38px;
  3266. display:flex;
  3267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3268. font-weight:400;
  3269. font-style:normal;
  3270. font-size:12px;
  3271. }
  3272. #u51821 .text {
  3273. position:absolute;
  3274. align-self:center;
  3275. padding:2px 2px 2px 0px;
  3276. box-sizing:border-box;
  3277. width:100%;
  3278. }
  3279. #u51821_text {
  3280. border-width:0px;
  3281. word-wrap:break-word;
  3282. text-transform:none;
  3283. visibility:hidden;
  3284. }
  3285. #u51822_img {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:123px;
  3291. height:38px;
  3292. }
  3293. #u51822 {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:245px;
  3297. top:75px;
  3298. width:123px;
  3299. height:38px;
  3300. display:flex;
  3301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3302. font-weight:400;
  3303. font-style:normal;
  3304. font-size:12px;
  3305. }
  3306. #u51822 .text {
  3307. position:absolute;
  3308. align-self:center;
  3309. padding:2px 2px 2px 0px;
  3310. box-sizing:border-box;
  3311. width:100%;
  3312. }
  3313. #u51822_text {
  3314. border-width:0px;
  3315. word-wrap:break-word;
  3316. text-transform:none;
  3317. visibility:hidden;
  3318. }
  3319. #u51823_img {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:0px;
  3323. top:0px;
  3324. width:123px;
  3325. height:38px;
  3326. }
  3327. #u51823 {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:368px;
  3331. top:75px;
  3332. width:123px;
  3333. height:38px;
  3334. display:flex;
  3335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3336. font-weight:400;
  3337. font-style:normal;
  3338. font-size:12px;
  3339. }
  3340. #u51823 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 0px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u51823_text {
  3348. border-width:0px;
  3349. word-wrap:break-word;
  3350. text-transform:none;
  3351. visibility:hidden;
  3352. }
  3353. #u51824_img {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:124px;
  3359. height:38px;
  3360. }
  3361. #u51824 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:491px;
  3365. top:75px;
  3366. width:124px;
  3367. height:38px;
  3368. display:flex;
  3369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. font-size:12px;
  3373. }
  3374. #u51824 .text {
  3375. position:absolute;
  3376. align-self:center;
  3377. padding:2px 2px 2px 0px;
  3378. box-sizing:border-box;
  3379. width:100%;
  3380. }
  3381. #u51824_text {
  3382. border-width:0px;
  3383. word-wrap:break-word;
  3384. text-transform:none;
  3385. visibility:hidden;
  3386. }
  3387. #u51825_img {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:0px;
  3391. top:0px;
  3392. width:124px;
  3393. height:38px;
  3394. }
  3395. #u51825 {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:615px;
  3399. top:75px;
  3400. width:124px;
  3401. height:38px;
  3402. display:flex;
  3403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3404. font-weight:400;
  3405. font-style:normal;
  3406. font-size:12px;
  3407. }
  3408. #u51825 .text {
  3409. position:absolute;
  3410. align-self:center;
  3411. padding:2px 2px 2px 0px;
  3412. box-sizing:border-box;
  3413. width:100%;
  3414. }
  3415. #u51825_text {
  3416. border-width:0px;
  3417. word-wrap:break-word;
  3418. text-transform:none;
  3419. visibility:hidden;
  3420. }
  3421. #u51826_img {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:123px;
  3427. height:38px;
  3428. }
  3429. #u51826 {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:739px;
  3433. top:75px;
  3434. width:123px;
  3435. height:38px;
  3436. display:flex;
  3437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3438. font-weight:400;
  3439. font-style:normal;
  3440. font-size:12px;
  3441. }
  3442. #u51826 .text {
  3443. position:absolute;
  3444. align-self:center;
  3445. padding:2px 2px 2px 0px;
  3446. box-sizing:border-box;
  3447. width:100%;
  3448. }
  3449. #u51826_text {
  3450. border-width:0px;
  3451. word-wrap:break-word;
  3452. text-transform:none;
  3453. visibility:hidden;
  3454. }
  3455. #u51827_img {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:124px;
  3461. height:38px;
  3462. }
  3463. #u51827 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:862px;
  3467. top:75px;
  3468. width:124px;
  3469. height:38px;
  3470. display:flex;
  3471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. font-size:12px;
  3475. }
  3476. #u51827 .text {
  3477. position:absolute;
  3478. align-self:center;
  3479. padding:2px 2px 2px 0px;
  3480. box-sizing:border-box;
  3481. width:100%;
  3482. }
  3483. #u51827_text {
  3484. border-width:0px;
  3485. word-wrap:break-word;
  3486. text-transform:none;
  3487. visibility:hidden;
  3488. }
  3489. #u51828_img {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:123px;
  3495. height:38px;
  3496. }
  3497. #u51828 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:986px;
  3501. top:75px;
  3502. width:123px;
  3503. height:38px;
  3504. display:flex;
  3505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3506. font-weight:400;
  3507. font-style:normal;
  3508. font-size:12px;
  3509. }
  3510. #u51828 .text {
  3511. position:absolute;
  3512. align-self:center;
  3513. padding:2px 2px 2px 0px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u51828_text {
  3518. border-width:0px;
  3519. word-wrap:break-word;
  3520. text-transform:none;
  3521. visibility:hidden;
  3522. }
  3523. #u51829_img {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:122px;
  3529. height:38px;
  3530. }
  3531. #u51829 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:1109px;
  3535. top:75px;
  3536. width:122px;
  3537. height:38px;
  3538. display:flex;
  3539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:12px;
  3543. }
  3544. #u51829 .text {
  3545. position:absolute;
  3546. align-self:center;
  3547. padding:2px 2px 2px 0px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u51829_text {
  3552. border-width:0px;
  3553. word-wrap:break-word;
  3554. text-transform:none;
  3555. visibility:hidden;
  3556. }
  3557. #u51830_img {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:122px;
  3563. height:38px;
  3564. }
  3565. #u51830 {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:0px;
  3569. top:113px;
  3570. width:122px;
  3571. height:38px;
  3572. display:flex;
  3573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3574. font-weight:400;
  3575. font-style:normal;
  3576. font-size:12px;
  3577. }
  3578. #u51830 .text {
  3579. position:absolute;
  3580. align-self:center;
  3581. padding:2px 2px 2px 0px;
  3582. box-sizing:border-box;
  3583. width:100%;
  3584. }
  3585. #u51830_text {
  3586. border-width:0px;
  3587. word-wrap:break-word;
  3588. text-transform:none;
  3589. visibility:hidden;
  3590. }
  3591. #u51831_img {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:0px;
  3596. width:123px;
  3597. height:38px;
  3598. }
  3599. #u51831 {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:122px;
  3603. top:113px;
  3604. width:123px;
  3605. height:38px;
  3606. display:flex;
  3607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:12px;
  3611. }
  3612. #u51831 .text {
  3613. position:absolute;
  3614. align-self:center;
  3615. padding:2px 2px 2px 0px;
  3616. box-sizing:border-box;
  3617. width:100%;
  3618. }
  3619. #u51831_text {
  3620. border-width:0px;
  3621. word-wrap:break-word;
  3622. text-transform:none;
  3623. visibility:hidden;
  3624. }
  3625. #u51832_img {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:0px;
  3629. top:0px;
  3630. width:123px;
  3631. height:38px;
  3632. }
  3633. #u51832 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:245px;
  3637. top:113px;
  3638. width:123px;
  3639. height:38px;
  3640. display:flex;
  3641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3642. font-weight:400;
  3643. font-style:normal;
  3644. font-size:12px;
  3645. }
  3646. #u51832 .text {
  3647. position:absolute;
  3648. align-self:center;
  3649. padding:2px 2px 2px 0px;
  3650. box-sizing:border-box;
  3651. width:100%;
  3652. }
  3653. #u51832_text {
  3654. border-width:0px;
  3655. word-wrap:break-word;
  3656. text-transform:none;
  3657. visibility:hidden;
  3658. }
  3659. #u51833_img {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:123px;
  3665. height:38px;
  3666. }
  3667. #u51833 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:368px;
  3671. top:113px;
  3672. width:123px;
  3673. height:38px;
  3674. display:flex;
  3675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3676. font-weight:400;
  3677. font-style:normal;
  3678. font-size:12px;
  3679. }
  3680. #u51833 .text {
  3681. position:absolute;
  3682. align-self:center;
  3683. padding:2px 2px 2px 0px;
  3684. box-sizing:border-box;
  3685. width:100%;
  3686. }
  3687. #u51833_text {
  3688. border-width:0px;
  3689. word-wrap:break-word;
  3690. text-transform:none;
  3691. visibility:hidden;
  3692. }
  3693. #u51834_img {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:0px;
  3697. top:0px;
  3698. width:124px;
  3699. height:38px;
  3700. }
  3701. #u51834 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:491px;
  3705. top:113px;
  3706. width:124px;
  3707. height:38px;
  3708. display:flex;
  3709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3710. font-weight:400;
  3711. font-style:normal;
  3712. font-size:12px;
  3713. }
  3714. #u51834 .text {
  3715. position:absolute;
  3716. align-self:center;
  3717. padding:2px 2px 2px 0px;
  3718. box-sizing:border-box;
  3719. width:100%;
  3720. }
  3721. #u51834_text {
  3722. border-width:0px;
  3723. word-wrap:break-word;
  3724. text-transform:none;
  3725. visibility:hidden;
  3726. }
  3727. #u51835_img {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:0px;
  3731. top:0px;
  3732. width:124px;
  3733. height:38px;
  3734. }
  3735. #u51835 {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:615px;
  3739. top:113px;
  3740. width:124px;
  3741. height:38px;
  3742. display:flex;
  3743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3744. font-weight:400;
  3745. font-style:normal;
  3746. font-size:12px;
  3747. }
  3748. #u51835 .text {
  3749. position:absolute;
  3750. align-self:center;
  3751. padding:2px 2px 2px 0px;
  3752. box-sizing:border-box;
  3753. width:100%;
  3754. }
  3755. #u51835_text {
  3756. border-width:0px;
  3757. word-wrap:break-word;
  3758. text-transform:none;
  3759. visibility:hidden;
  3760. }
  3761. #u51836_img {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:123px;
  3767. height:38px;
  3768. }
  3769. #u51836 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:739px;
  3773. top:113px;
  3774. width:123px;
  3775. height:38px;
  3776. display:flex;
  3777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3778. font-weight:400;
  3779. font-style:normal;
  3780. font-size:12px;
  3781. }
  3782. #u51836 .text {
  3783. position:absolute;
  3784. align-self:center;
  3785. padding:2px 2px 2px 0px;
  3786. box-sizing:border-box;
  3787. width:100%;
  3788. }
  3789. #u51836_text {
  3790. border-width:0px;
  3791. word-wrap:break-word;
  3792. text-transform:none;
  3793. visibility:hidden;
  3794. }
  3795. #u51837_img {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:0px;
  3799. top:0px;
  3800. width:124px;
  3801. height:38px;
  3802. }
  3803. #u51837 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:862px;
  3807. top:113px;
  3808. width:124px;
  3809. height:38px;
  3810. display:flex;
  3811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3812. font-weight:400;
  3813. font-style:normal;
  3814. font-size:12px;
  3815. }
  3816. #u51837 .text {
  3817. position:absolute;
  3818. align-self:center;
  3819. padding:2px 2px 2px 0px;
  3820. box-sizing:border-box;
  3821. width:100%;
  3822. }
  3823. #u51837_text {
  3824. border-width:0px;
  3825. word-wrap:break-word;
  3826. text-transform:none;
  3827. visibility:hidden;
  3828. }
  3829. #u51838_img {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:0px;
  3834. width:123px;
  3835. height:38px;
  3836. }
  3837. #u51838 {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:986px;
  3841. top:113px;
  3842. width:123px;
  3843. height:38px;
  3844. display:flex;
  3845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. font-size:12px;
  3849. }
  3850. #u51838 .text {
  3851. position:absolute;
  3852. align-self:center;
  3853. padding:2px 2px 2px 0px;
  3854. box-sizing:border-box;
  3855. width:100%;
  3856. }
  3857. #u51838_text {
  3858. border-width:0px;
  3859. word-wrap:break-word;
  3860. text-transform:none;
  3861. visibility:hidden;
  3862. }
  3863. #u51839_img {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:0px;
  3867. top:0px;
  3868. width:122px;
  3869. height:38px;
  3870. }
  3871. #u51839 {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:1109px;
  3875. top:113px;
  3876. width:122px;
  3877. height:38px;
  3878. display:flex;
  3879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3880. font-weight:400;
  3881. font-style:normal;
  3882. font-size:12px;
  3883. }
  3884. #u51839 .text {
  3885. position:absolute;
  3886. align-self:center;
  3887. padding:2px 2px 2px 0px;
  3888. box-sizing:border-box;
  3889. width:100%;
  3890. }
  3891. #u51839_text {
  3892. border-width:0px;
  3893. word-wrap:break-word;
  3894. text-transform:none;
  3895. visibility:hidden;
  3896. }
  3897. #u51840_img {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:0px;
  3901. top:0px;
  3902. width:122px;
  3903. height:38px;
  3904. }
  3905. #u51840 {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:151px;
  3910. width:122px;
  3911. height:38px;
  3912. display:flex;
  3913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3914. font-weight:400;
  3915. font-style:normal;
  3916. font-size:12px;
  3917. }
  3918. #u51840 .text {
  3919. position:absolute;
  3920. align-self:center;
  3921. padding:2px 2px 2px 0px;
  3922. box-sizing:border-box;
  3923. width:100%;
  3924. }
  3925. #u51840_text {
  3926. border-width:0px;
  3927. word-wrap:break-word;
  3928. text-transform:none;
  3929. visibility:hidden;
  3930. }
  3931. #u51841_img {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:123px;
  3937. height:38px;
  3938. }
  3939. #u51841 {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:122px;
  3943. top:151px;
  3944. width:123px;
  3945. height:38px;
  3946. display:flex;
  3947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3948. font-weight:400;
  3949. font-style:normal;
  3950. font-size:12px;
  3951. }
  3952. #u51841 .text {
  3953. position:absolute;
  3954. align-self:center;
  3955. padding:2px 2px 2px 0px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u51841_text {
  3960. border-width:0px;
  3961. word-wrap:break-word;
  3962. text-transform:none;
  3963. visibility:hidden;
  3964. }
  3965. #u51842_img {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:123px;
  3971. height:38px;
  3972. }
  3973. #u51842 {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:245px;
  3977. top:151px;
  3978. width:123px;
  3979. height:38px;
  3980. display:flex;
  3981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3982. font-weight:400;
  3983. font-style:normal;
  3984. font-size:12px;
  3985. }
  3986. #u51842 .text {
  3987. position:absolute;
  3988. align-self:center;
  3989. padding:2px 2px 2px 0px;
  3990. box-sizing:border-box;
  3991. width:100%;
  3992. }
  3993. #u51842_text {
  3994. border-width:0px;
  3995. word-wrap:break-word;
  3996. text-transform:none;
  3997. visibility:hidden;
  3998. }
  3999. #u51843_img {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:0px;
  4003. top:0px;
  4004. width:123px;
  4005. height:38px;
  4006. }
  4007. #u51843 {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:368px;
  4011. top:151px;
  4012. width:123px;
  4013. height:38px;
  4014. display:flex;
  4015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4016. font-weight:400;
  4017. font-style:normal;
  4018. font-size:12px;
  4019. }
  4020. #u51843 .text {
  4021. position:absolute;
  4022. align-self:center;
  4023. padding:2px 2px 2px 0px;
  4024. box-sizing:border-box;
  4025. width:100%;
  4026. }
  4027. #u51843_text {
  4028. border-width:0px;
  4029. word-wrap:break-word;
  4030. text-transform:none;
  4031. visibility:hidden;
  4032. }
  4033. #u51844_img {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:0px;
  4037. top:0px;
  4038. width:124px;
  4039. height:38px;
  4040. }
  4041. #u51844 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:491px;
  4045. top:151px;
  4046. width:124px;
  4047. height:38px;
  4048. display:flex;
  4049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4050. font-weight:400;
  4051. font-style:normal;
  4052. font-size:12px;
  4053. }
  4054. #u51844 .text {
  4055. position:absolute;
  4056. align-self:center;
  4057. padding:2px 2px 2px 0px;
  4058. box-sizing:border-box;
  4059. width:100%;
  4060. }
  4061. #u51844_text {
  4062. border-width:0px;
  4063. word-wrap:break-word;
  4064. text-transform:none;
  4065. visibility:hidden;
  4066. }
  4067. #u51845_img {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:0px;
  4071. top:0px;
  4072. width:124px;
  4073. height:38px;
  4074. }
  4075. #u51845 {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:615px;
  4079. top:151px;
  4080. width:124px;
  4081. height:38px;
  4082. display:flex;
  4083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4084. font-weight:400;
  4085. font-style:normal;
  4086. font-size:12px;
  4087. }
  4088. #u51845 .text {
  4089. position:absolute;
  4090. align-self:center;
  4091. padding:2px 2px 2px 0px;
  4092. box-sizing:border-box;
  4093. width:100%;
  4094. }
  4095. #u51845_text {
  4096. border-width:0px;
  4097. word-wrap:break-word;
  4098. text-transform:none;
  4099. visibility:hidden;
  4100. }
  4101. #u51846_img {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:0px;
  4106. width:123px;
  4107. height:38px;
  4108. }
  4109. #u51846 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:739px;
  4113. top:151px;
  4114. width:123px;
  4115. height:38px;
  4116. display:flex;
  4117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4118. font-weight:400;
  4119. font-style:normal;
  4120. font-size:12px;
  4121. }
  4122. #u51846 .text {
  4123. position:absolute;
  4124. align-self:center;
  4125. padding:2px 2px 2px 0px;
  4126. box-sizing:border-box;
  4127. width:100%;
  4128. }
  4129. #u51846_text {
  4130. border-width:0px;
  4131. word-wrap:break-word;
  4132. text-transform:none;
  4133. visibility:hidden;
  4134. }
  4135. #u51847_img {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:0px;
  4139. top:0px;
  4140. width:124px;
  4141. height:38px;
  4142. }
  4143. #u51847 {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:862px;
  4147. top:151px;
  4148. width:124px;
  4149. height:38px;
  4150. display:flex;
  4151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4152. font-weight:400;
  4153. font-style:normal;
  4154. font-size:12px;
  4155. }
  4156. #u51847 .text {
  4157. position:absolute;
  4158. align-self:center;
  4159. padding:2px 2px 2px 0px;
  4160. box-sizing:border-box;
  4161. width:100%;
  4162. }
  4163. #u51847_text {
  4164. border-width:0px;
  4165. word-wrap:break-word;
  4166. text-transform:none;
  4167. visibility:hidden;
  4168. }
  4169. #u51848_img {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:123px;
  4175. height:38px;
  4176. }
  4177. #u51848 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:986px;
  4181. top:151px;
  4182. width:123px;
  4183. height:38px;
  4184. display:flex;
  4185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4186. font-weight:400;
  4187. font-style:normal;
  4188. font-size:12px;
  4189. }
  4190. #u51848 .text {
  4191. position:absolute;
  4192. align-self:center;
  4193. padding:2px 2px 2px 0px;
  4194. box-sizing:border-box;
  4195. width:100%;
  4196. }
  4197. #u51848_text {
  4198. border-width:0px;
  4199. word-wrap:break-word;
  4200. text-transform:none;
  4201. visibility:hidden;
  4202. }
  4203. #u51849_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:122px;
  4209. height:38px;
  4210. }
  4211. #u51849 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:1109px;
  4215. top:151px;
  4216. width:122px;
  4217. height:38px;
  4218. display:flex;
  4219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. font-size:12px;
  4223. }
  4224. #u51849 .text {
  4225. position:absolute;
  4226. align-self:center;
  4227. padding:2px 2px 2px 0px;
  4228. box-sizing:border-box;
  4229. width:100%;
  4230. }
  4231. #u51849_text {
  4232. border-width:0px;
  4233. word-wrap:break-word;
  4234. text-transform:none;
  4235. visibility:hidden;
  4236. }
  4237. #u51850_img {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:0px;
  4241. top:0px;
  4242. width:122px;
  4243. height:35px;
  4244. }
  4245. #u51850 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:0px;
  4249. top:189px;
  4250. width:122px;
  4251. height:35px;
  4252. display:flex;
  4253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. font-size:12px;
  4257. color:#606266;
  4258. }
  4259. #u51850 .text {
  4260. position:absolute;
  4261. align-self:center;
  4262. padding:2px 2px 2px 0px;
  4263. box-sizing:border-box;
  4264. width:100%;
  4265. }
  4266. #u51850_text {
  4267. border-width:0px;
  4268. word-wrap:break-word;
  4269. text-transform:none;
  4270. visibility:hidden;
  4271. }
  4272. #u51851_img {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:0px;
  4276. top:0px;
  4277. width:123px;
  4278. height:35px;
  4279. }
  4280. #u51851 {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:122px;
  4284. top:189px;
  4285. width:123px;
  4286. height:35px;
  4287. display:flex;
  4288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4289. font-weight:400;
  4290. font-style:normal;
  4291. font-size:12px;
  4292. color:#606266;
  4293. }
  4294. #u51851 .text {
  4295. position:absolute;
  4296. align-self:center;
  4297. padding:2px 2px 2px 0px;
  4298. box-sizing:border-box;
  4299. width:100%;
  4300. }
  4301. #u51851_text {
  4302. border-width:0px;
  4303. word-wrap:break-word;
  4304. text-transform:none;
  4305. visibility:hidden;
  4306. }
  4307. #u51852_img {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:123px;
  4313. height:35px;
  4314. }
  4315. #u51852 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:245px;
  4319. top:189px;
  4320. width:123px;
  4321. height:35px;
  4322. display:flex;
  4323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4324. font-weight:400;
  4325. font-style:normal;
  4326. font-size:12px;
  4327. color:#606266;
  4328. }
  4329. #u51852 .text {
  4330. position:absolute;
  4331. align-self:center;
  4332. padding:2px 2px 2px 0px;
  4333. box-sizing:border-box;
  4334. width:100%;
  4335. }
  4336. #u51852_text {
  4337. border-width:0px;
  4338. word-wrap:break-word;
  4339. text-transform:none;
  4340. visibility:hidden;
  4341. }
  4342. #u51853_img {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:0px;
  4346. top:0px;
  4347. width:123px;
  4348. height:35px;
  4349. }
  4350. #u51853 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:368px;
  4354. top:189px;
  4355. width:123px;
  4356. height:35px;
  4357. display:flex;
  4358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4359. font-weight:400;
  4360. font-style:normal;
  4361. font-size:12px;
  4362. color:#606266;
  4363. }
  4364. #u51853 .text {
  4365. position:absolute;
  4366. align-self:center;
  4367. padding:2px 2px 2px 0px;
  4368. box-sizing:border-box;
  4369. width:100%;
  4370. }
  4371. #u51853_text {
  4372. border-width:0px;
  4373. word-wrap:break-word;
  4374. text-transform:none;
  4375. visibility:hidden;
  4376. }
  4377. #u51854_img {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:124px;
  4383. height:35px;
  4384. }
  4385. #u51854 {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:491px;
  4389. top:189px;
  4390. width:124px;
  4391. height:35px;
  4392. display:flex;
  4393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4394. font-weight:400;
  4395. font-style:normal;
  4396. font-size:12px;
  4397. color:#606266;
  4398. }
  4399. #u51854 .text {
  4400. position:absolute;
  4401. align-self:center;
  4402. padding:2px 2px 2px 0px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u51854_text {
  4407. border-width:0px;
  4408. word-wrap:break-word;
  4409. text-transform:none;
  4410. visibility:hidden;
  4411. }
  4412. #u51855_img {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:124px;
  4418. height:35px;
  4419. }
  4420. #u51855 {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:615px;
  4424. top:189px;
  4425. width:124px;
  4426. height:35px;
  4427. display:flex;
  4428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4429. font-weight:400;
  4430. font-style:normal;
  4431. font-size:12px;
  4432. color:#606266;
  4433. }
  4434. #u51855 .text {
  4435. position:absolute;
  4436. align-self:center;
  4437. padding:2px 2px 2px 0px;
  4438. box-sizing:border-box;
  4439. width:100%;
  4440. }
  4441. #u51855_text {
  4442. border-width:0px;
  4443. word-wrap:break-word;
  4444. text-transform:none;
  4445. visibility:hidden;
  4446. }
  4447. #u51856_img {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:0px;
  4451. top:0px;
  4452. width:123px;
  4453. height:35px;
  4454. }
  4455. #u51856 {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:739px;
  4459. top:189px;
  4460. width:123px;
  4461. height:35px;
  4462. display:flex;
  4463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4464. font-weight:400;
  4465. font-style:normal;
  4466. font-size:12px;
  4467. color:#606266;
  4468. }
  4469. #u51856 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 0px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u51856_text {
  4477. border-width:0px;
  4478. word-wrap:break-word;
  4479. text-transform:none;
  4480. visibility:hidden;
  4481. }
  4482. #u51857_img {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:124px;
  4488. height:35px;
  4489. }
  4490. #u51857 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:862px;
  4494. top:189px;
  4495. width:124px;
  4496. height:35px;
  4497. display:flex;
  4498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:12px;
  4502. color:#606266;
  4503. }
  4504. #u51857 .text {
  4505. position:absolute;
  4506. align-self:center;
  4507. padding:2px 2px 2px 0px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u51857_text {
  4512. border-width:0px;
  4513. word-wrap:break-word;
  4514. text-transform:none;
  4515. visibility:hidden;
  4516. }
  4517. #u51858_img {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:123px;
  4523. height:35px;
  4524. }
  4525. #u51858 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:986px;
  4529. top:189px;
  4530. width:123px;
  4531. height:35px;
  4532. display:flex;
  4533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4534. font-weight:400;
  4535. font-style:normal;
  4536. font-size:12px;
  4537. color:#606266;
  4538. }
  4539. #u51858 .text {
  4540. position:absolute;
  4541. align-self:center;
  4542. padding:2px 2px 2px 0px;
  4543. box-sizing:border-box;
  4544. width:100%;
  4545. }
  4546. #u51858_text {
  4547. border-width:0px;
  4548. word-wrap:break-word;
  4549. text-transform:none;
  4550. visibility:hidden;
  4551. }
  4552. #u51859_img {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:122px;
  4558. height:35px;
  4559. }
  4560. #u51859 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:1109px;
  4564. top:189px;
  4565. width:122px;
  4566. height:35px;
  4567. display:flex;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:12px;
  4572. color:#606266;
  4573. }
  4574. #u51859 .text {
  4575. position:absolute;
  4576. align-self:center;
  4577. padding:2px 2px 2px 0px;
  4578. box-sizing:border-box;
  4579. width:100%;
  4580. }
  4581. #u51859_text {
  4582. border-width:0px;
  4583. word-wrap:break-word;
  4584. text-transform:none;
  4585. visibility:hidden;
  4586. }
  4587. #u51860_img {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:122px;
  4593. height:35px;
  4594. }
  4595. #u51860 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:0px;
  4599. top:224px;
  4600. width:122px;
  4601. height:35px;
  4602. display:flex;
  4603. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4604. font-weight:400;
  4605. font-style:normal;
  4606. font-size:12px;
  4607. color:#606266;
  4608. }
  4609. #u51860 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:2px 2px 2px 0px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u51860_text {
  4617. border-width:0px;
  4618. word-wrap:break-word;
  4619. text-transform:none;
  4620. visibility:hidden;
  4621. }
  4622. #u51861_img {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:123px;
  4628. height:35px;
  4629. }
  4630. #u51861 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:122px;
  4634. top:224px;
  4635. width:123px;
  4636. height:35px;
  4637. display:flex;
  4638. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:12px;
  4642. color:#606266;
  4643. }
  4644. #u51861 .text {
  4645. position:absolute;
  4646. align-self:center;
  4647. padding:2px 2px 2px 0px;
  4648. box-sizing:border-box;
  4649. width:100%;
  4650. }
  4651. #u51861_text {
  4652. border-width:0px;
  4653. word-wrap:break-word;
  4654. text-transform:none;
  4655. visibility:hidden;
  4656. }
  4657. #u51862_img {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:123px;
  4663. height:35px;
  4664. }
  4665. #u51862 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:245px;
  4669. top:224px;
  4670. width:123px;
  4671. height:35px;
  4672. display:flex;
  4673. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4674. font-weight:400;
  4675. font-style:normal;
  4676. font-size:12px;
  4677. color:#606266;
  4678. }
  4679. #u51862 .text {
  4680. position:absolute;
  4681. align-self:center;
  4682. padding:2px 2px 2px 0px;
  4683. box-sizing:border-box;
  4684. width:100%;
  4685. }
  4686. #u51862_text {
  4687. border-width:0px;
  4688. word-wrap:break-word;
  4689. text-transform:none;
  4690. visibility:hidden;
  4691. }
  4692. #u51863_img {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:0px;
  4696. top:0px;
  4697. width:123px;
  4698. height:35px;
  4699. }
  4700. #u51863 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:368px;
  4704. top:224px;
  4705. width:123px;
  4706. height:35px;
  4707. display:flex;
  4708. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4709. font-weight:400;
  4710. font-style:normal;
  4711. font-size:12px;
  4712. color:#606266;
  4713. }
  4714. #u51863 .text {
  4715. position:absolute;
  4716. align-self:center;
  4717. padding:2px 2px 2px 0px;
  4718. box-sizing:border-box;
  4719. width:100%;
  4720. }
  4721. #u51863_text {
  4722. border-width:0px;
  4723. word-wrap:break-word;
  4724. text-transform:none;
  4725. visibility:hidden;
  4726. }
  4727. #u51864_img {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:0px;
  4731. top:0px;
  4732. width:124px;
  4733. height:35px;
  4734. }
  4735. #u51864 {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:491px;
  4739. top:224px;
  4740. width:124px;
  4741. height:35px;
  4742. display:flex;
  4743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4744. font-weight:400;
  4745. font-style:normal;
  4746. font-size:12px;
  4747. color:#606266;
  4748. }
  4749. #u51864 .text {
  4750. position:absolute;
  4751. align-self:center;
  4752. padding:2px 2px 2px 0px;
  4753. box-sizing:border-box;
  4754. width:100%;
  4755. }
  4756. #u51864_text {
  4757. border-width:0px;
  4758. word-wrap:break-word;
  4759. text-transform:none;
  4760. visibility:hidden;
  4761. }
  4762. #u51865_img {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:0px;
  4766. top:0px;
  4767. width:124px;
  4768. height:35px;
  4769. }
  4770. #u51865 {
  4771. border-width:0px;
  4772. position:absolute;
  4773. left:615px;
  4774. top:224px;
  4775. width:124px;
  4776. height:35px;
  4777. display:flex;
  4778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4779. font-weight:400;
  4780. font-style:normal;
  4781. font-size:12px;
  4782. color:#606266;
  4783. }
  4784. #u51865 .text {
  4785. position:absolute;
  4786. align-self:center;
  4787. padding:2px 2px 2px 0px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u51865_text {
  4792. border-width:0px;
  4793. word-wrap:break-word;
  4794. text-transform:none;
  4795. visibility:hidden;
  4796. }
  4797. #u51866_img {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:123px;
  4803. height:35px;
  4804. }
  4805. #u51866 {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:739px;
  4809. top:224px;
  4810. width:123px;
  4811. height:35px;
  4812. display:flex;
  4813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4814. font-weight:400;
  4815. font-style:normal;
  4816. font-size:12px;
  4817. color:#606266;
  4818. }
  4819. #u51866 .text {
  4820. position:absolute;
  4821. align-self:center;
  4822. padding:2px 2px 2px 0px;
  4823. box-sizing:border-box;
  4824. width:100%;
  4825. }
  4826. #u51866_text {
  4827. border-width:0px;
  4828. word-wrap:break-word;
  4829. text-transform:none;
  4830. visibility:hidden;
  4831. }
  4832. #u51867_img {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:0px;
  4836. top:0px;
  4837. width:124px;
  4838. height:35px;
  4839. }
  4840. #u51867 {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:862px;
  4844. top:224px;
  4845. width:124px;
  4846. height:35px;
  4847. display:flex;
  4848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4849. font-weight:400;
  4850. font-style:normal;
  4851. font-size:12px;
  4852. color:#606266;
  4853. }
  4854. #u51867 .text {
  4855. position:absolute;
  4856. align-self:center;
  4857. padding:2px 2px 2px 0px;
  4858. box-sizing:border-box;
  4859. width:100%;
  4860. }
  4861. #u51867_text {
  4862. border-width:0px;
  4863. word-wrap:break-word;
  4864. text-transform:none;
  4865. visibility:hidden;
  4866. }
  4867. #u51868_img {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:123px;
  4873. height:35px;
  4874. }
  4875. #u51868 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:986px;
  4879. top:224px;
  4880. width:123px;
  4881. height:35px;
  4882. display:flex;
  4883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4884. font-weight:400;
  4885. font-style:normal;
  4886. font-size:12px;
  4887. color:#606266;
  4888. }
  4889. #u51868 .text {
  4890. position:absolute;
  4891. align-self:center;
  4892. padding:2px 2px 2px 0px;
  4893. box-sizing:border-box;
  4894. width:100%;
  4895. }
  4896. #u51868_text {
  4897. border-width:0px;
  4898. word-wrap:break-word;
  4899. text-transform:none;
  4900. visibility:hidden;
  4901. }
  4902. #u51869_img {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:0px;
  4906. top:0px;
  4907. width:122px;
  4908. height:35px;
  4909. }
  4910. #u51869 {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:1109px;
  4914. top:224px;
  4915. width:122px;
  4916. height:35px;
  4917. display:flex;
  4918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4919. font-weight:400;
  4920. font-style:normal;
  4921. font-size:12px;
  4922. color:#606266;
  4923. }
  4924. #u51869 .text {
  4925. position:absolute;
  4926. align-self:center;
  4927. padding:2px 2px 2px 0px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u51869_text {
  4932. border-width:0px;
  4933. word-wrap:break-word;
  4934. text-transform:none;
  4935. visibility:hidden;
  4936. }
  4937. #u51870_img {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:122px;
  4943. height:35px;
  4944. }
  4945. #u51870 {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:259px;
  4950. width:122px;
  4951. height:35px;
  4952. display:flex;
  4953. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4954. font-weight:400;
  4955. font-style:normal;
  4956. font-size:12px;
  4957. color:#606266;
  4958. }
  4959. #u51870 .text {
  4960. position:absolute;
  4961. align-self:center;
  4962. padding:2px 2px 2px 0px;
  4963. box-sizing:border-box;
  4964. width:100%;
  4965. }
  4966. #u51870_text {
  4967. border-width:0px;
  4968. word-wrap:break-word;
  4969. text-transform:none;
  4970. visibility:hidden;
  4971. }
  4972. #u51871_img {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:0px;
  4976. top:0px;
  4977. width:123px;
  4978. height:35px;
  4979. }
  4980. #u51871 {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:122px;
  4984. top:259px;
  4985. width:123px;
  4986. height:35px;
  4987. display:flex;
  4988. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4989. font-weight:400;
  4990. font-style:normal;
  4991. font-size:12px;
  4992. color:#606266;
  4993. }
  4994. #u51871 .text {
  4995. position:absolute;
  4996. align-self:center;
  4997. padding:2px 2px 2px 0px;
  4998. box-sizing:border-box;
  4999. width:100%;
  5000. }
  5001. #u51871_text {
  5002. border-width:0px;
  5003. word-wrap:break-word;
  5004. text-transform:none;
  5005. visibility:hidden;
  5006. }
  5007. #u51872_img {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:0px;
  5011. top:0px;
  5012. width:123px;
  5013. height:35px;
  5014. }
  5015. #u51872 {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:245px;
  5019. top:259px;
  5020. width:123px;
  5021. height:35px;
  5022. display:flex;
  5023. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5024. font-weight:400;
  5025. font-style:normal;
  5026. font-size:12px;
  5027. color:#606266;
  5028. }
  5029. #u51872 .text {
  5030. position:absolute;
  5031. align-self:center;
  5032. padding:2px 2px 2px 0px;
  5033. box-sizing:border-box;
  5034. width:100%;
  5035. }
  5036. #u51872_text {
  5037. border-width:0px;
  5038. word-wrap:break-word;
  5039. text-transform:none;
  5040. visibility:hidden;
  5041. }
  5042. #u51873_img {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:0px;
  5046. top:0px;
  5047. width:123px;
  5048. height:35px;
  5049. }
  5050. #u51873 {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:368px;
  5054. top:259px;
  5055. width:123px;
  5056. height:35px;
  5057. display:flex;
  5058. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5059. font-weight:400;
  5060. font-style:normal;
  5061. font-size:12px;
  5062. color:#606266;
  5063. }
  5064. #u51873 .text {
  5065. position:absolute;
  5066. align-self:center;
  5067. padding:2px 2px 2px 0px;
  5068. box-sizing:border-box;
  5069. width:100%;
  5070. }
  5071. #u51873_text {
  5072. border-width:0px;
  5073. word-wrap:break-word;
  5074. text-transform:none;
  5075. visibility:hidden;
  5076. }
  5077. #u51874_img {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:0px;
  5081. top:0px;
  5082. width:124px;
  5083. height:35px;
  5084. }
  5085. #u51874 {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:491px;
  5089. top:259px;
  5090. width:124px;
  5091. height:35px;
  5092. display:flex;
  5093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5094. font-weight:400;
  5095. font-style:normal;
  5096. font-size:12px;
  5097. color:#606266;
  5098. }
  5099. #u51874 .text {
  5100. position:absolute;
  5101. align-self:center;
  5102. padding:2px 2px 2px 0px;
  5103. box-sizing:border-box;
  5104. width:100%;
  5105. }
  5106. #u51874_text {
  5107. border-width:0px;
  5108. word-wrap:break-word;
  5109. text-transform:none;
  5110. visibility:hidden;
  5111. }
  5112. #u51875_img {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:0px;
  5116. top:0px;
  5117. width:124px;
  5118. height:35px;
  5119. }
  5120. #u51875 {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:615px;
  5124. top:259px;
  5125. width:124px;
  5126. height:35px;
  5127. display:flex;
  5128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5129. font-weight:400;
  5130. font-style:normal;
  5131. font-size:12px;
  5132. color:#606266;
  5133. }
  5134. #u51875 .text {
  5135. position:absolute;
  5136. align-self:center;
  5137. padding:2px 2px 2px 0px;
  5138. box-sizing:border-box;
  5139. width:100%;
  5140. }
  5141. #u51875_text {
  5142. border-width:0px;
  5143. word-wrap:break-word;
  5144. text-transform:none;
  5145. visibility:hidden;
  5146. }
  5147. #u51876_img {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:123px;
  5153. height:35px;
  5154. }
  5155. #u51876 {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:739px;
  5159. top:259px;
  5160. width:123px;
  5161. height:35px;
  5162. display:flex;
  5163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:12px;
  5167. color:#606266;
  5168. }
  5169. #u51876 .text {
  5170. position:absolute;
  5171. align-self:center;
  5172. padding:2px 2px 2px 0px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u51876_text {
  5177. border-width:0px;
  5178. word-wrap:break-word;
  5179. text-transform:none;
  5180. visibility:hidden;
  5181. }
  5182. #u51877_img {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:0px;
  5186. top:0px;
  5187. width:124px;
  5188. height:35px;
  5189. }
  5190. #u51877 {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:862px;
  5194. top:259px;
  5195. width:124px;
  5196. height:35px;
  5197. display:flex;
  5198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5199. font-weight:400;
  5200. font-style:normal;
  5201. font-size:12px;
  5202. color:#606266;
  5203. }
  5204. #u51877 .text {
  5205. position:absolute;
  5206. align-self:center;
  5207. padding:2px 2px 2px 0px;
  5208. box-sizing:border-box;
  5209. width:100%;
  5210. }
  5211. #u51877_text {
  5212. border-width:0px;
  5213. word-wrap:break-word;
  5214. text-transform:none;
  5215. visibility:hidden;
  5216. }
  5217. #u51878_img {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:123px;
  5223. height:35px;
  5224. }
  5225. #u51878 {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:986px;
  5229. top:259px;
  5230. width:123px;
  5231. height:35px;
  5232. display:flex;
  5233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5234. font-weight:400;
  5235. font-style:normal;
  5236. font-size:12px;
  5237. color:#606266;
  5238. }
  5239. #u51878 .text {
  5240. position:absolute;
  5241. align-self:center;
  5242. padding:2px 2px 2px 0px;
  5243. box-sizing:border-box;
  5244. width:100%;
  5245. }
  5246. #u51878_text {
  5247. border-width:0px;
  5248. word-wrap:break-word;
  5249. text-transform:none;
  5250. visibility:hidden;
  5251. }
  5252. #u51879_img {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:0px;
  5256. top:0px;
  5257. width:122px;
  5258. height:35px;
  5259. }
  5260. #u51879 {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:1109px;
  5264. top:259px;
  5265. width:122px;
  5266. height:35px;
  5267. display:flex;
  5268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5269. font-weight:400;
  5270. font-style:normal;
  5271. font-size:12px;
  5272. color:#606266;
  5273. }
  5274. #u51879 .text {
  5275. position:absolute;
  5276. align-self:center;
  5277. padding:2px 2px 2px 0px;
  5278. box-sizing:border-box;
  5279. width:100%;
  5280. }
  5281. #u51879_text {
  5282. border-width:0px;
  5283. word-wrap:break-word;
  5284. text-transform:none;
  5285. visibility:hidden;
  5286. }
  5287. #u51880_img {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:122px;
  5293. height:35px;
  5294. }
  5295. #u51880 {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:0px;
  5299. top:294px;
  5300. width:122px;
  5301. height:35px;
  5302. display:flex;
  5303. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5304. font-weight:400;
  5305. font-style:normal;
  5306. font-size:12px;
  5307. color:#606266;
  5308. }
  5309. #u51880 .text {
  5310. position:absolute;
  5311. align-self:center;
  5312. padding:2px 2px 2px 0px;
  5313. box-sizing:border-box;
  5314. width:100%;
  5315. }
  5316. #u51880_text {
  5317. border-width:0px;
  5318. word-wrap:break-word;
  5319. text-transform:none;
  5320. visibility:hidden;
  5321. }
  5322. #u51881_img {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:0px;
  5326. top:0px;
  5327. width:123px;
  5328. height:35px;
  5329. }
  5330. #u51881 {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:122px;
  5334. top:294px;
  5335. width:123px;
  5336. height:35px;
  5337. display:flex;
  5338. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. font-size:12px;
  5342. color:#606266;
  5343. }
  5344. #u51881 .text {
  5345. position:absolute;
  5346. align-self:center;
  5347. padding:2px 2px 2px 0px;
  5348. box-sizing:border-box;
  5349. width:100%;
  5350. }
  5351. #u51881_text {
  5352. border-width:0px;
  5353. word-wrap:break-word;
  5354. text-transform:none;
  5355. visibility:hidden;
  5356. }
  5357. #u51882_img {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:0px;
  5361. top:0px;
  5362. width:123px;
  5363. height:35px;
  5364. }
  5365. #u51882 {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:245px;
  5369. top:294px;
  5370. width:123px;
  5371. height:35px;
  5372. display:flex;
  5373. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5374. font-weight:400;
  5375. font-style:normal;
  5376. font-size:12px;
  5377. color:#606266;
  5378. }
  5379. #u51882 .text {
  5380. position:absolute;
  5381. align-self:center;
  5382. padding:2px 2px 2px 0px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u51882_text {
  5387. border-width:0px;
  5388. word-wrap:break-word;
  5389. text-transform:none;
  5390. visibility:hidden;
  5391. }
  5392. #u51883_img {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:123px;
  5398. height:35px;
  5399. }
  5400. #u51883 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:368px;
  5404. top:294px;
  5405. width:123px;
  5406. height:35px;
  5407. display:flex;
  5408. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5409. font-weight:400;
  5410. font-style:normal;
  5411. font-size:12px;
  5412. color:#606266;
  5413. }
  5414. #u51883 .text {
  5415. position:absolute;
  5416. align-self:center;
  5417. padding:2px 2px 2px 0px;
  5418. box-sizing:border-box;
  5419. width:100%;
  5420. }
  5421. #u51883_text {
  5422. border-width:0px;
  5423. word-wrap:break-word;
  5424. text-transform:none;
  5425. visibility:hidden;
  5426. }
  5427. #u51884_img {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:0px;
  5431. top:0px;
  5432. width:124px;
  5433. height:35px;
  5434. }
  5435. #u51884 {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:491px;
  5439. top:294px;
  5440. width:124px;
  5441. height:35px;
  5442. display:flex;
  5443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5444. font-weight:400;
  5445. font-style:normal;
  5446. font-size:12px;
  5447. color:#606266;
  5448. }
  5449. #u51884 .text {
  5450. position:absolute;
  5451. align-self:center;
  5452. padding:2px 2px 2px 0px;
  5453. box-sizing:border-box;
  5454. width:100%;
  5455. }
  5456. #u51884_text {
  5457. border-width:0px;
  5458. word-wrap:break-word;
  5459. text-transform:none;
  5460. visibility:hidden;
  5461. }
  5462. #u51885_img {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:0px;
  5466. top:0px;
  5467. width:124px;
  5468. height:35px;
  5469. }
  5470. #u51885 {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:615px;
  5474. top:294px;
  5475. width:124px;
  5476. height:35px;
  5477. display:flex;
  5478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5479. font-weight:400;
  5480. font-style:normal;
  5481. font-size:12px;
  5482. color:#606266;
  5483. }
  5484. #u51885 .text {
  5485. position:absolute;
  5486. align-self:center;
  5487. padding:2px 2px 2px 0px;
  5488. box-sizing:border-box;
  5489. width:100%;
  5490. }
  5491. #u51885_text {
  5492. border-width:0px;
  5493. word-wrap:break-word;
  5494. text-transform:none;
  5495. visibility:hidden;
  5496. }
  5497. #u51886_img {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:0px;
  5501. top:0px;
  5502. width:123px;
  5503. height:35px;
  5504. }
  5505. #u51886 {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:739px;
  5509. top:294px;
  5510. width:123px;
  5511. height:35px;
  5512. display:flex;
  5513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5514. font-weight:400;
  5515. font-style:normal;
  5516. font-size:12px;
  5517. color:#606266;
  5518. }
  5519. #u51886 .text {
  5520. position:absolute;
  5521. align-self:center;
  5522. padding:2px 2px 2px 0px;
  5523. box-sizing:border-box;
  5524. width:100%;
  5525. }
  5526. #u51886_text {
  5527. border-width:0px;
  5528. word-wrap:break-word;
  5529. text-transform:none;
  5530. visibility:hidden;
  5531. }
  5532. #u51887_img {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:0px;
  5536. top:0px;
  5537. width:124px;
  5538. height:35px;
  5539. }
  5540. #u51887 {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:862px;
  5544. top:294px;
  5545. width:124px;
  5546. height:35px;
  5547. display:flex;
  5548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5549. font-weight:400;
  5550. font-style:normal;
  5551. font-size:12px;
  5552. color:#606266;
  5553. }
  5554. #u51887 .text {
  5555. position:absolute;
  5556. align-self:center;
  5557. padding:2px 2px 2px 0px;
  5558. box-sizing:border-box;
  5559. width:100%;
  5560. }
  5561. #u51887_text {
  5562. border-width:0px;
  5563. word-wrap:break-word;
  5564. text-transform:none;
  5565. visibility:hidden;
  5566. }
  5567. #u51888_img {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:0px;
  5571. top:0px;
  5572. width:123px;
  5573. height:35px;
  5574. }
  5575. #u51888 {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:986px;
  5579. top:294px;
  5580. width:123px;
  5581. height:35px;
  5582. display:flex;
  5583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5584. font-weight:400;
  5585. font-style:normal;
  5586. font-size:12px;
  5587. color:#606266;
  5588. }
  5589. #u51888 .text {
  5590. position:absolute;
  5591. align-self:center;
  5592. padding:2px 2px 2px 0px;
  5593. box-sizing:border-box;
  5594. width:100%;
  5595. }
  5596. #u51888_text {
  5597. border-width:0px;
  5598. word-wrap:break-word;
  5599. text-transform:none;
  5600. visibility:hidden;
  5601. }
  5602. #u51889_img {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:0px;
  5606. top:0px;
  5607. width:122px;
  5608. height:35px;
  5609. }
  5610. #u51889 {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:1109px;
  5614. top:294px;
  5615. width:122px;
  5616. height:35px;
  5617. display:flex;
  5618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5619. font-weight:400;
  5620. font-style:normal;
  5621. font-size:12px;
  5622. color:#606266;
  5623. }
  5624. #u51889 .text {
  5625. position:absolute;
  5626. align-self:center;
  5627. padding:2px 2px 2px 0px;
  5628. box-sizing:border-box;
  5629. width:100%;
  5630. }
  5631. #u51889_text {
  5632. border-width:0px;
  5633. word-wrap:break-word;
  5634. text-transform:none;
  5635. visibility:hidden;
  5636. }
  5637. #u51890_img {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:122px;
  5643. height:35px;
  5644. }
  5645. #u51890 {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:329px;
  5650. width:122px;
  5651. height:35px;
  5652. display:flex;
  5653. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5654. font-weight:400;
  5655. font-style:normal;
  5656. font-size:12px;
  5657. color:#606266;
  5658. }
  5659. #u51890 .text {
  5660. position:absolute;
  5661. align-self:center;
  5662. padding:2px 2px 2px 0px;
  5663. box-sizing:border-box;
  5664. width:100%;
  5665. }
  5666. #u51890_text {
  5667. border-width:0px;
  5668. word-wrap:break-word;
  5669. text-transform:none;
  5670. visibility:hidden;
  5671. }
  5672. #u51891_img {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:0px;
  5676. top:0px;
  5677. width:123px;
  5678. height:35px;
  5679. }
  5680. #u51891 {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:122px;
  5684. top:329px;
  5685. width:123px;
  5686. height:35px;
  5687. display:flex;
  5688. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5689. font-weight:400;
  5690. font-style:normal;
  5691. font-size:12px;
  5692. color:#606266;
  5693. }
  5694. #u51891 .text {
  5695. position:absolute;
  5696. align-self:center;
  5697. padding:2px 2px 2px 0px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u51891_text {
  5702. border-width:0px;
  5703. word-wrap:break-word;
  5704. text-transform:none;
  5705. visibility:hidden;
  5706. }
  5707. #u51892_img {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:123px;
  5713. height:35px;
  5714. }
  5715. #u51892 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:245px;
  5719. top:329px;
  5720. width:123px;
  5721. height:35px;
  5722. display:flex;
  5723. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:12px;
  5727. color:#606266;
  5728. }
  5729. #u51892 .text {
  5730. position:absolute;
  5731. align-self:center;
  5732. padding:2px 2px 2px 0px;
  5733. box-sizing:border-box;
  5734. width:100%;
  5735. }
  5736. #u51892_text {
  5737. border-width:0px;
  5738. word-wrap:break-word;
  5739. text-transform:none;
  5740. visibility:hidden;
  5741. }
  5742. #u51893_img {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:123px;
  5748. height:35px;
  5749. }
  5750. #u51893 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:368px;
  5754. top:329px;
  5755. width:123px;
  5756. height:35px;
  5757. display:flex;
  5758. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5759. font-weight:400;
  5760. font-style:normal;
  5761. font-size:12px;
  5762. color:#606266;
  5763. }
  5764. #u51893 .text {
  5765. position:absolute;
  5766. align-self:center;
  5767. padding:2px 2px 2px 0px;
  5768. box-sizing:border-box;
  5769. width:100%;
  5770. }
  5771. #u51893_text {
  5772. border-width:0px;
  5773. word-wrap:break-word;
  5774. text-transform:none;
  5775. visibility:hidden;
  5776. }
  5777. #u51894_img {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:124px;
  5783. height:35px;
  5784. }
  5785. #u51894 {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:491px;
  5789. top:329px;
  5790. width:124px;
  5791. height:35px;
  5792. display:flex;
  5793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5794. font-weight:400;
  5795. font-style:normal;
  5796. font-size:12px;
  5797. color:#606266;
  5798. }
  5799. #u51894 .text {
  5800. position:absolute;
  5801. align-self:center;
  5802. padding:2px 2px 2px 0px;
  5803. box-sizing:border-box;
  5804. width:100%;
  5805. }
  5806. #u51894_text {
  5807. border-width:0px;
  5808. word-wrap:break-word;
  5809. text-transform:none;
  5810. visibility:hidden;
  5811. }
  5812. #u51895_img {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:124px;
  5818. height:35px;
  5819. }
  5820. #u51895 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:615px;
  5824. top:329px;
  5825. width:124px;
  5826. height:35px;
  5827. display:flex;
  5828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5829. font-weight:400;
  5830. font-style:normal;
  5831. font-size:12px;
  5832. color:#606266;
  5833. }
  5834. #u51895 .text {
  5835. position:absolute;
  5836. align-self:center;
  5837. padding:2px 2px 2px 0px;
  5838. box-sizing:border-box;
  5839. width:100%;
  5840. }
  5841. #u51895_text {
  5842. border-width:0px;
  5843. word-wrap:break-word;
  5844. text-transform:none;
  5845. visibility:hidden;
  5846. }
  5847. #u51896_img {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:0px;
  5851. top:0px;
  5852. width:123px;
  5853. height:35px;
  5854. }
  5855. #u51896 {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:739px;
  5859. top:329px;
  5860. width:123px;
  5861. height:35px;
  5862. display:flex;
  5863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5864. font-weight:400;
  5865. font-style:normal;
  5866. font-size:12px;
  5867. color:#606266;
  5868. }
  5869. #u51896 .text {
  5870. position:absolute;
  5871. align-self:center;
  5872. padding:2px 2px 2px 0px;
  5873. box-sizing:border-box;
  5874. width:100%;
  5875. }
  5876. #u51896_text {
  5877. border-width:0px;
  5878. word-wrap:break-word;
  5879. text-transform:none;
  5880. visibility:hidden;
  5881. }
  5882. #u51897_img {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:0px;
  5886. top:0px;
  5887. width:124px;
  5888. height:35px;
  5889. }
  5890. #u51897 {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:862px;
  5894. top:329px;
  5895. width:124px;
  5896. height:35px;
  5897. display:flex;
  5898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5899. font-weight:400;
  5900. font-style:normal;
  5901. font-size:12px;
  5902. color:#606266;
  5903. }
  5904. #u51897 .text {
  5905. position:absolute;
  5906. align-self:center;
  5907. padding:2px 2px 2px 0px;
  5908. box-sizing:border-box;
  5909. width:100%;
  5910. }
  5911. #u51897_text {
  5912. border-width:0px;
  5913. word-wrap:break-word;
  5914. text-transform:none;
  5915. visibility:hidden;
  5916. }
  5917. #u51898_img {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:123px;
  5923. height:35px;
  5924. }
  5925. #u51898 {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:986px;
  5929. top:329px;
  5930. width:123px;
  5931. height:35px;
  5932. display:flex;
  5933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5934. font-weight:400;
  5935. font-style:normal;
  5936. font-size:12px;
  5937. color:#606266;
  5938. }
  5939. #u51898 .text {
  5940. position:absolute;
  5941. align-self:center;
  5942. padding:2px 2px 2px 0px;
  5943. box-sizing:border-box;
  5944. width:100%;
  5945. }
  5946. #u51898_text {
  5947. border-width:0px;
  5948. word-wrap:break-word;
  5949. text-transform:none;
  5950. visibility:hidden;
  5951. }
  5952. #u51899_img {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:122px;
  5958. height:35px;
  5959. }
  5960. #u51899 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:1109px;
  5964. top:329px;
  5965. width:122px;
  5966. height:35px;
  5967. display:flex;
  5968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5969. font-weight:400;
  5970. font-style:normal;
  5971. font-size:12px;
  5972. color:#606266;
  5973. }
  5974. #u51899 .text {
  5975. position:absolute;
  5976. align-self:center;
  5977. padding:2px 2px 2px 0px;
  5978. box-sizing:border-box;
  5979. width:100%;
  5980. }
  5981. #u51899_text {
  5982. border-width:0px;
  5983. word-wrap:break-word;
  5984. text-transform:none;
  5985. visibility:hidden;
  5986. }
  5987. #u51900 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:0px;
  5991. top:0px;
  5992. width:0px;
  5993. height:0px;
  5994. }
  5995. #u51901_div {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:0px;
  5999. top:0px;
  6000. width:59px;
  6001. height:30px;
  6002. background:inherit;
  6003. background-color:rgba(24, 144, 255, 1);
  6004. box-sizing:border-box;
  6005. border-width:1px;
  6006. border-style:solid;
  6007. border-color:rgba(0, 153, 255, 1);
  6008. border-radius:4px;
  6009. -moz-box-shadow:none;
  6010. -webkit-box-shadow:none;
  6011. box-shadow:none;
  6012. font-family:'Microsoft YaHei', sans-serif;
  6013. font-weight:400;
  6014. font-style:normal;
  6015. font-size:14px;
  6016. color:#FFFFFF;
  6017. }
  6018. #u51901 {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:1266px;
  6022. top:158px;
  6023. width:59px;
  6024. height:30px;
  6025. display:flex;
  6026. font-family:'Microsoft YaHei', sans-serif;
  6027. font-weight:400;
  6028. font-style:normal;
  6029. font-size:14px;
  6030. color:#FFFFFF;
  6031. }
  6032. #u51901 .text {
  6033. position:absolute;
  6034. align-self:center;
  6035. padding:5px 15px 5px 15px;
  6036. box-sizing:border-box;
  6037. width:100%;
  6038. }
  6039. #u51901_text {
  6040. border-width:0px;
  6041. white-space:nowrap;
  6042. text-transform:none;
  6043. }
  6044. #u51902_div {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:55px;
  6050. height:30px;
  6051. background:inherit;
  6052. background-color:rgba(255, 255, 255, 1);
  6053. box-sizing:border-box;
  6054. border-width:1px;
  6055. border-style:solid;
  6056. border-color:rgba(170, 170, 170, 1);
  6057. border-radius:4px;
  6058. -moz-box-shadow:none;
  6059. -webkit-box-shadow:none;
  6060. box-shadow:none;
  6061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6062. font-weight:400;
  6063. font-style:normal;
  6064. font-size:12px;
  6065. color:#555555;
  6066. }
  6067. #u51902 {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:1335px;
  6071. top:158px;
  6072. width:55px;
  6073. height:30px;
  6074. display:flex;
  6075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6076. font-weight:400;
  6077. font-style:normal;
  6078. font-size:12px;
  6079. color:#555555;
  6080. }
  6081. #u51902 .text {
  6082. position:absolute;
  6083. align-self:center;
  6084. padding:5px 15px 5px 15px;
  6085. box-sizing:border-box;
  6086. width:100%;
  6087. }
  6088. #u51902_text {
  6089. border-width:0px;
  6090. white-space:nowrap;
  6091. text-transform:none;
  6092. }
  6093. #u51903 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:0px;
  6097. top:0px;
  6098. width:0px;
  6099. height:0px;
  6100. }
  6101. #u51904_div {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:0px;
  6105. top:0px;
  6106. width:140px;
  6107. height:30px;
  6108. background:inherit;
  6109. background-color:rgba(255, 255, 255, 1);
  6110. box-sizing:border-box;
  6111. border-width:1px;
  6112. border-style:solid;
  6113. border-color:rgba(201, 201, 201, 1);
  6114. border-radius:4px;
  6115. -moz-box-shadow:none;
  6116. -webkit-box-shadow:none;
  6117. box-shadow:none;
  6118. font-family:'Microsoft YaHei', sans-serif;
  6119. font-weight:400;
  6120. font-style:normal;
  6121. font-size:14px;
  6122. color:#CCCCCC;
  6123. text-align:left;
  6124. }
  6125. #u51904 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:800px;
  6129. top:105px;
  6130. width:140px;
  6131. height:30px;
  6132. display:flex;
  6133. font-family:'Microsoft YaHei', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:14px;
  6137. color:#CCCCCC;
  6138. text-align:left;
  6139. }
  6140. #u51904 .text {
  6141. position:absolute;
  6142. align-self:center;
  6143. padding:2px 8px 2px 8px;
  6144. box-sizing:border-box;
  6145. width:100%;
  6146. }
  6147. #u51904_text {
  6148. border-width:0px;
  6149. word-wrap:break-word;
  6150. text-transform:none;
  6151. visibility:hidden;
  6152. }
  6153. #u51905_input {
  6154. position:absolute;
  6155. left:0px;
  6156. top:0px;
  6157. width:127px;
  6158. height:25px;
  6159. padding:2px 2px 2px 2px;
  6160. font-family:'Microsoft YaHei', sans-serif;
  6161. font-weight:400;
  6162. font-style:normal;
  6163. font-size:10px;
  6164. letter-spacing:normal;
  6165. color:#000000;
  6166. vertical-align:none;
  6167. text-align:left;
  6168. text-transform:none;
  6169. background-color:transparent;
  6170. border-color:transparent;
  6171. }
  6172. #u51905_input.disabled {
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:127px;
  6177. height:25px;
  6178. padding:2px 2px 2px 2px;
  6179. font-family:'Microsoft YaHei', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. font-size:10px;
  6183. letter-spacing:normal;
  6184. color:#000000;
  6185. vertical-align:none;
  6186. text-align:left;
  6187. text-transform:none;
  6188. background-color:transparent;
  6189. border-color:transparent;
  6190. }
  6191. #u51905_div {
  6192. border-width:0px;
  6193. position:absolute;
  6194. left:0px;
  6195. top:0px;
  6196. width:127px;
  6197. height:25px;
  6198. background:inherit;
  6199. background-color:rgba(255, 255, 255, 1);
  6200. border:none;
  6201. border-radius:0px;
  6202. -moz-box-shadow:none;
  6203. -webkit-box-shadow:none;
  6204. box-shadow:none;
  6205. font-family:'Microsoft YaHei', sans-serif;
  6206. font-weight:400;
  6207. font-style:normal;
  6208. font-size:10px;
  6209. }
  6210. #u51905 {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:808px;
  6214. top:106px;
  6215. width:127px;
  6216. height:25px;
  6217. display:flex;
  6218. font-family:'Microsoft YaHei', sans-serif;
  6219. font-weight:400;
  6220. font-style:normal;
  6221. font-size:10px;
  6222. }
  6223. #u51905 .text {
  6224. position:absolute;
  6225. align-self:center;
  6226. padding:2px 2px 2px 2px;
  6227. box-sizing:border-box;
  6228. width:100%;
  6229. }
  6230. #u51905_div.disabled {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:0px;
  6234. top:0px;
  6235. width:127px;
  6236. height:25px;
  6237. background:inherit;
  6238. background-color:rgba(240, 240, 240, 1);
  6239. border:none;
  6240. border-radius:0px;
  6241. -moz-box-shadow:none;
  6242. -webkit-box-shadow:none;
  6243. box-shadow:none;
  6244. font-family:'Microsoft YaHei', sans-serif;
  6245. font-weight:400;
  6246. font-style:normal;
  6247. font-size:10px;
  6248. }
  6249. #u51905.disabled {
  6250. }
  6251. #u51906 {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:0px;
  6255. top:0px;
  6256. width:0px;
  6257. height:0px;
  6258. }
  6259. #u51907_div {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:140px;
  6265. height:30px;
  6266. background:inherit;
  6267. background-color:rgba(255, 255, 255, 1);
  6268. box-sizing:border-box;
  6269. border-width:1px;
  6270. border-style:solid;
  6271. border-color:rgba(215, 215, 215, 1);
  6272. border-radius:4px;
  6273. -moz-box-shadow:none;
  6274. -webkit-box-shadow:none;
  6275. box-shadow:none;
  6276. font-size:11px;
  6277. }
  6278. #u51907 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:500px;
  6282. top:105px;
  6283. width:140px;
  6284. height:30px;
  6285. display:flex;
  6286. font-size:11px;
  6287. }
  6288. #u51907 .text {
  6289. position:absolute;
  6290. align-self:center;
  6291. padding:2px 2px 2px 2px;
  6292. box-sizing:border-box;
  6293. width:100%;
  6294. }
  6295. #u51907_text {
  6296. border-width:0px;
  6297. word-wrap:break-word;
  6298. text-transform:none;
  6299. visibility:hidden;
  6300. }
  6301. #u51908_input {
  6302. position:absolute;
  6303. left:0px;
  6304. top:0px;
  6305. width:120px;
  6306. height:23px;
  6307. padding:2px 2px 2px 2px;
  6308. font-family:'ArialMT', 'Arial', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:11px;
  6312. letter-spacing:normal;
  6313. color:#AAAAAA;
  6314. vertical-align:none;
  6315. text-align:left;
  6316. text-transform:none;
  6317. background-color:transparent;
  6318. border-color:transparent;
  6319. }
  6320. #u51908_input.disabled {
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:120px;
  6325. height:23px;
  6326. padding:2px 2px 2px 2px;
  6327. font-family:'ArialMT', 'Arial', sans-serif;
  6328. font-weight:400;
  6329. font-style:normal;
  6330. font-size:11px;
  6331. letter-spacing:normal;
  6332. color:#AAAAAA;
  6333. vertical-align:none;
  6334. text-align:left;
  6335. text-transform:none;
  6336. background-color:transparent;
  6337. border-color:transparent;
  6338. }
  6339. #u51908_div {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:0px;
  6343. top:0px;
  6344. width:120px;
  6345. height:23px;
  6346. background:inherit;
  6347. background-color:rgba(255, 255, 255, 1);
  6348. border:none;
  6349. border-radius:0px;
  6350. -moz-box-shadow:none;
  6351. -webkit-box-shadow:none;
  6352. box-shadow:none;
  6353. font-size:11px;
  6354. color:#AAAAAA;
  6355. }
  6356. #u51908 {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:507px;
  6360. top:107px;
  6361. width:120px;
  6362. height:23px;
  6363. display:flex;
  6364. font-size:11px;
  6365. color:#AAAAAA;
  6366. }
  6367. #u51908 .text {
  6368. position:absolute;
  6369. align-self:flex-start;
  6370. padding:2px 2px 2px 2px;
  6371. box-sizing:border-box;
  6372. width:100%;
  6373. }
  6374. #u51908_div.disabled {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:0px;
  6378. top:0px;
  6379. width:120px;
  6380. height:23px;
  6381. background:inherit;
  6382. background-color:rgba(240, 240, 240, 1);
  6383. border:none;
  6384. border-radius:0px;
  6385. -moz-box-shadow:none;
  6386. -webkit-box-shadow:none;
  6387. box-shadow:none;
  6388. font-size:11px;
  6389. color:#AAAAAA;
  6390. }
  6391. #u51908.disabled {
  6392. }
  6393. .u51908_input_option {
  6394. font-size:11px;
  6395. }
  6396. #u51909 {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:0px;
  6400. top:0px;
  6401. width:0px;
  6402. height:0px;
  6403. }
  6404. #u51910_div {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:0px;
  6408. top:0px;
  6409. width:140px;
  6410. height:30px;
  6411. background:inherit;
  6412. background-color:rgba(255, 255, 255, 1);
  6413. box-sizing:border-box;
  6414. border-width:1px;
  6415. border-style:solid;
  6416. border-color:rgba(215, 215, 215, 1);
  6417. border-radius:4px;
  6418. -moz-box-shadow:none;
  6419. -webkit-box-shadow:none;
  6420. box-shadow:none;
  6421. font-size:11px;
  6422. }
  6423. #u51910 {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:650px;
  6427. top:105px;
  6428. width:140px;
  6429. height:30px;
  6430. display:flex;
  6431. font-size:11px;
  6432. }
  6433. #u51910 .text {
  6434. position:absolute;
  6435. align-self:center;
  6436. padding:2px 2px 2px 2px;
  6437. box-sizing:border-box;
  6438. width:100%;
  6439. }
  6440. #u51910_text {
  6441. border-width:0px;
  6442. word-wrap:break-word;
  6443. text-transform:none;
  6444. visibility:hidden;
  6445. }
  6446. #u51911_input {
  6447. position:absolute;
  6448. left:0px;
  6449. top:0px;
  6450. width:120px;
  6451. height:23px;
  6452. padding:2px 2px 2px 2px;
  6453. font-family:'ArialMT', 'Arial', sans-serif;
  6454. font-weight:400;
  6455. font-style:normal;
  6456. font-size:11px;
  6457. letter-spacing:normal;
  6458. color:#AAAAAA;
  6459. vertical-align:none;
  6460. text-align:left;
  6461. text-transform:none;
  6462. background-color:transparent;
  6463. border-color:transparent;
  6464. }
  6465. #u51911_input.disabled {
  6466. position:absolute;
  6467. left:0px;
  6468. top:0px;
  6469. width:120px;
  6470. height:23px;
  6471. padding:2px 2px 2px 2px;
  6472. font-family:'ArialMT', 'Arial', sans-serif;
  6473. font-weight:400;
  6474. font-style:normal;
  6475. font-size:11px;
  6476. letter-spacing:normal;
  6477. color:#AAAAAA;
  6478. vertical-align:none;
  6479. text-align:left;
  6480. text-transform:none;
  6481. background-color:transparent;
  6482. border-color:transparent;
  6483. }
  6484. #u51911_div {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:0px;
  6488. top:0px;
  6489. width:120px;
  6490. height:23px;
  6491. background:inherit;
  6492. background-color:rgba(255, 255, 255, 1);
  6493. border:none;
  6494. border-radius:0px;
  6495. -moz-box-shadow:none;
  6496. -webkit-box-shadow:none;
  6497. box-shadow:none;
  6498. font-size:11px;
  6499. color:#AAAAAA;
  6500. }
  6501. #u51911 {
  6502. border-width:0px;
  6503. position:absolute;
  6504. left:657px;
  6505. top:107px;
  6506. width:120px;
  6507. height:23px;
  6508. display:flex;
  6509. font-size:11px;
  6510. color:#AAAAAA;
  6511. }
  6512. #u51911 .text {
  6513. position:absolute;
  6514. align-self:flex-start;
  6515. padding:2px 2px 2px 2px;
  6516. box-sizing:border-box;
  6517. width:100%;
  6518. }
  6519. #u51911_div.disabled {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:0px;
  6523. top:0px;
  6524. width:120px;
  6525. height:23px;
  6526. background:inherit;
  6527. background-color:rgba(240, 240, 240, 1);
  6528. border:none;
  6529. border-radius:0px;
  6530. -moz-box-shadow:none;
  6531. -webkit-box-shadow:none;
  6532. box-shadow:none;
  6533. font-size:11px;
  6534. color:#AAAAAA;
  6535. }
  6536. #u51911.disabled {
  6537. }
  6538. .u51911_input_option {
  6539. font-size:11px;
  6540. }
  6541. #u51912 {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:0px;
  6545. top:0px;
  6546. width:0px;
  6547. height:0px;
  6548. }
  6549. #u51913_div {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:0px;
  6553. top:0px;
  6554. width:140px;
  6555. height:30px;
  6556. background:inherit;
  6557. background-color:rgba(255, 255, 255, 1);
  6558. box-sizing:border-box;
  6559. border-width:1px;
  6560. border-style:solid;
  6561. border-color:rgba(215, 215, 215, 1);
  6562. border-radius:4px;
  6563. -moz-box-shadow:none;
  6564. -webkit-box-shadow:none;
  6565. box-shadow:none;
  6566. font-size:14px;
  6567. }
  6568. #u51913 {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:350px;
  6572. top:105px;
  6573. width:140px;
  6574. height:30px;
  6575. display:flex;
  6576. font-size:14px;
  6577. }
  6578. #u51913 .text {
  6579. position:absolute;
  6580. align-self:center;
  6581. padding:2px 2px 2px 2px;
  6582. box-sizing:border-box;
  6583. width:100%;
  6584. }
  6585. #u51913_text {
  6586. border-width:0px;
  6587. word-wrap:break-word;
  6588. text-transform:none;
  6589. visibility:hidden;
  6590. }
  6591. #u51914_input {
  6592. position:absolute;
  6593. left:0px;
  6594. top:0px;
  6595. width:134px;
  6596. height:23px;
  6597. padding:2px 2px 2px 2px;
  6598. font-family:'ArialMT', 'Arial', sans-serif;
  6599. font-weight:400;
  6600. font-style:normal;
  6601. font-size:14px;
  6602. letter-spacing:normal;
  6603. color:#AAAAAA;
  6604. vertical-align:none;
  6605. text-align:left;
  6606. text-transform:none;
  6607. background-color:transparent;
  6608. border-color:transparent;
  6609. }
  6610. #u51914_input.disabled {
  6611. position:absolute;
  6612. left:0px;
  6613. top:0px;
  6614. width:134px;
  6615. height:23px;
  6616. padding:2px 2px 2px 2px;
  6617. font-family:'ArialMT', 'Arial', sans-serif;
  6618. font-weight:400;
  6619. font-style:normal;
  6620. font-size:14px;
  6621. letter-spacing:normal;
  6622. color:#AAAAAA;
  6623. vertical-align:none;
  6624. text-align:left;
  6625. text-transform:none;
  6626. background-color:transparent;
  6627. border-color:transparent;
  6628. }
  6629. #u51914_div {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:0px;
  6633. top:0px;
  6634. width:134px;
  6635. height:23px;
  6636. background:inherit;
  6637. background-color:rgba(255, 255, 255, 1);
  6638. border:none;
  6639. border-radius:0px;
  6640. -moz-box-shadow:none;
  6641. -webkit-box-shadow:none;
  6642. box-shadow:none;
  6643. font-size:14px;
  6644. color:#AAAAAA;
  6645. }
  6646. #u51914 {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:354px;
  6650. top:107px;
  6651. width:134px;
  6652. height:23px;
  6653. display:flex;
  6654. font-size:14px;
  6655. color:#AAAAAA;
  6656. }
  6657. #u51914 .text {
  6658. position:absolute;
  6659. align-self:flex-start;
  6660. padding:2px 2px 2px 2px;
  6661. box-sizing:border-box;
  6662. width:100%;
  6663. }
  6664. #u51914_div.disabled {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:0px;
  6668. top:0px;
  6669. width:134px;
  6670. height:23px;
  6671. background:inherit;
  6672. background-color:rgba(240, 240, 240, 1);
  6673. border:none;
  6674. border-radius:0px;
  6675. -moz-box-shadow:none;
  6676. -webkit-box-shadow:none;
  6677. box-shadow:none;
  6678. font-size:14px;
  6679. color:#AAAAAA;
  6680. }
  6681. #u51914.disabled {
  6682. }
  6683. .u51914_input_option {
  6684. font-size:14px;
  6685. }
  6686. #u51915 {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:0px;
  6692. height:0px;
  6693. }
  6694. #u51916_div {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:140px;
  6700. height:30px;
  6701. background:inherit;
  6702. background-color:rgba(255, 255, 255, 1);
  6703. box-sizing:border-box;
  6704. border-width:1px;
  6705. border-style:solid;
  6706. border-color:rgba(201, 201, 201, 1);
  6707. border-radius:4px;
  6708. -moz-box-shadow:none;
  6709. -webkit-box-shadow:none;
  6710. box-shadow:none;
  6711. font-family:'Microsoft YaHei', sans-serif;
  6712. font-weight:400;
  6713. font-style:normal;
  6714. font-size:14px;
  6715. color:#CCCCCC;
  6716. text-align:left;
  6717. }
  6718. #u51916 {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:950px;
  6722. top:105px;
  6723. width:140px;
  6724. height:30px;
  6725. display:flex;
  6726. font-family:'Microsoft YaHei', sans-serif;
  6727. font-weight:400;
  6728. font-style:normal;
  6729. font-size:14px;
  6730. color:#CCCCCC;
  6731. text-align:left;
  6732. }
  6733. #u51916 .text {
  6734. position:absolute;
  6735. align-self:center;
  6736. padding:2px 8px 2px 8px;
  6737. box-sizing:border-box;
  6738. width:100%;
  6739. }
  6740. #u51916_text {
  6741. border-width:0px;
  6742. word-wrap:break-word;
  6743. text-transform:none;
  6744. visibility:hidden;
  6745. }
  6746. #u51917_input {
  6747. position:absolute;
  6748. left:0px;
  6749. top:0px;
  6750. width:127px;
  6751. height:25px;
  6752. padding:2px 2px 2px 2px;
  6753. font-family:'Microsoft YaHei', sans-serif;
  6754. font-weight:400;
  6755. font-style:normal;
  6756. font-size:10px;
  6757. letter-spacing:normal;
  6758. color:#000000;
  6759. vertical-align:none;
  6760. text-align:left;
  6761. text-transform:none;
  6762. background-color:transparent;
  6763. border-color:transparent;
  6764. }
  6765. #u51917_input.disabled {
  6766. position:absolute;
  6767. left:0px;
  6768. top:0px;
  6769. width:127px;
  6770. height:25px;
  6771. padding:2px 2px 2px 2px;
  6772. font-family:'Microsoft YaHei', sans-serif;
  6773. font-weight:400;
  6774. font-style:normal;
  6775. font-size:10px;
  6776. letter-spacing:normal;
  6777. color:#000000;
  6778. vertical-align:none;
  6779. text-align:left;
  6780. text-transform:none;
  6781. background-color:transparent;
  6782. border-color:transparent;
  6783. }
  6784. #u51917_div {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:0px;
  6788. top:0px;
  6789. width:127px;
  6790. height:25px;
  6791. background:inherit;
  6792. background-color:rgba(255, 255, 255, 1);
  6793. border:none;
  6794. border-radius:0px;
  6795. -moz-box-shadow:none;
  6796. -webkit-box-shadow:none;
  6797. box-shadow:none;
  6798. font-family:'Microsoft YaHei', sans-serif;
  6799. font-weight:400;
  6800. font-style:normal;
  6801. font-size:10px;
  6802. }
  6803. #u51917 {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:958px;
  6807. top:106px;
  6808. width:127px;
  6809. height:25px;
  6810. display:flex;
  6811. font-family:'Microsoft YaHei', sans-serif;
  6812. font-weight:400;
  6813. font-style:normal;
  6814. font-size:10px;
  6815. }
  6816. #u51917 .text {
  6817. position:absolute;
  6818. align-self:center;
  6819. padding:2px 2px 2px 2px;
  6820. box-sizing:border-box;
  6821. width:100%;
  6822. }
  6823. #u51917_div.disabled {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:127px;
  6829. height:25px;
  6830. background:inherit;
  6831. background-color:rgba(240, 240, 240, 1);
  6832. border:none;
  6833. border-radius:0px;
  6834. -moz-box-shadow:none;
  6835. -webkit-box-shadow:none;
  6836. box-shadow:none;
  6837. font-family:'Microsoft YaHei', sans-serif;
  6838. font-weight:400;
  6839. font-style:normal;
  6840. font-size:10px;
  6841. }
  6842. #u51917.disabled {
  6843. }
  6844. #u51918 {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:0px;
  6848. top:0px;
  6849. width:0px;
  6850. height:0px;
  6851. }
  6852. #u51919_div {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:140px;
  6858. height:30px;
  6859. background:inherit;
  6860. background-color:rgba(255, 255, 255, 1);
  6861. box-sizing:border-box;
  6862. border-width:1px;
  6863. border-style:solid;
  6864. border-color:rgba(215, 215, 215, 1);
  6865. border-radius:4px;
  6866. -moz-box-shadow:none;
  6867. -webkit-box-shadow:none;
  6868. box-shadow:none;
  6869. font-size:11px;
  6870. }
  6871. #u51919 {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:1100px;
  6875. top:105px;
  6876. width:140px;
  6877. height:30px;
  6878. display:flex;
  6879. font-size:11px;
  6880. }
  6881. #u51919 .text {
  6882. position:absolute;
  6883. align-self:center;
  6884. padding:2px 2px 2px 2px;
  6885. box-sizing:border-box;
  6886. width:100%;
  6887. }
  6888. #u51919_text {
  6889. border-width:0px;
  6890. word-wrap:break-word;
  6891. text-transform:none;
  6892. visibility:hidden;
  6893. }
  6894. #u51920_input {
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:120px;
  6899. height:23px;
  6900. padding:2px 2px 2px 2px;
  6901. font-family:'ArialMT', 'Arial', sans-serif;
  6902. font-weight:400;
  6903. font-style:normal;
  6904. font-size:11px;
  6905. letter-spacing:normal;
  6906. color:#AAAAAA;
  6907. vertical-align:none;
  6908. text-align:left;
  6909. text-transform:none;
  6910. background-color:transparent;
  6911. border-color:transparent;
  6912. }
  6913. #u51920_input.disabled {
  6914. position:absolute;
  6915. left:0px;
  6916. top:0px;
  6917. width:120px;
  6918. height:23px;
  6919. padding:2px 2px 2px 2px;
  6920. font-family:'ArialMT', 'Arial', sans-serif;
  6921. font-weight:400;
  6922. font-style:normal;
  6923. font-size:11px;
  6924. letter-spacing:normal;
  6925. color:#AAAAAA;
  6926. vertical-align:none;
  6927. text-align:left;
  6928. text-transform:none;
  6929. background-color:transparent;
  6930. border-color:transparent;
  6931. }
  6932. #u51920_div {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:0px;
  6936. top:0px;
  6937. width:120px;
  6938. height:23px;
  6939. background:inherit;
  6940. background-color:rgba(255, 255, 255, 1);
  6941. border:none;
  6942. border-radius:0px;
  6943. -moz-box-shadow:none;
  6944. -webkit-box-shadow:none;
  6945. box-shadow:none;
  6946. font-size:11px;
  6947. color:#AAAAAA;
  6948. }
  6949. #u51920 {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:1107px;
  6953. top:107px;
  6954. width:120px;
  6955. height:23px;
  6956. display:flex;
  6957. font-size:11px;
  6958. color:#AAAAAA;
  6959. }
  6960. #u51920 .text {
  6961. position:absolute;
  6962. align-self:flex-start;
  6963. padding:2px 2px 2px 2px;
  6964. box-sizing:border-box;
  6965. width:100%;
  6966. }
  6967. #u51920_div.disabled {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:120px;
  6973. height:23px;
  6974. background:inherit;
  6975. background-color:rgba(240, 240, 240, 1);
  6976. border:none;
  6977. border-radius:0px;
  6978. -moz-box-shadow:none;
  6979. -webkit-box-shadow:none;
  6980. box-shadow:none;
  6981. font-size:11px;
  6982. color:#AAAAAA;
  6983. }
  6984. #u51920.disabled {
  6985. }
  6986. .u51920_input_option {
  6987. font-size:11px;
  6988. }
  6989. #u51921 {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:0px;
  6993. top:0px;
  6994. width:0px;
  6995. height:0px;
  6996. }
  6997. #u51922_div {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:0px;
  7001. top:0px;
  7002. width:140px;
  7003. height:30px;
  7004. background:inherit;
  7005. background-color:rgba(255, 255, 255, 1);
  7006. box-sizing:border-box;
  7007. border-width:1px;
  7008. border-style:solid;
  7009. border-color:rgba(215, 215, 215, 1);
  7010. border-radius:4px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-size:11px;
  7015. }
  7016. #u51922 {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:1250px;
  7020. top:105px;
  7021. width:140px;
  7022. height:30px;
  7023. display:flex;
  7024. font-size:11px;
  7025. }
  7026. #u51922 .text {
  7027. position:absolute;
  7028. align-self:center;
  7029. padding:2px 2px 2px 2px;
  7030. box-sizing:border-box;
  7031. width:100%;
  7032. }
  7033. #u51922_text {
  7034. border-width:0px;
  7035. word-wrap:break-word;
  7036. text-transform:none;
  7037. visibility:hidden;
  7038. }
  7039. #u51923_input {
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:120px;
  7044. height:23px;
  7045. padding:2px 2px 2px 2px;
  7046. font-family:'ArialMT', 'Arial', sans-serif;
  7047. font-weight:400;
  7048. font-style:normal;
  7049. font-size:11px;
  7050. letter-spacing:normal;
  7051. color:#AAAAAA;
  7052. vertical-align:none;
  7053. text-align:left;
  7054. text-transform:none;
  7055. background-color:transparent;
  7056. border-color:transparent;
  7057. }
  7058. #u51923_input.disabled {
  7059. position:absolute;
  7060. left:0px;
  7061. top:0px;
  7062. width:120px;
  7063. height:23px;
  7064. padding:2px 2px 2px 2px;
  7065. font-family:'ArialMT', 'Arial', sans-serif;
  7066. font-weight:400;
  7067. font-style:normal;
  7068. font-size:11px;
  7069. letter-spacing:normal;
  7070. color:#AAAAAA;
  7071. vertical-align:none;
  7072. text-align:left;
  7073. text-transform:none;
  7074. background-color:transparent;
  7075. border-color:transparent;
  7076. }
  7077. #u51923_div {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:0px;
  7081. top:0px;
  7082. width:120px;
  7083. height:23px;
  7084. background:inherit;
  7085. background-color:rgba(255, 255, 255, 1);
  7086. border:none;
  7087. border-radius:0px;
  7088. -moz-box-shadow:none;
  7089. -webkit-box-shadow:none;
  7090. box-shadow:none;
  7091. font-size:11px;
  7092. color:#AAAAAA;
  7093. }
  7094. #u51923 {
  7095. border-width:0px;
  7096. position:absolute;
  7097. left:1257px;
  7098. top:107px;
  7099. width:120px;
  7100. height:23px;
  7101. display:flex;
  7102. font-size:11px;
  7103. color:#AAAAAA;
  7104. }
  7105. #u51923 .text {
  7106. position:absolute;
  7107. align-self:flex-start;
  7108. padding:2px 2px 2px 2px;
  7109. box-sizing:border-box;
  7110. width:100%;
  7111. }
  7112. #u51923_div.disabled {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:0px;
  7116. top:0px;
  7117. width:120px;
  7118. height:23px;
  7119. background:inherit;
  7120. background-color:rgba(240, 240, 240, 1);
  7121. border:none;
  7122. border-radius:0px;
  7123. -moz-box-shadow:none;
  7124. -webkit-box-shadow:none;
  7125. box-shadow:none;
  7126. font-size:11px;
  7127. color:#AAAAAA;
  7128. }
  7129. #u51923.disabled {
  7130. }
  7131. .u51923_input_option {
  7132. font-size:11px;
  7133. }
  7134. #u51924 {
  7135. border-width:0px;
  7136. position:absolute;
  7137. left:0px;
  7138. top:0px;
  7139. width:0px;
  7140. height:0px;
  7141. }
  7142. #u51925_div {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:0px;
  7146. top:0px;
  7147. width:140px;
  7148. height:30px;
  7149. background:inherit;
  7150. background-color:rgba(255, 255, 255, 1);
  7151. box-sizing:border-box;
  7152. border-width:1px;
  7153. border-style:solid;
  7154. border-color:rgba(215, 215, 215, 1);
  7155. border-radius:4px;
  7156. -moz-box-shadow:none;
  7157. -webkit-box-shadow:none;
  7158. box-shadow:none;
  7159. font-size:11px;
  7160. }
  7161. #u51925 {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:1400px;
  7165. top:105px;
  7166. width:140px;
  7167. height:30px;
  7168. display:flex;
  7169. font-size:11px;
  7170. }
  7171. #u51925 .text {
  7172. position:absolute;
  7173. align-self:center;
  7174. padding:2px 2px 2px 2px;
  7175. box-sizing:border-box;
  7176. width:100%;
  7177. }
  7178. #u51925_text {
  7179. border-width:0px;
  7180. word-wrap:break-word;
  7181. text-transform:none;
  7182. visibility:hidden;
  7183. }
  7184. #u51926_input {
  7185. position:absolute;
  7186. left:0px;
  7187. top:0px;
  7188. width:120px;
  7189. height:23px;
  7190. padding:2px 2px 2px 2px;
  7191. font-family:'ArialMT', 'Arial', sans-serif;
  7192. font-weight:400;
  7193. font-style:normal;
  7194. font-size:11px;
  7195. letter-spacing:normal;
  7196. color:#AAAAAA;
  7197. vertical-align:none;
  7198. text-align:left;
  7199. text-transform:none;
  7200. background-color:transparent;
  7201. border-color:transparent;
  7202. }
  7203. #u51926_input.disabled {
  7204. position:absolute;
  7205. left:0px;
  7206. top:0px;
  7207. width:120px;
  7208. height:23px;
  7209. padding:2px 2px 2px 2px;
  7210. font-family:'ArialMT', 'Arial', sans-serif;
  7211. font-weight:400;
  7212. font-style:normal;
  7213. font-size:11px;
  7214. letter-spacing:normal;
  7215. color:#AAAAAA;
  7216. vertical-align:none;
  7217. text-align:left;
  7218. text-transform:none;
  7219. background-color:transparent;
  7220. border-color:transparent;
  7221. }
  7222. #u51926_div {
  7223. border-width:0px;
  7224. position:absolute;
  7225. left:0px;
  7226. top:0px;
  7227. width:120px;
  7228. height:23px;
  7229. background:inherit;
  7230. background-color:rgba(255, 255, 255, 1);
  7231. border:none;
  7232. border-radius:0px;
  7233. -moz-box-shadow:none;
  7234. -webkit-box-shadow:none;
  7235. box-shadow:none;
  7236. font-size:11px;
  7237. color:#AAAAAA;
  7238. }
  7239. #u51926 {
  7240. border-width:0px;
  7241. position:absolute;
  7242. left:1407px;
  7243. top:107px;
  7244. width:120px;
  7245. height:23px;
  7246. display:flex;
  7247. font-size:11px;
  7248. color:#AAAAAA;
  7249. }
  7250. #u51926 .text {
  7251. position:absolute;
  7252. align-self:flex-start;
  7253. padding:2px 2px 2px 2px;
  7254. box-sizing:border-box;
  7255. width:100%;
  7256. }
  7257. #u51926_div.disabled {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:120px;
  7263. height:23px;
  7264. background:inherit;
  7265. background-color:rgba(240, 240, 240, 1);
  7266. border:none;
  7267. border-radius:0px;
  7268. -moz-box-shadow:none;
  7269. -webkit-box-shadow:none;
  7270. box-shadow:none;
  7271. font-size:11px;
  7272. color:#AAAAAA;
  7273. }
  7274. #u51926.disabled {
  7275. }
  7276. .u51926_input_option {
  7277. font-size:11px;
  7278. }