styles.css 183 KB

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