styles.css 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2905px;
  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. #u57741_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. #u57741 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u57741 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u57741_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u57742_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. #u57742 {
  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. #u57742 .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. #u57742_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u57743_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. #u57743 {
  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. #u57743 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u57743_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u57744 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u57745_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u57745 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u57745 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u57745_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u57746_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. #u57746 {
  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. #u57746 .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. #u57746_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u57747_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. #u57747 {
  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. #u57747 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u57747_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u57748 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u57749_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. #u57749_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. #u57749_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. #u57749 {
  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. #u57749 .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. #u57749_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. #u57749.disabled {
  356. }
  357. .u57749_input_option {
  358. font-size:14px;
  359. }
  360. #u57750_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u57750 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u57750 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u57750_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u57751_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. #u57751 {
  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. #u57751 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u57751_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u57752_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. #u57752 {
  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. #u57752 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u57752_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u57753 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u57754_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. #u57754 {
  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. #u57754 .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. #u57754_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u57755_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u57755 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u57755 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u57755_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u57756 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u57757_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. #u57757 {
  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. #u57757 .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. #u57757_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u57758_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u57758 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u57758 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u57758_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u57759 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u57760_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. #u57760 {
  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. #u57760 .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. #u57760_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u57761_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u57761 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u57761 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u57761_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u57762 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u57763_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. #u57763 {
  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. #u57763 .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. #u57763_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u57764_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u57764 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u57764 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u57764_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u57765 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u57766_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. #u57766 {
  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. #u57766 .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. #u57766_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u57767_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u57767 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u57767 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u57767_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u57768 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u57769_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. #u57769 {
  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. #u57769 .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. #u57769_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u57770_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u57770 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u57770 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u57770_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u57771 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u57772_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. #u57772 {
  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. #u57772 .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. #u57772_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u57773_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u57773 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u57773 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u57773_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u57774 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u57775_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. #u57775 {
  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. #u57775 .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. #u57775_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u57776_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u57776 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u57776 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u57776_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u57777 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u57778_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. #u57778 {
  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. #u57778 .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. #u57778_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u57779_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u57779 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u57779 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u57779_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u57780 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u57781_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. #u57781 {
  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. #u57781 .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. #u57781_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u57782_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u57782 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u57782 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u57782_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u57783_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. #u57783 {
  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. #u57783 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u57783_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u57784_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u57784 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u57784 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u57784_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u57785_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. #u57785 {
  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. #u57785 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u57785_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u57786_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u57786 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u57786 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u57786_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u57787 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u57788_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. #u57788 {
  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. #u57788 .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. #u57788_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u57789_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u57789 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u57789 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u57789_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u57790 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u57791_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. #u57791 {
  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. #u57791 .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. #u57791_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u57792_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u57792 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u57792 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u57792_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u57793_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1262px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u57793 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:51px;
  1658. width:1262px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u57793 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u57793_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u57794_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:73px;
  1681. height:25px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:18px;
  1693. }
  1694. #u57794 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:350px;
  1698. top:61px;
  1699. width:73px;
  1700. height:25px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:18px;
  1706. }
  1707. #u57794 .text {
  1708. position:absolute;
  1709. align-self:flex-start;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u57794_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u57795_img {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:1223px;
  1725. height:1109px;
  1726. }
  1727. #u57795 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:348px;
  1731. top:109px;
  1732. width:1223px;
  1733. height:1109px;
  1734. display:flex;
  1735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:18px;
  1739. }
  1740. #u57795 .text {
  1741. position:absolute;
  1742. align-self:center;
  1743. padding:2px 2px 2px 2px;
  1744. box-sizing:border-box;
  1745. width:100%;
  1746. }
  1747. #u57795_text {
  1748. border-width:0px;
  1749. word-wrap:break-word;
  1750. text-transform:none;
  1751. }
  1752. #u57796_img {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:0px;
  1756. top:0px;
  1757. width:41px;
  1758. height:41px;
  1759. }
  1760. #u57796 {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:487px;
  1764. top:255px;
  1765. width:41px;
  1766. height:41px;
  1767. display:flex;
  1768. }
  1769. #u57796 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:2px 2px 2px 2px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u57796_text {
  1777. border-width:0px;
  1778. word-wrap:break-word;
  1779. text-transform:none;
  1780. visibility:hidden;
  1781. }
  1782. #u57797 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:0px;
  1786. top:0px;
  1787. width:0px;
  1788. height:0px;
  1789. }
  1790. #u57798_div {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:129px;
  1796. height:30px;
  1797. background:inherit;
  1798. background-color:rgba(127, 127, 127, 1);
  1799. border:none;
  1800. border-radius:4px;
  1801. -moz-box-shadow:none;
  1802. -webkit-box-shadow:none;
  1803. box-shadow:none;
  1804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1805. font-weight:400;
  1806. font-style:normal;
  1807. color:#FFFFFF;
  1808. text-align:right;
  1809. }
  1810. #u57798 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:514px;
  1814. top:230px;
  1815. width:129px;
  1816. height:30px;
  1817. display:flex;
  1818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1819. font-weight:400;
  1820. font-style:normal;
  1821. color:#FFFFFF;
  1822. text-align:right;
  1823. }
  1824. #u57798 .text {
  1825. position:absolute;
  1826. align-self:center;
  1827. padding:0px 10px 0px 0px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u57798_text {
  1832. border-width:0px;
  1833. word-wrap:break-word;
  1834. text-transform:none;
  1835. }
  1836. #u57799_div {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:44px;
  1842. height:30px;
  1843. background:inherit;
  1844. background-color:rgba(0, 191, 191, 1);
  1845. border:none;
  1846. border-right:0px;
  1847. border-radius:4px;
  1848. border-top-right-radius:0px;
  1849. border-bottom-right-radius:0px;
  1850. -moz-box-shadow:none;
  1851. -webkit-box-shadow:none;
  1852. box-shadow:none;
  1853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1854. font-weight:400;
  1855. font-style:normal;
  1856. color:#FFFFFF;
  1857. }
  1858. #u57799 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:514px;
  1862. top:230px;
  1863. width:44px;
  1864. height:30px;
  1865. display:flex;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. color:#FFFFFF;
  1870. }
  1871. #u57799 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:0px 0px 0px 10px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u57799_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. }
  1883. #u57800_div {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:63px;
  1889. height:17px;
  1890. background:inherit;
  1891. background-color:rgba(255, 255, 255, 0);
  1892. border:none;
  1893. border-radius:0px;
  1894. -moz-box-shadow:none;
  1895. -webkit-box-shadow:none;
  1896. box-shadow:none;
  1897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1898. font-weight:400;
  1899. font-style:normal;
  1900. font-size:12px;
  1901. }
  1902. #u57800 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:580px;
  1906. top:260px;
  1907. width:63px;
  1908. height:17px;
  1909. display:flex;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:12px;
  1914. }
  1915. #u57800 .text {
  1916. position:absolute;
  1917. align-self:flex-start;
  1918. padding:0px 0px 0px 0px;
  1919. box-sizing:border-box;
  1920. width:100%;
  1921. }
  1922. #u57800_text {
  1923. border-width:0px;
  1924. white-space:nowrap;
  1925. text-transform:none;
  1926. }
  1927. #u57801 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:0px;
  1932. width:0px;
  1933. height:0px;
  1934. }
  1935. #u57802_div {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:1265px;
  1941. height:1193px;
  1942. background:inherit;
  1943. background-color:rgba(255, 255, 255, 1);
  1944. border:none;
  1945. border-radius:0px;
  1946. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1947. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1948. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1949. color:#1890FF;
  1950. }
  1951. #u57802 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:1640px;
  1955. top:50px;
  1956. width:1265px;
  1957. height:1193px;
  1958. display:flex;
  1959. color:#1890FF;
  1960. }
  1961. #u57802 .text {
  1962. position:absolute;
  1963. align-self:center;
  1964. padding:2px 2px 2px 2px;
  1965. box-sizing:border-box;
  1966. width:100%;
  1967. }
  1968. #u57802_text {
  1969. border-width:0px;
  1970. word-wrap:break-word;
  1971. text-transform:none;
  1972. visibility:hidden;
  1973. }
  1974. #u57803 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:0px;
  1980. height:0px;
  1981. }
  1982. #u57804 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:0px;
  1988. height:0px;
  1989. }
  1990. #u57805_img {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:993px;
  1996. height:950px;
  1997. }
  1998. #u57805 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:1889px;
  2002. top:115px;
  2003. width:993px;
  2004. height:950px;
  2005. display:flex;
  2006. }
  2007. #u57805 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 2px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u57805_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. visibility:hidden;
  2019. }
  2020. #u57806_div {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:29px;
  2026. height:17px;
  2027. background:inherit;
  2028. background-color:rgba(0, 191, 191, 1);
  2029. border:none;
  2030. border-radius:4px;
  2031. -moz-box-shadow:none;
  2032. -webkit-box-shadow:none;
  2033. box-shadow:none;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:10px;
  2038. color:#FFFFFF;
  2039. }
  2040. #u57806 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:1889px;
  2044. top:118px;
  2045. width:29px;
  2046. height:17px;
  2047. display:flex;
  2048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2049. font-weight:400;
  2050. font-style:normal;
  2051. font-size:10px;
  2052. color:#FFFFFF;
  2053. }
  2054. #u57806 .text {
  2055. position:absolute;
  2056. align-self:center;
  2057. padding:5px 0px 5px 0px;
  2058. box-sizing:border-box;
  2059. width:100%;
  2060. }
  2061. #u57806_text {
  2062. border-width:0px;
  2063. word-wrap:break-word;
  2064. text-transform:none;
  2065. }
  2066. #u57807_div {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:0px;
  2070. top:0px;
  2071. width:29px;
  2072. height:17px;
  2073. background:inherit;
  2074. background-color:rgba(217, 0, 27, 1);
  2075. border:none;
  2076. border-radius:4px;
  2077. -moz-box-shadow:none;
  2078. -webkit-box-shadow:none;
  2079. box-shadow:none;
  2080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2081. font-weight:400;
  2082. font-style:normal;
  2083. font-size:10px;
  2084. color:#FFFFFF;
  2085. }
  2086. #u57807 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:2556px;
  2090. top:115px;
  2091. width:29px;
  2092. height:17px;
  2093. display:flex;
  2094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2095. font-weight:400;
  2096. font-style:normal;
  2097. font-size:10px;
  2098. color:#FFFFFF;
  2099. }
  2100. #u57807 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:5px 0px 5px 0px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u57807_text {
  2108. border-width:0px;
  2109. word-wrap:break-word;
  2110. text-transform:none;
  2111. }
  2112. #u57808_div {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:0px;
  2116. top:0px;
  2117. width:29px;
  2118. height:17px;
  2119. background:inherit;
  2120. background-color:rgba(245, 154, 35, 1);
  2121. border:none;
  2122. border-radius:4px;
  2123. -moz-box-shadow:none;
  2124. -webkit-box-shadow:none;
  2125. box-shadow:none;
  2126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:10px;
  2130. color:#FFFFFF;
  2131. }
  2132. #u57808 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:1889px;
  2136. top:346px;
  2137. width:29px;
  2138. height:17px;
  2139. display:flex;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:10px;
  2144. color:#FFFFFF;
  2145. }
  2146. #u57808 .text {
  2147. position:absolute;
  2148. align-self:center;
  2149. padding:5px 0px 5px 0px;
  2150. box-sizing:border-box;
  2151. width:100%;
  2152. }
  2153. #u57808_text {
  2154. border-width:0px;
  2155. word-wrap:break-word;
  2156. text-transform:none;
  2157. }
  2158. #u57809_div {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:29px;
  2164. height:17px;
  2165. background:inherit;
  2166. background-color:rgba(0, 191, 191, 1);
  2167. border:none;
  2168. border-radius:4px;
  2169. -moz-box-shadow:none;
  2170. -webkit-box-shadow:none;
  2171. box-shadow:none;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:10px;
  2176. color:#FFFFFF;
  2177. }
  2178. #u57809 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:2220px;
  2182. top:115px;
  2183. width:29px;
  2184. height:17px;
  2185. display:flex;
  2186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2187. font-weight:400;
  2188. font-style:normal;
  2189. font-size:10px;
  2190. color:#FFFFFF;
  2191. }
  2192. #u57809 .text {
  2193. position:absolute;
  2194. align-self:center;
  2195. padding:5px 0px 5px 0px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u57809_text {
  2200. border-width:0px;
  2201. word-wrap:break-word;
  2202. text-transform:none;
  2203. }
  2204. #u57810_div {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:29px;
  2210. height:17px;
  2211. background:inherit;
  2212. background-color:rgba(0, 191, 191, 1);
  2213. border:none;
  2214. border-radius:4px;
  2215. -moz-box-shadow:none;
  2216. -webkit-box-shadow:none;
  2217. box-shadow:none;
  2218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2219. font-weight:400;
  2220. font-style:normal;
  2221. font-size:10px;
  2222. color:#FFFFFF;
  2223. }
  2224. #u57810 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:2220px;
  2228. top:349px;
  2229. width:29px;
  2230. height:17px;
  2231. display:flex;
  2232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2233. font-weight:400;
  2234. font-style:normal;
  2235. font-size:10px;
  2236. color:#FFFFFF;
  2237. }
  2238. #u57810 .text {
  2239. position:absolute;
  2240. align-self:center;
  2241. padding:5px 0px 5px 0px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u57810_text {
  2246. border-width:0px;
  2247. word-wrap:break-word;
  2248. text-transform:none;
  2249. }
  2250. #u57811_div {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:29px;
  2256. height:17px;
  2257. background:inherit;
  2258. background-color:rgba(0, 191, 191, 1);
  2259. border:none;
  2260. border-radius:4px;
  2261. -moz-box-shadow:none;
  2262. -webkit-box-shadow:none;
  2263. box-shadow:none;
  2264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:10px;
  2268. color:#FFFFFF;
  2269. }
  2270. #u57811 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:2550px;
  2274. top:346px;
  2275. width:29px;
  2276. height:17px;
  2277. display:flex;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. font-size:10px;
  2282. color:#FFFFFF;
  2283. }
  2284. #u57811 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:5px 0px 5px 0px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u57811_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. }
  2296. #u57812_div {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:29px;
  2302. height:17px;
  2303. background:inherit;
  2304. background-color:rgba(0, 191, 191, 1);
  2305. border:none;
  2306. border-radius:4px;
  2307. -moz-box-shadow:none;
  2308. -webkit-box-shadow:none;
  2309. box-shadow:none;
  2310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2311. font-weight:400;
  2312. font-style:normal;
  2313. font-size:10px;
  2314. color:#FFFFFF;
  2315. }
  2316. #u57812 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:2220px;
  2320. top:602px;
  2321. width:29px;
  2322. height:17px;
  2323. display:flex;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:10px;
  2328. color:#FFFFFF;
  2329. }
  2330. #u57812 .text {
  2331. position:absolute;
  2332. align-self:center;
  2333. padding:5px 0px 5px 0px;
  2334. box-sizing:border-box;
  2335. width:100%;
  2336. }
  2337. #u57812_text {
  2338. border-width:0px;
  2339. word-wrap:break-word;
  2340. text-transform:none;
  2341. }
  2342. #u57813_div {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:29px;
  2348. height:17px;
  2349. background:inherit;
  2350. background-color:rgba(0, 191, 191, 1);
  2351. border:none;
  2352. border-radius:4px;
  2353. -moz-box-shadow:none;
  2354. -webkit-box-shadow:none;
  2355. box-shadow:none;
  2356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:10px;
  2360. color:#FFFFFF;
  2361. }
  2362. #u57813 {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:2550px;
  2366. top:598px;
  2367. width:29px;
  2368. height:17px;
  2369. display:flex;
  2370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2371. font-weight:400;
  2372. font-style:normal;
  2373. font-size:10px;
  2374. color:#FFFFFF;
  2375. }
  2376. #u57813 .text {
  2377. position:absolute;
  2378. align-self:center;
  2379. padding:5px 0px 5px 0px;
  2380. box-sizing:border-box;
  2381. width:100%;
  2382. }
  2383. #u57813_text {
  2384. border-width:0px;
  2385. word-wrap:break-word;
  2386. text-transform:none;
  2387. }
  2388. #u57814_div {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:29px;
  2394. height:17px;
  2395. background:inherit;
  2396. background-color:rgba(0, 191, 191, 1);
  2397. border:none;
  2398. border-radius:4px;
  2399. -moz-box-shadow:none;
  2400. -webkit-box-shadow:none;
  2401. box-shadow:none;
  2402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2403. font-weight:400;
  2404. font-style:normal;
  2405. font-size:10px;
  2406. color:#FFFFFF;
  2407. }
  2408. #u57814 {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:1889px;
  2412. top:602px;
  2413. width:29px;
  2414. height:17px;
  2415. display:flex;
  2416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2417. font-weight:400;
  2418. font-style:normal;
  2419. font-size:10px;
  2420. color:#FFFFFF;
  2421. }
  2422. #u57814 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:5px 0px 5px 0px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u57814_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. }
  2434. #u57815_div {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:29px;
  2440. height:17px;
  2441. background:inherit;
  2442. background-color:rgba(0, 191, 191, 1);
  2443. border:none;
  2444. border-radius:4px;
  2445. -moz-box-shadow:none;
  2446. -webkit-box-shadow:none;
  2447. box-shadow:none;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:10px;
  2452. color:#FFFFFF;
  2453. }
  2454. #u57815 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:2220px;
  2458. top:848px;
  2459. width:29px;
  2460. height:17px;
  2461. display:flex;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:10px;
  2466. color:#FFFFFF;
  2467. }
  2468. #u57815 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:5px 0px 5px 0px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u57815_text {
  2476. border-width:0px;
  2477. word-wrap:break-word;
  2478. text-transform:none;
  2479. }
  2480. #u57816_div {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:29px;
  2486. height:17px;
  2487. background:inherit;
  2488. background-color:rgba(0, 191, 191, 1);
  2489. border:none;
  2490. border-radius:4px;
  2491. -moz-box-shadow:none;
  2492. -webkit-box-shadow:none;
  2493. box-shadow:none;
  2494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2495. font-weight:400;
  2496. font-style:normal;
  2497. font-size:10px;
  2498. color:#FFFFFF;
  2499. }
  2500. #u57816 {
  2501. border-width:0px;
  2502. position:absolute;
  2503. left:2550px;
  2504. top:845px;
  2505. width:29px;
  2506. height:17px;
  2507. display:flex;
  2508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2509. font-weight:400;
  2510. font-style:normal;
  2511. font-size:10px;
  2512. color:#FFFFFF;
  2513. }
  2514. #u57816 .text {
  2515. position:absolute;
  2516. align-self:center;
  2517. padding:5px 0px 5px 0px;
  2518. box-sizing:border-box;
  2519. width:100%;
  2520. }
  2521. #u57816_text {
  2522. border-width:0px;
  2523. word-wrap:break-word;
  2524. text-transform:none;
  2525. }
  2526. #u57817_div {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:29px;
  2532. height:17px;
  2533. background:inherit;
  2534. background-color:rgba(0, 191, 191, 1);
  2535. border:none;
  2536. border-radius:4px;
  2537. -moz-box-shadow:none;
  2538. -webkit-box-shadow:none;
  2539. box-shadow:none;
  2540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:10px;
  2544. color:#FFFFFF;
  2545. }
  2546. #u57817 {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:1889px;
  2550. top:848px;
  2551. width:29px;
  2552. height:17px;
  2553. display:flex;
  2554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2555. font-weight:400;
  2556. font-style:normal;
  2557. font-size:10px;
  2558. color:#FFFFFF;
  2559. }
  2560. #u57817 .text {
  2561. position:absolute;
  2562. align-self:center;
  2563. padding:5px 0px 5px 0px;
  2564. box-sizing:border-box;
  2565. width:100%;
  2566. }
  2567. #u57817_text {
  2568. border-width:0px;
  2569. word-wrap:break-word;
  2570. text-transform:none;
  2571. }
  2572. #u57818_div {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:191px;
  2578. height:435px;
  2579. background:inherit;
  2580. background-color:rgba(242, 242, 242, 1);
  2581. border:none;
  2582. border-radius:7px;
  2583. -moz-box-shadow:none;
  2584. -webkit-box-shadow:none;
  2585. box-shadow:none;
  2586. }
  2587. #u57818 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:1658px;
  2591. top:281px;
  2592. width:191px;
  2593. height:435px;
  2594. display:flex;
  2595. }
  2596. #u57818 .text {
  2597. position:absolute;
  2598. align-self:center;
  2599. padding:2px 2px 2px 2px;
  2600. box-sizing:border-box;
  2601. width:100%;
  2602. }
  2603. #u57818_text {
  2604. border-width:0px;
  2605. word-wrap:break-word;
  2606. text-transform:none;
  2607. visibility:hidden;
  2608. }
  2609. #u57819_div {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:57px;
  2615. height:30px;
  2616. background:inherit;
  2617. background-color:rgba(255, 255, 255, 0);
  2618. border:none;
  2619. border-radius:0px;
  2620. -moz-box-shadow:none;
  2621. -webkit-box-shadow:none;
  2622. box-shadow:none;
  2623. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2624. font-weight:500;
  2625. font-style:normal;
  2626. font-size:14px;
  2627. color:#000000;
  2628. line-height:30px;
  2629. }
  2630. #u57819 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:1658px;
  2634. top:59px;
  2635. width:57px;
  2636. height:30px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2639. font-weight:500;
  2640. font-style:normal;
  2641. font-size:14px;
  2642. color:#000000;
  2643. line-height:30px;
  2644. }
  2645. #u57819 .text {
  2646. position:absolute;
  2647. align-self:flex-start;
  2648. padding:0px 0px 0px 0px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u57819_text {
  2653. border-width:0px;
  2654. white-space:nowrap;
  2655. text-transform:none;
  2656. }
  2657. #u57820 {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:0px;
  2661. top:0px;
  2662. width:0px;
  2663. height:0px;
  2664. }
  2665. #u57821_img {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:0px;
  2669. top:0px;
  2670. width:18px;
  2671. height:18px;
  2672. }
  2673. #u57821 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:2857px;
  2677. top:67px;
  2678. width:18px;
  2679. height:18px;
  2680. display:flex;
  2681. }
  2682. #u57821 .text {
  2683. position:absolute;
  2684. align-self:center;
  2685. padding:2px 2px 2px 2px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u57821_text {
  2690. border-width:0px;
  2691. word-wrap:break-word;
  2692. text-transform:none;
  2693. visibility:hidden;
  2694. }
  2695. #u57822_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:2px;
  2701. height:15px;
  2702. }
  2703. #u57822 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:2842px;
  2707. top:69px;
  2708. width:1px;
  2709. height:14px;
  2710. display:flex;
  2711. }
  2712. #u57822 .text {
  2713. position:absolute;
  2714. align-self:center;
  2715. padding:2px 2px 2px 2px;
  2716. box-sizing:border-box;
  2717. width:100%;
  2718. }
  2719. #u57822_text {
  2720. border-width:0px;
  2721. word-wrap:break-word;
  2722. text-transform:none;
  2723. visibility:hidden;
  2724. }
  2725. #u57823 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:0px;
  2731. height:0px;
  2732. }
  2733. #u57824_img {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:9px;
  2739. height:9px;
  2740. }
  2741. #u57824 {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:2719px;
  2745. top:66px;
  2746. width:9px;
  2747. height:9px;
  2748. display:flex;
  2749. }
  2750. #u57824 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 2px 2px 2px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u57824_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. visibility:hidden;
  2762. }
  2763. #u57825_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:9px;
  2769. height:9px;
  2770. }
  2771. #u57825 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:2731px;
  2775. top:66px;
  2776. width:9px;
  2777. height:9px;
  2778. display:flex;
  2779. }
  2780. #u57825 .text {
  2781. position:absolute;
  2782. align-self:center;
  2783. padding:2px 2px 2px 2px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u57825_text {
  2788. border-width:0px;
  2789. word-wrap:break-word;
  2790. text-transform:none;
  2791. visibility:hidden;
  2792. }
  2793. #u57826_img {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:9px;
  2799. height:9px;
  2800. }
  2801. #u57826 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:2719px;
  2805. top:78px;
  2806. width:9px;
  2807. height:9px;
  2808. display:flex;
  2809. }
  2810. #u57826 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:2px 2px 2px 2px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u57826_text {
  2818. border-width:0px;
  2819. word-wrap:break-word;
  2820. text-transform:none;
  2821. visibility:hidden;
  2822. }
  2823. #u57827_img {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:0px;
  2828. width:9px;
  2829. height:9px;
  2830. }
  2831. #u57827 {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:2731px;
  2835. top:78px;
  2836. width:9px;
  2837. height:9px;
  2838. display:flex;
  2839. }
  2840. #u57827 .text {
  2841. position:absolute;
  2842. align-self:center;
  2843. padding:2px 2px 2px 2px;
  2844. box-sizing:border-box;
  2845. width:100%;
  2846. }
  2847. #u57827_text {
  2848. border-width:0px;
  2849. word-wrap:break-word;
  2850. text-transform:none;
  2851. visibility:hidden;
  2852. }
  2853. #u57828 {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:0px;
  2859. height:0px;
  2860. }
  2861. #u57829_img {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:0px;
  2865. top:0px;
  2866. width:6px;
  2867. height:6px;
  2868. }
  2869. #u57829 {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:2679px;
  2873. top:66px;
  2874. width:6px;
  2875. height:6px;
  2876. display:flex;
  2877. }
  2878. #u57829 .text {
  2879. position:absolute;
  2880. align-self:center;
  2881. padding:2px 2px 2px 2px;
  2882. box-sizing:border-box;
  2883. width:100%;
  2884. }
  2885. #u57829_text {
  2886. border-width:0px;
  2887. word-wrap:break-word;
  2888. text-transform:none;
  2889. visibility:hidden;
  2890. }
  2891. #u57830_img {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:6px;
  2897. height:6px;
  2898. }
  2899. #u57830 {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:2686px;
  2903. top:66px;
  2904. width:6px;
  2905. height:6px;
  2906. display:flex;
  2907. }
  2908. #u57830 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:2px 2px 2px 2px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u57830_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. visibility:hidden;
  2920. }
  2921. #u57831_img {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:6px;
  2927. height:6px;
  2928. }
  2929. #u57831 {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:2693px;
  2933. top:66px;
  2934. width:6px;
  2935. height:6px;
  2936. display:flex;
  2937. }
  2938. #u57831 .text {
  2939. position:absolute;
  2940. align-self:center;
  2941. padding:2px 2px 2px 2px;
  2942. box-sizing:border-box;
  2943. width:100%;
  2944. }
  2945. #u57831_text {
  2946. border-width:0px;
  2947. word-wrap:break-word;
  2948. text-transform:none;
  2949. visibility:hidden;
  2950. }
  2951. #u57832_img {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:6px;
  2957. height:6px;
  2958. }
  2959. #u57832 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:2679px;
  2963. top:73px;
  2964. width:6px;
  2965. height:6px;
  2966. display:flex;
  2967. }
  2968. #u57832 .text {
  2969. position:absolute;
  2970. align-self:center;
  2971. padding:2px 2px 2px 2px;
  2972. box-sizing:border-box;
  2973. width:100%;
  2974. }
  2975. #u57832_text {
  2976. border-width:0px;
  2977. word-wrap:break-word;
  2978. text-transform:none;
  2979. visibility:hidden;
  2980. }
  2981. #u57833_img {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:6px;
  2987. height:6px;
  2988. }
  2989. #u57833 {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:2686px;
  2993. top:73px;
  2994. width:6px;
  2995. height:6px;
  2996. display:flex;
  2997. }
  2998. #u57833 .text {
  2999. position:absolute;
  3000. align-self:center;
  3001. padding:2px 2px 2px 2px;
  3002. box-sizing:border-box;
  3003. width:100%;
  3004. }
  3005. #u57833_text {
  3006. border-width:0px;
  3007. word-wrap:break-word;
  3008. text-transform:none;
  3009. visibility:hidden;
  3010. }
  3011. #u57834_img {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:0px;
  3015. top:0px;
  3016. width:6px;
  3017. height:6px;
  3018. }
  3019. #u57834 {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:2693px;
  3023. top:73px;
  3024. width:6px;
  3025. height:6px;
  3026. display:flex;
  3027. }
  3028. #u57834 .text {
  3029. position:absolute;
  3030. align-self:center;
  3031. padding:2px 2px 2px 2px;
  3032. box-sizing:border-box;
  3033. width:100%;
  3034. }
  3035. #u57834_text {
  3036. border-width:0px;
  3037. word-wrap:break-word;
  3038. text-transform:none;
  3039. visibility:hidden;
  3040. }
  3041. #u57835_img {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:0px;
  3045. top:0px;
  3046. width:6px;
  3047. height:6px;
  3048. }
  3049. #u57835 {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:2679px;
  3053. top:80px;
  3054. width:6px;
  3055. height:6px;
  3056. display:flex;
  3057. }
  3058. #u57835 .text {
  3059. position:absolute;
  3060. align-self:center;
  3061. padding:2px 2px 2px 2px;
  3062. box-sizing:border-box;
  3063. width:100%;
  3064. }
  3065. #u57835_text {
  3066. border-width:0px;
  3067. word-wrap:break-word;
  3068. text-transform:none;
  3069. visibility:hidden;
  3070. }
  3071. #u57836_img {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:6px;
  3077. height:6px;
  3078. }
  3079. #u57836 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:2686px;
  3083. top:80px;
  3084. width:6px;
  3085. height:6px;
  3086. display:flex;
  3087. }
  3088. #u57836 .text {
  3089. position:absolute;
  3090. align-self:center;
  3091. padding:2px 2px 2px 2px;
  3092. box-sizing:border-box;
  3093. width:100%;
  3094. }
  3095. #u57836_text {
  3096. border-width:0px;
  3097. word-wrap:break-word;
  3098. text-transform:none;
  3099. visibility:hidden;
  3100. }
  3101. #u57837_img {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:6px;
  3107. height:6px;
  3108. }
  3109. #u57837 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:2693px;
  3113. top:80px;
  3114. width:6px;
  3115. height:6px;
  3116. display:flex;
  3117. }
  3118. #u57837 .text {
  3119. position:absolute;
  3120. align-self:center;
  3121. padding:2px 2px 2px 2px;
  3122. box-sizing:border-box;
  3123. width:100%;
  3124. }
  3125. #u57837_text {
  3126. border-width:0px;
  3127. word-wrap:break-word;
  3128. text-transform:none;
  3129. visibility:hidden;
  3130. }
  3131. #u57838 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:0px;
  3137. height:0px;
  3138. }
  3139. #u57839_img {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:4px;
  3145. height:4px;
  3146. }
  3147. #u57839 {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:2639px;
  3151. top:67px;
  3152. width:4px;
  3153. height:4px;
  3154. display:flex;
  3155. }
  3156. #u57839 .text {
  3157. position:absolute;
  3158. align-self:center;
  3159. padding:2px 2px 2px 2px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u57839_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. visibility:hidden;
  3168. }
  3169. #u57840_img {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:4px;
  3175. height:4px;
  3176. }
  3177. #u57840 {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:2644px;
  3181. top:67px;
  3182. width:4px;
  3183. height:4px;
  3184. display:flex;
  3185. }
  3186. #u57840 .text {
  3187. position:absolute;
  3188. align-self:center;
  3189. padding:2px 2px 2px 2px;
  3190. box-sizing:border-box;
  3191. width:100%;
  3192. }
  3193. #u57840_text {
  3194. border-width:0px;
  3195. word-wrap:break-word;
  3196. text-transform:none;
  3197. visibility:hidden;
  3198. }
  3199. #u57841_img {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:4px;
  3205. height:4px;
  3206. }
  3207. #u57841 {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:2649px;
  3211. top:67px;
  3212. width:4px;
  3213. height:4px;
  3214. display:flex;
  3215. }
  3216. #u57841 .text {
  3217. position:absolute;
  3218. align-self:center;
  3219. padding:2px 2px 2px 2px;
  3220. box-sizing:border-box;
  3221. width:100%;
  3222. }
  3223. #u57841_text {
  3224. border-width:0px;
  3225. word-wrap:break-word;
  3226. text-transform:none;
  3227. visibility:hidden;
  3228. }
  3229. #u57842_img {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:0px;
  3233. top:0px;
  3234. width:4px;
  3235. height:4px;
  3236. }
  3237. #u57842 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:2654px;
  3241. top:67px;
  3242. width:4px;
  3243. height:4px;
  3244. display:flex;
  3245. }
  3246. #u57842 .text {
  3247. position:absolute;
  3248. align-self:center;
  3249. padding:2px 2px 2px 2px;
  3250. box-sizing:border-box;
  3251. width:100%;
  3252. }
  3253. #u57842_text {
  3254. border-width:0px;
  3255. word-wrap:break-word;
  3256. text-transform:none;
  3257. visibility:hidden;
  3258. }
  3259. #u57843_img {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:4px;
  3265. height:4px;
  3266. }
  3267. #u57843 {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:2639px;
  3271. top:72px;
  3272. width:4px;
  3273. height:4px;
  3274. display:flex;
  3275. }
  3276. #u57843 .text {
  3277. position:absolute;
  3278. align-self:center;
  3279. padding:2px 2px 2px 2px;
  3280. box-sizing:border-box;
  3281. width:100%;
  3282. }
  3283. #u57843_text {
  3284. border-width:0px;
  3285. word-wrap:break-word;
  3286. text-transform:none;
  3287. visibility:hidden;
  3288. }
  3289. #u57844_img {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:0px;
  3293. top:0px;
  3294. width:4px;
  3295. height:4px;
  3296. }
  3297. #u57844 {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:2644px;
  3301. top:72px;
  3302. width:4px;
  3303. height:4px;
  3304. display:flex;
  3305. }
  3306. #u57844 .text {
  3307. position:absolute;
  3308. align-self:center;
  3309. padding:2px 2px 2px 2px;
  3310. box-sizing:border-box;
  3311. width:100%;
  3312. }
  3313. #u57844_text {
  3314. border-width:0px;
  3315. word-wrap:break-word;
  3316. text-transform:none;
  3317. visibility:hidden;
  3318. }
  3319. #u57845_img {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:0px;
  3323. top:0px;
  3324. width:4px;
  3325. height:4px;
  3326. }
  3327. #u57845 {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:2649px;
  3331. top:72px;
  3332. width:4px;
  3333. height:4px;
  3334. display:flex;
  3335. }
  3336. #u57845 .text {
  3337. position:absolute;
  3338. align-self:center;
  3339. padding:2px 2px 2px 2px;
  3340. box-sizing:border-box;
  3341. width:100%;
  3342. }
  3343. #u57845_text {
  3344. border-width:0px;
  3345. word-wrap:break-word;
  3346. text-transform:none;
  3347. visibility:hidden;
  3348. }
  3349. #u57846_img {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:0px;
  3353. top:0px;
  3354. width:4px;
  3355. height:4px;
  3356. }
  3357. #u57846 {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:2654px;
  3361. top:72px;
  3362. width:4px;
  3363. height:4px;
  3364. display:flex;
  3365. }
  3366. #u57846 .text {
  3367. position:absolute;
  3368. align-self:center;
  3369. padding:2px 2px 2px 2px;
  3370. box-sizing:border-box;
  3371. width:100%;
  3372. }
  3373. #u57846_text {
  3374. border-width:0px;
  3375. word-wrap:break-word;
  3376. text-transform:none;
  3377. visibility:hidden;
  3378. }
  3379. #u57847_img {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:0px;
  3384. width:4px;
  3385. height:4px;
  3386. }
  3387. #u57847 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:2639px;
  3391. top:77px;
  3392. width:4px;
  3393. height:4px;
  3394. display:flex;
  3395. }
  3396. #u57847 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 2px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u57847_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. visibility:hidden;
  3408. }
  3409. #u57848_img {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:4px;
  3415. height:4px;
  3416. }
  3417. #u57848 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:2644px;
  3421. top:77px;
  3422. width:4px;
  3423. height:4px;
  3424. display:flex;
  3425. }
  3426. #u57848 .text {
  3427. position:absolute;
  3428. align-self:center;
  3429. padding:2px 2px 2px 2px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u57848_text {
  3434. border-width:0px;
  3435. word-wrap:break-word;
  3436. text-transform:none;
  3437. visibility:hidden;
  3438. }
  3439. #u57849_img {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:0px;
  3443. top:0px;
  3444. width:4px;
  3445. height:4px;
  3446. }
  3447. #u57849 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:2649px;
  3451. top:77px;
  3452. width:4px;
  3453. height:4px;
  3454. display:flex;
  3455. }
  3456. #u57849 .text {
  3457. position:absolute;
  3458. align-self:center;
  3459. padding:2px 2px 2px 2px;
  3460. box-sizing:border-box;
  3461. width:100%;
  3462. }
  3463. #u57849_text {
  3464. border-width:0px;
  3465. word-wrap:break-word;
  3466. text-transform:none;
  3467. visibility:hidden;
  3468. }
  3469. #u57850_img {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:4px;
  3475. height:4px;
  3476. }
  3477. #u57850 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:2654px;
  3481. top:77px;
  3482. width:4px;
  3483. height:4px;
  3484. display:flex;
  3485. }
  3486. #u57850 .text {
  3487. position:absolute;
  3488. align-self:center;
  3489. padding:2px 2px 2px 2px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u57850_text {
  3494. border-width:0px;
  3495. word-wrap:break-word;
  3496. text-transform:none;
  3497. visibility:hidden;
  3498. }
  3499. #u57851_img {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:0px;
  3503. top:0px;
  3504. width:4px;
  3505. height:4px;
  3506. }
  3507. #u57851 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:2639px;
  3511. top:82px;
  3512. width:4px;
  3513. height:4px;
  3514. display:flex;
  3515. }
  3516. #u57851 .text {
  3517. position:absolute;
  3518. align-self:center;
  3519. padding:2px 2px 2px 2px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u57851_text {
  3524. border-width:0px;
  3525. word-wrap:break-word;
  3526. text-transform:none;
  3527. visibility:hidden;
  3528. }
  3529. #u57852_img {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:4px;
  3535. height:4px;
  3536. }
  3537. #u57852 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:2644px;
  3541. top:82px;
  3542. width:4px;
  3543. height:4px;
  3544. display:flex;
  3545. }
  3546. #u57852 .text {
  3547. position:absolute;
  3548. align-self:center;
  3549. padding:2px 2px 2px 2px;
  3550. box-sizing:border-box;
  3551. width:100%;
  3552. }
  3553. #u57852_text {
  3554. border-width:0px;
  3555. word-wrap:break-word;
  3556. text-transform:none;
  3557. visibility:hidden;
  3558. }
  3559. #u57853_img {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:4px;
  3565. height:4px;
  3566. }
  3567. #u57853 {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:2649px;
  3571. top:82px;
  3572. width:4px;
  3573. height:4px;
  3574. display:flex;
  3575. }
  3576. #u57853 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 2px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u57853_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u57854_img {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:4px;
  3595. height:4px;
  3596. }
  3597. #u57854 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:2654px;
  3601. top:82px;
  3602. width:4px;
  3603. height:4px;
  3604. display:flex;
  3605. }
  3606. #u57854 .text {
  3607. position:absolute;
  3608. align-self:center;
  3609. padding:2px 2px 2px 2px;
  3610. box-sizing:border-box;
  3611. width:100%;
  3612. }
  3613. #u57854_text {
  3614. border-width:0px;
  3615. word-wrap:break-word;
  3616. text-transform:none;
  3617. visibility:hidden;
  3618. }
  3619. #u57855_img {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:20px;
  3625. height:20px;
  3626. }
  3627. #u57855 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:2761px;
  3631. top:66px;
  3632. width:20px;
  3633. height:20px;
  3634. display:flex;
  3635. }
  3636. #u57855 .text {
  3637. position:absolute;
  3638. align-self:center;
  3639. padding:2px 2px 2px 2px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u57855_text {
  3644. border-width:0px;
  3645. word-wrap:break-word;
  3646. text-transform:none;
  3647. visibility:hidden;
  3648. }
  3649. #u57856_img {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:18px;
  3655. height:18px;
  3656. }
  3657. #u57856 {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:2810px;
  3661. top:67px;
  3662. width:18px;
  3663. height:18px;
  3664. display:flex;
  3665. }
  3666. #u57856 .text {
  3667. position:absolute;
  3668. align-self:center;
  3669. padding:2px 2px 2px 2px;
  3670. box-sizing:border-box;
  3671. width:100%;
  3672. }
  3673. #u57856_text {
  3674. border-width:0px;
  3675. word-wrap:break-word;
  3676. text-transform:none;
  3677. visibility:hidden;
  3678. }
  3679. #u57857_img {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:2px;
  3685. height:15px;
  3686. }
  3687. #u57857 {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:2795px;
  3691. top:69px;
  3692. width:1px;
  3693. height:14px;
  3694. display:flex;
  3695. }
  3696. #u57857 .text {
  3697. position:absolute;
  3698. align-self:center;
  3699. padding:2px 2px 2px 2px;
  3700. box-sizing:border-box;
  3701. width:100%;
  3702. }
  3703. #u57857_text {
  3704. border-width:0px;
  3705. word-wrap:break-word;
  3706. text-transform:none;
  3707. visibility:hidden;
  3708. }
  3709. #u57858_div {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:0px;
  3713. top:0px;
  3714. width:43px;
  3715. height:30px;
  3716. background:inherit;
  3717. background-color:rgba(255, 255, 255, 0);
  3718. border:none;
  3719. border-radius:0px;
  3720. -moz-box-shadow:none;
  3721. -webkit-box-shadow:none;
  3722. box-shadow:none;
  3723. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3724. font-weight:500;
  3725. font-style:normal;
  3726. font-size:14px;
  3727. color:#000000;
  3728. line-height:30px;
  3729. }
  3730. #u57858 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:1658px;
  3734. top:251px;
  3735. width:43px;
  3736. height:30px;
  3737. display:flex;
  3738. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3739. font-weight:500;
  3740. font-style:normal;
  3741. font-size:14px;
  3742. color:#000000;
  3743. line-height:30px;
  3744. }
  3745. #u57858 .text {
  3746. position:absolute;
  3747. align-self:flex-start;
  3748. padding:0px 0px 0px 0px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u57858_text {
  3753. border-width:0px;
  3754. white-space:nowrap;
  3755. text-transform:none;
  3756. }
  3757. #u57859 {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:0px;
  3763. height:0px;
  3764. }
  3765. #u57860_div {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:0px;
  3769. top:0px;
  3770. width:30px;
  3771. height:30px;
  3772. background:inherit;
  3773. background-color:rgba(255, 255, 255, 1);
  3774. box-sizing:border-box;
  3775. border-width:1px;
  3776. border-style:solid;
  3777. border-color:rgba(121, 121, 121, 1);
  3778. border-radius:0px;
  3779. -moz-box-shadow:none;
  3780. -webkit-box-shadow:none;
  3781. box-shadow:none;
  3782. }
  3783. #u57860 {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:1659px;
  3787. top:94px;
  3788. width:30px;
  3789. height:30px;
  3790. display:flex;
  3791. }
  3792. #u57860 .text {
  3793. position:absolute;
  3794. align-self:center;
  3795. padding:2px 2px 2px 2px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u57860_text {
  3800. border-width:0px;
  3801. word-wrap:break-word;
  3802. text-transform:none;
  3803. visibility:hidden;
  3804. }
  3805. #u57861_img {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:19px;
  3811. height:18px;
  3812. }
  3813. #u57861 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:1665px;
  3817. top:100px;
  3818. width:19px;
  3819. height:18px;
  3820. display:flex;
  3821. -webkit-transform:rotate(135deg);
  3822. -moz-transform:rotate(135deg);
  3823. -ms-transform:rotate(135deg);
  3824. transform:rotate(135deg);
  3825. }
  3826. #u57861 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:2px 2px 2px 2px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u57861_text {
  3834. border-width:0px;
  3835. word-wrap:break-word;
  3836. text-transform:none;
  3837. visibility:hidden;
  3838. }
  3839. #u57862 {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:0px;
  3845. height:0px;
  3846. }
  3847. #u57863_div {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:30px;
  3853. height:30px;
  3854. background:inherit;
  3855. background-color:rgba(255, 255, 255, 1);
  3856. box-sizing:border-box;
  3857. border-width:1px;
  3858. border-style:solid;
  3859. border-color:rgba(121, 121, 121, 1);
  3860. border-radius:0px;
  3861. -moz-box-shadow:none;
  3862. -webkit-box-shadow:none;
  3863. box-shadow:none;
  3864. }
  3865. #u57863 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:1699px;
  3869. top:94px;
  3870. width:30px;
  3871. height:30px;
  3872. display:flex;
  3873. }
  3874. #u57863 .text {
  3875. position:absolute;
  3876. align-self:center;
  3877. padding:2px 2px 2px 2px;
  3878. box-sizing:border-box;
  3879. width:100%;
  3880. }
  3881. #u57863_text {
  3882. border-width:0px;
  3883. word-wrap:break-word;
  3884. text-transform:none;
  3885. visibility:hidden;
  3886. }
  3887. #u57864_img {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:19px;
  3893. height:18px;
  3894. }
  3895. #u57864 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:1705px;
  3899. top:100px;
  3900. width:19px;
  3901. height:18px;
  3902. display:flex;
  3903. -webkit-transform:rotate(180deg);
  3904. -moz-transform:rotate(180deg);
  3905. -ms-transform:rotate(180deg);
  3906. transform:rotate(180deg);
  3907. }
  3908. #u57864 .text {
  3909. position:absolute;
  3910. align-self:center;
  3911. padding:2px 2px 2px 2px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u57864_text {
  3916. border-width:0px;
  3917. word-wrap:break-word;
  3918. text-transform:none;
  3919. visibility:hidden;
  3920. }
  3921. #u57865 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:0px;
  3927. height:0px;
  3928. }
  3929. #u57866_div {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:30px;
  3935. height:30px;
  3936. background:inherit;
  3937. background-color:rgba(255, 255, 255, 1);
  3938. box-sizing:border-box;
  3939. border-width:1px;
  3940. border-style:solid;
  3941. border-color:rgba(121, 121, 121, 1);
  3942. border-radius:0px;
  3943. -moz-box-shadow:none;
  3944. -webkit-box-shadow:none;
  3945. box-shadow:none;
  3946. }
  3947. #u57866 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:1739px;
  3951. top:94px;
  3952. width:30px;
  3953. height:30px;
  3954. display:flex;
  3955. }
  3956. #u57866 .text {
  3957. position:absolute;
  3958. align-self:center;
  3959. padding:2px 2px 2px 2px;
  3960. box-sizing:border-box;
  3961. width:100%;
  3962. }
  3963. #u57866_text {
  3964. border-width:0px;
  3965. word-wrap:break-word;
  3966. text-transform:none;
  3967. visibility:hidden;
  3968. }
  3969. #u57867_img {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:19px;
  3975. height:18px;
  3976. }
  3977. #u57867 {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:1745px;
  3981. top:100px;
  3982. width:19px;
  3983. height:18px;
  3984. display:flex;
  3985. -webkit-transform:rotate(225deg);
  3986. -moz-transform:rotate(225deg);
  3987. -ms-transform:rotate(225deg);
  3988. transform:rotate(225deg);
  3989. }
  3990. #u57867 .text {
  3991. position:absolute;
  3992. align-self:center;
  3993. padding:2px 2px 2px 2px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u57867_text {
  3998. border-width:0px;
  3999. word-wrap:break-word;
  4000. text-transform:none;
  4001. visibility:hidden;
  4002. }
  4003. #u57868 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:0px;
  4007. top:0px;
  4008. width:0px;
  4009. height:0px;
  4010. }
  4011. #u57869_div {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:30px;
  4017. height:30px;
  4018. background:inherit;
  4019. background-color:rgba(255, 255, 255, 1);
  4020. box-sizing:border-box;
  4021. border-width:1px;
  4022. border-style:solid;
  4023. border-color:rgba(121, 121, 121, 1);
  4024. border-radius:0px;
  4025. -moz-box-shadow:none;
  4026. -webkit-box-shadow:none;
  4027. box-shadow:none;
  4028. }
  4029. #u57869 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:1659px;
  4033. top:134px;
  4034. width:30px;
  4035. height:30px;
  4036. display:flex;
  4037. }
  4038. #u57869 .text {
  4039. position:absolute;
  4040. align-self:center;
  4041. padding:2px 2px 2px 2px;
  4042. box-sizing:border-box;
  4043. width:100%;
  4044. }
  4045. #u57869_text {
  4046. border-width:0px;
  4047. word-wrap:break-word;
  4048. text-transform:none;
  4049. visibility:hidden;
  4050. }
  4051. #u57870_img {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:19px;
  4057. height:18px;
  4058. }
  4059. #u57870 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:1665px;
  4063. top:140px;
  4064. width:19px;
  4065. height:18px;
  4066. display:flex;
  4067. -webkit-transform:rotate(90deg);
  4068. -moz-transform:rotate(90deg);
  4069. -ms-transform:rotate(90deg);
  4070. transform:rotate(90deg);
  4071. }
  4072. #u57870 .text {
  4073. position:absolute;
  4074. align-self:center;
  4075. padding:2px 2px 2px 2px;
  4076. box-sizing:border-box;
  4077. width:100%;
  4078. }
  4079. #u57870_text {
  4080. border-width:0px;
  4081. word-wrap:break-word;
  4082. text-transform:none;
  4083. visibility:hidden;
  4084. }
  4085. #u57871 {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:0px;
  4091. height:0px;
  4092. }
  4093. #u57872_div {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:30px;
  4099. height:30px;
  4100. background:inherit;
  4101. background-color:rgba(255, 255, 255, 1);
  4102. box-sizing:border-box;
  4103. border-width:1px;
  4104. border-style:solid;
  4105. border-color:rgba(121, 121, 121, 1);
  4106. border-radius:0px;
  4107. -moz-box-shadow:none;
  4108. -webkit-box-shadow:none;
  4109. box-shadow:none;
  4110. }
  4111. #u57872 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:1739px;
  4115. top:134px;
  4116. width:30px;
  4117. height:30px;
  4118. display:flex;
  4119. }
  4120. #u57872 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 2px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u57872_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. visibility:hidden;
  4132. }
  4133. #u57873_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:19px;
  4139. height:18px;
  4140. }
  4141. #u57873 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:1745px;
  4145. top:140px;
  4146. width:19px;
  4147. height:18px;
  4148. display:flex;
  4149. -webkit-transform:rotate(270deg);
  4150. -moz-transform:rotate(270deg);
  4151. -ms-transform:rotate(270deg);
  4152. transform:rotate(270deg);
  4153. }
  4154. #u57873 .text {
  4155. position:absolute;
  4156. align-self:center;
  4157. padding:2px 2px 2px 2px;
  4158. box-sizing:border-box;
  4159. width:100%;
  4160. }
  4161. #u57873_text {
  4162. border-width:0px;
  4163. word-wrap:break-word;
  4164. text-transform:none;
  4165. visibility:hidden;
  4166. }
  4167. #u57874 {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:0px;
  4173. height:0px;
  4174. }
  4175. #u57875_div {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:0px;
  4179. top:0px;
  4180. width:30px;
  4181. height:30px;
  4182. background:inherit;
  4183. background-color:rgba(255, 255, 255, 1);
  4184. box-sizing:border-box;
  4185. border-width:1px;
  4186. border-style:solid;
  4187. border-color:rgba(121, 121, 121, 1);
  4188. border-radius:0px;
  4189. -moz-box-shadow:none;
  4190. -webkit-box-shadow:none;
  4191. box-shadow:none;
  4192. }
  4193. #u57875 {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:1659px;
  4197. top:174px;
  4198. width:30px;
  4199. height:30px;
  4200. display:flex;
  4201. }
  4202. #u57875 .text {
  4203. position:absolute;
  4204. align-self:center;
  4205. padding:2px 2px 2px 2px;
  4206. box-sizing:border-box;
  4207. width:100%;
  4208. }
  4209. #u57875_text {
  4210. border-width:0px;
  4211. word-wrap:break-word;
  4212. text-transform:none;
  4213. visibility:hidden;
  4214. }
  4215. #u57876_img {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:19px;
  4221. height:18px;
  4222. }
  4223. #u57876 {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:1665px;
  4227. top:180px;
  4228. width:19px;
  4229. height:18px;
  4230. display:flex;
  4231. -webkit-transform:rotate(51deg);
  4232. -moz-transform:rotate(51deg);
  4233. -ms-transform:rotate(51deg);
  4234. transform:rotate(51deg);
  4235. }
  4236. #u57876 .text {
  4237. position:absolute;
  4238. align-self:center;
  4239. padding:2px 2px 2px 2px;
  4240. box-sizing:border-box;
  4241. width:100%;
  4242. }
  4243. #u57876_text {
  4244. border-width:0px;
  4245. word-wrap:break-word;
  4246. text-transform:none;
  4247. visibility:hidden;
  4248. }
  4249. #u57877 {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:0px;
  4253. top:0px;
  4254. width:0px;
  4255. height:0px;
  4256. }
  4257. #u57878_div {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:0px;
  4261. top:0px;
  4262. width:30px;
  4263. height:30px;
  4264. background:inherit;
  4265. background-color:rgba(255, 255, 255, 1);
  4266. box-sizing:border-box;
  4267. border-width:1px;
  4268. border-style:solid;
  4269. border-color:rgba(121, 121, 121, 1);
  4270. border-radius:0px;
  4271. -moz-box-shadow:none;
  4272. -webkit-box-shadow:none;
  4273. box-shadow:none;
  4274. }
  4275. #u57878 {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:1699px;
  4279. top:174px;
  4280. width:30px;
  4281. height:30px;
  4282. display:flex;
  4283. }
  4284. #u57878 .text {
  4285. position:absolute;
  4286. align-self:center;
  4287. padding:2px 2px 2px 2px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u57878_text {
  4292. border-width:0px;
  4293. word-wrap:break-word;
  4294. text-transform:none;
  4295. visibility:hidden;
  4296. }
  4297. #u57879_img {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:19px;
  4303. height:18px;
  4304. }
  4305. #u57879 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:1705px;
  4309. top:180px;
  4310. width:19px;
  4311. height:18px;
  4312. display:flex;
  4313. }
  4314. #u57879 .text {
  4315. position:absolute;
  4316. align-self:center;
  4317. padding:2px 2px 2px 2px;
  4318. box-sizing:border-box;
  4319. width:100%;
  4320. }
  4321. #u57879_text {
  4322. border-width:0px;
  4323. word-wrap:break-word;
  4324. text-transform:none;
  4325. visibility:hidden;
  4326. }
  4327. #u57880 {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:0px;
  4331. top:0px;
  4332. width:0px;
  4333. height:0px;
  4334. }
  4335. #u57881_div {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:0px;
  4339. top:0px;
  4340. width:30px;
  4341. height:30px;
  4342. background:inherit;
  4343. background-color:rgba(255, 255, 255, 1);
  4344. box-sizing:border-box;
  4345. border-width:1px;
  4346. border-style:solid;
  4347. border-color:rgba(121, 121, 121, 1);
  4348. border-radius:0px;
  4349. -moz-box-shadow:none;
  4350. -webkit-box-shadow:none;
  4351. box-shadow:none;
  4352. }
  4353. #u57881 {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:1739px;
  4357. top:174px;
  4358. width:30px;
  4359. height:30px;
  4360. display:flex;
  4361. }
  4362. #u57881 .text {
  4363. position:absolute;
  4364. align-self:center;
  4365. padding:2px 2px 2px 2px;
  4366. box-sizing:border-box;
  4367. width:100%;
  4368. }
  4369. #u57881_text {
  4370. border-width:0px;
  4371. word-wrap:break-word;
  4372. text-transform:none;
  4373. visibility:hidden;
  4374. }
  4375. #u57882_img {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:19px;
  4381. height:18px;
  4382. }
  4383. #u57882 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:1745px;
  4387. top:180px;
  4388. width:19px;
  4389. height:18px;
  4390. display:flex;
  4391. -webkit-transform:rotate(300deg);
  4392. -moz-transform:rotate(300deg);
  4393. -ms-transform:rotate(300deg);
  4394. transform:rotate(300deg);
  4395. }
  4396. #u57882 .text {
  4397. position:absolute;
  4398. align-self:center;
  4399. padding:2px 2px 2px 2px;
  4400. box-sizing:border-box;
  4401. width:100%;
  4402. }
  4403. #u57882_text {
  4404. border-width:0px;
  4405. word-wrap:break-word;
  4406. text-transform:none;
  4407. visibility:hidden;
  4408. }
  4409. #u57883_div {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:30px;
  4415. height:30px;
  4416. background:inherit;
  4417. background-color:rgba(255, 255, 255, 1);
  4418. box-sizing:border-box;
  4419. border-width:1px;
  4420. border-style:solid;
  4421. border-color:rgba(121, 121, 121, 1);
  4422. border-radius:7px;
  4423. -moz-box-shadow:none;
  4424. -webkit-box-shadow:none;
  4425. box-shadow:none;
  4426. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4427. font-weight:700;
  4428. font-style:normal;
  4429. font-size:24px;
  4430. }
  4431. #u57883 {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:1779px;
  4435. top:94px;
  4436. width:30px;
  4437. height:30px;
  4438. display:flex;
  4439. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4440. font-weight:700;
  4441. font-style:normal;
  4442. font-size:24px;
  4443. }
  4444. #u57883 .text {
  4445. position:absolute;
  4446. align-self:center;
  4447. padding:2px 2px 2px 2px;
  4448. box-sizing:border-box;
  4449. width:100%;
  4450. }
  4451. #u57883_text {
  4452. border-width:0px;
  4453. word-wrap:break-word;
  4454. text-transform:none;
  4455. }
  4456. #u57884_div {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:0px;
  4460. top:0px;
  4461. width:30px;
  4462. height:30px;
  4463. background:inherit;
  4464. background-color:rgba(255, 255, 255, 1);
  4465. box-sizing:border-box;
  4466. border-width:1px;
  4467. border-style:solid;
  4468. border-color:rgba(121, 121, 121, 1);
  4469. border-radius:7px;
  4470. -moz-box-shadow:none;
  4471. -webkit-box-shadow:none;
  4472. box-shadow:none;
  4473. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4474. font-weight:700;
  4475. font-style:normal;
  4476. font-size:24px;
  4477. }
  4478. #u57884 {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:1779px;
  4482. top:134px;
  4483. width:30px;
  4484. height:30px;
  4485. display:flex;
  4486. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4487. font-weight:700;
  4488. font-style:normal;
  4489. font-size:24px;
  4490. }
  4491. #u57884 .text {
  4492. position:absolute;
  4493. align-self:center;
  4494. padding:2px 2px 2px 2px;
  4495. box-sizing:border-box;
  4496. width:100%;
  4497. }
  4498. #u57884_text {
  4499. border-width:0px;
  4500. word-wrap:break-word;
  4501. text-transform:none;
  4502. }
  4503. #u57885_div {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:0px;
  4507. top:0px;
  4508. width:30px;
  4509. height:30px;
  4510. background:inherit;
  4511. background-color:rgba(255, 255, 255, 1);
  4512. box-sizing:border-box;
  4513. border-width:1px;
  4514. border-style:solid;
  4515. border-color:rgba(121, 121, 121, 1);
  4516. border-radius:7px;
  4517. -moz-box-shadow:none;
  4518. -webkit-box-shadow:none;
  4519. box-shadow:none;
  4520. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4521. font-weight:700;
  4522. font-style:normal;
  4523. font-size:24px;
  4524. }
  4525. #u57885 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:1779px;
  4529. top:174px;
  4530. width:30px;
  4531. height:30px;
  4532. display:flex;
  4533. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4534. font-weight:700;
  4535. font-style:normal;
  4536. font-size:24px;
  4537. }
  4538. #u57885 .text {
  4539. position:absolute;
  4540. align-self:center;
  4541. padding:2px 2px 2px 2px;
  4542. box-sizing:border-box;
  4543. width:100%;
  4544. }
  4545. #u57885_text {
  4546. border-width:0px;
  4547. word-wrap:break-word;
  4548. text-transform:none;
  4549. }
  4550. #u57886 {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:0px;
  4556. height:0px;
  4557. }
  4558. #u57887_div {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:0px;
  4562. top:0px;
  4563. width:30px;
  4564. height:30px;
  4565. background:inherit;
  4566. background-color:rgba(255, 255, 255, 1);
  4567. box-sizing:border-box;
  4568. border-width:1px;
  4569. border-style:solid;
  4570. border-color:rgba(121, 121, 121, 1);
  4571. border-radius:0px;
  4572. -moz-box-shadow:none;
  4573. -webkit-box-shadow:none;
  4574. box-shadow:none;
  4575. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4576. font-weight:700;
  4577. font-style:normal;
  4578. font-size:18px;
  4579. }
  4580. #u57887 {
  4581. border-width:0px;
  4582. position:absolute;
  4583. left:1819px;
  4584. top:94px;
  4585. width:30px;
  4586. height:30px;
  4587. display:flex;
  4588. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4589. font-weight:700;
  4590. font-style:normal;
  4591. font-size:18px;
  4592. }
  4593. #u57887 .text {
  4594. position:absolute;
  4595. align-self:center;
  4596. padding:2px 2px 2px 2px;
  4597. box-sizing:border-box;
  4598. width:100%;
  4599. }
  4600. #u57887_text {
  4601. border-width:0px;
  4602. word-wrap:break-word;
  4603. text-transform:none;
  4604. visibility:hidden;
  4605. }
  4606. #u57888_img {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:0px;
  4610. top:0px;
  4611. width:14px;
  4612. height:14px;
  4613. }
  4614. #u57888 {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:1827px;
  4618. top:102px;
  4619. width:14px;
  4620. height:14px;
  4621. display:flex;
  4622. }
  4623. #u57888 .text {
  4624. position:absolute;
  4625. align-self:center;
  4626. padding:2px 2px 2px 2px;
  4627. box-sizing:border-box;
  4628. width:100%;
  4629. }
  4630. #u57888_text {
  4631. border-width:0px;
  4632. word-wrap:break-word;
  4633. text-transform:none;
  4634. visibility:hidden;
  4635. }
  4636. #u57889 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:0px;
  4642. height:0px;
  4643. }
  4644. #u57890_div {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:0px;
  4649. width:30px;
  4650. height:30px;
  4651. background:inherit;
  4652. background-color:rgba(255, 255, 255, 1);
  4653. box-sizing:border-box;
  4654. border-width:1px;
  4655. border-style:solid;
  4656. border-color:rgba(121, 121, 121, 1);
  4657. border-radius:0px;
  4658. -moz-box-shadow:none;
  4659. -webkit-box-shadow:none;
  4660. box-shadow:none;
  4661. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4662. font-weight:700;
  4663. font-style:normal;
  4664. font-size:18px;
  4665. }
  4666. #u57890 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:1819px;
  4670. top:134px;
  4671. width:30px;
  4672. height:30px;
  4673. display:flex;
  4674. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4675. font-weight:700;
  4676. font-style:normal;
  4677. font-size:18px;
  4678. }
  4679. #u57890 .text {
  4680. position:absolute;
  4681. align-self:center;
  4682. padding:2px 2px 2px 2px;
  4683. box-sizing:border-box;
  4684. width:100%;
  4685. }
  4686. #u57890_text {
  4687. border-width:0px;
  4688. word-wrap:break-word;
  4689. text-transform:none;
  4690. visibility:hidden;
  4691. }
  4692. #u57891_img {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:0px;
  4696. top:0px;
  4697. width:14px;
  4698. height:14px;
  4699. }
  4700. #u57891 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:1827px;
  4704. top:142px;
  4705. width:14px;
  4706. height:14px;
  4707. display:flex;
  4708. }
  4709. #u57891 .text {
  4710. position:absolute;
  4711. align-self:center;
  4712. padding:2px 2px 2px 2px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u57891_text {
  4717. border-width:0px;
  4718. word-wrap:break-word;
  4719. text-transform:none;
  4720. visibility:hidden;
  4721. }
  4722. #u57892 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:0px;
  4728. height:0px;
  4729. }
  4730. #u57893_div {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:30px;
  4736. height:30px;
  4737. background:inherit;
  4738. background-color:rgba(255, 255, 255, 1);
  4739. box-sizing:border-box;
  4740. border-width:1px;
  4741. border-style:solid;
  4742. border-color:rgba(121, 121, 121, 1);
  4743. border-radius:0px;
  4744. -moz-box-shadow:none;
  4745. -webkit-box-shadow:none;
  4746. box-shadow:none;
  4747. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4748. font-weight:700;
  4749. font-style:normal;
  4750. font-size:18px;
  4751. }
  4752. #u57893 {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:1819px;
  4756. top:174px;
  4757. width:30px;
  4758. height:30px;
  4759. display:flex;
  4760. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4761. font-weight:700;
  4762. font-style:normal;
  4763. font-size:18px;
  4764. }
  4765. #u57893 .text {
  4766. position:absolute;
  4767. align-self:center;
  4768. padding:2px 2px 2px 2px;
  4769. box-sizing:border-box;
  4770. width:100%;
  4771. }
  4772. #u57893_text {
  4773. border-width:0px;
  4774. word-wrap:break-word;
  4775. text-transform:none;
  4776. visibility:hidden;
  4777. }
  4778. #u57894_img {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:0px;
  4782. top:0px;
  4783. width:17px;
  4784. height:11px;
  4785. }
  4786. #u57894 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:1826px;
  4790. top:184px;
  4791. width:17px;
  4792. height:11px;
  4793. display:flex;
  4794. }
  4795. #u57894 .text {
  4796. position:absolute;
  4797. align-self:center;
  4798. padding:2px 2px 2px 2px;
  4799. box-sizing:border-box;
  4800. width:100%;
  4801. }
  4802. #u57894_text {
  4803. border-width:0px;
  4804. word-wrap:break-word;
  4805. text-transform:none;
  4806. visibility:hidden;
  4807. }
  4808. #u57895 {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:0px;
  4812. top:0px;
  4813. width:0px;
  4814. height:0px;
  4815. }
  4816. #u57896_div {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:0px;
  4820. top:0px;
  4821. width:84px;
  4822. height:21px;
  4823. background:inherit;
  4824. background-color:rgba(51, 51, 51, 1);
  4825. border:none;
  4826. border-radius:11px;
  4827. -moz-box-shadow:none;
  4828. -webkit-box-shadow:none;
  4829. box-shadow:none;
  4830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4831. font-weight:400;
  4832. font-style:normal;
  4833. font-size:12px;
  4834. color:#FFFFFF;
  4835. text-align:center;
  4836. }
  4837. #u57896 {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:1750px;
  4841. top:200px;
  4842. width:84px;
  4843. height:21px;
  4844. display:flex;
  4845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4846. font-weight:400;
  4847. font-style:normal;
  4848. font-size:12px;
  4849. color:#FFFFFF;
  4850. text-align:center;
  4851. }
  4852. #u57896 .text {
  4853. position:absolute;
  4854. align-self:center;
  4855. padding:2px 2px 2px 2px;
  4856. box-sizing:border-box;
  4857. width:100%;
  4858. }
  4859. #u57896_text {
  4860. border-width:0px;
  4861. white-space:nowrap;
  4862. text-transform:none;
  4863. }
  4864. #u57897_img {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:0px;
  4868. top:0px;
  4869. width:11px;
  4870. height:17px;
  4871. }
  4872. #u57897 {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:1802px;
  4876. top:231px;
  4877. width:11px;
  4878. height:17px;
  4879. display:flex;
  4880. }
  4881. #u57897 .text {
  4882. position:absolute;
  4883. align-self:center;
  4884. padding:2px 2px 2px 2px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u57897_text {
  4889. border-width:0px;
  4890. word-wrap:break-word;
  4891. text-transform:none;
  4892. visibility:hidden;
  4893. }
  4894. #u57898_div {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:191px;
  4900. height:6px;
  4901. background:inherit;
  4902. background-color:rgba(255, 255, 255, 1);
  4903. box-sizing:border-box;
  4904. border-width:1px;
  4905. border-style:solid;
  4906. border-color:rgba(228, 228, 228, 1);
  4907. border-radius:7px;
  4908. -moz-box-shadow:none;
  4909. -webkit-box-shadow:none;
  4910. box-shadow:none;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. font-size:12px;
  4915. color:#FFFFFF;
  4916. }
  4917. #u57898 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:1658px;
  4921. top:228px;
  4922. width:191px;
  4923. height:6px;
  4924. display:flex;
  4925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4926. font-weight:400;
  4927. font-style:normal;
  4928. font-size:12px;
  4929. color:#FFFFFF;
  4930. }
  4931. #u57898 .text {
  4932. position:absolute;
  4933. align-self:center;
  4934. padding:8px 15px 8px 15px;
  4935. box-sizing:border-box;
  4936. width:100%;
  4937. }
  4938. #u57898_text {
  4939. border-width:0px;
  4940. word-wrap:break-word;
  4941. text-transform:none;
  4942. visibility:hidden;
  4943. }
  4944. #u57899_div {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:140px;
  4950. height:6px;
  4951. background:inherit;
  4952. background-color:rgba(51, 153, 255, 1);
  4953. box-sizing:border-box;
  4954. border-width:1px;
  4955. border-style:solid;
  4956. border-color:rgba(228, 228, 228, 1);
  4957. border-radius:7px;
  4958. -moz-box-shadow:none;
  4959. -webkit-box-shadow:none;
  4960. box-shadow:none;
  4961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:12px;
  4965. color:#FFFFFF;
  4966. }
  4967. #u57899 {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:1658px;
  4971. top:228px;
  4972. width:140px;
  4973. height:6px;
  4974. display:flex;
  4975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4976. font-weight:400;
  4977. font-style:normal;
  4978. font-size:12px;
  4979. color:#FFFFFF;
  4980. }
  4981. #u57899 .text {
  4982. position:absolute;
  4983. align-self:center;
  4984. padding:8px 15px 8px 15px;
  4985. box-sizing:border-box;
  4986. width:100%;
  4987. }
  4988. #u57899_text {
  4989. border-width:0px;
  4990. word-wrap:break-word;
  4991. text-transform:none;
  4992. visibility:hidden;
  4993. }
  4994. #u57900_img {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:-3px;
  4998. top:-3px;
  4999. width:20px;
  5000. height:20px;
  5001. }
  5002. #u57900 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:1787px;
  5006. top:224px;
  5007. width:14px;
  5008. height:14px;
  5009. display:flex;
  5010. }
  5011. #u57900 .text {
  5012. position:absolute;
  5013. align-self:center;
  5014. padding:2px 2px 2px 2px;
  5015. box-sizing:border-box;
  5016. width:100%;
  5017. }
  5018. #u57900_text {
  5019. border-width:0px;
  5020. word-wrap:break-word;
  5021. text-transform:none;
  5022. visibility:hidden;
  5023. }
  5024. #u57901 {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:1665px;
  5028. top:370px;
  5029. width:127px;
  5030. height:240px;
  5031. }
  5032. #u57901_children {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:0px;
  5038. height:0px;
  5039. }
  5040. #u57902 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:0px;
  5044. top:0px;
  5045. width:80px;
  5046. height:20px;
  5047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. }
  5051. #u57903_img {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:0px;
  5055. top:0px;
  5056. width:9px;
  5057. height:9px;
  5058. }
  5059. #u57903 {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:6px;
  5063. top:6px;
  5064. width:9px;
  5065. height:9px;
  5066. display:flex;
  5067. }
  5068. #u57903 .text {
  5069. position:absolute;
  5070. align-self:center;
  5071. padding:2px 2px 2px 2px;
  5072. box-sizing:border-box;
  5073. width:100%;
  5074. }
  5075. #u57903_img.selected {
  5076. }
  5077. #u57903.selected {
  5078. }
  5079. #u57903_text {
  5080. border-width:0px;
  5081. word-wrap:break-word;
  5082. text-transform:none;
  5083. visibility:hidden;
  5084. }
  5085. #u57904_div {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:58px;
  5091. height:20px;
  5092. background:inherit;
  5093. background-color:rgba(255, 255, 255, 0);
  5094. border:none;
  5095. border-radius:0px;
  5096. -moz-box-shadow:none;
  5097. -webkit-box-shadow:none;
  5098. box-shadow:none;
  5099. }
  5100. #u57904 {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:22px;
  5104. top:0px;
  5105. width:58px;
  5106. height:20px;
  5107. display:flex;
  5108. }
  5109. #u57904 .text {
  5110. position:absolute;
  5111. align-self:center;
  5112. padding:2px 2px 2px 3px;
  5113. box-sizing:border-box;
  5114. width:100%;
  5115. }
  5116. #u57904_text {
  5117. border-width:0px;
  5118. white-space:nowrap;
  5119. text-transform:none;
  5120. }
  5121. #u57902_children {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:0px;
  5125. top:0px;
  5126. width:0px;
  5127. height:0px;
  5128. }
  5129. #u57905 {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:20px;
  5133. top:20px;
  5134. width:87px;
  5135. height:20px;
  5136. }
  5137. #u57906_img {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:9px;
  5143. height:9px;
  5144. }
  5145. #u57906 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:6px;
  5149. top:6px;
  5150. width:9px;
  5151. height:9px;
  5152. display:flex;
  5153. }
  5154. #u57906 .text {
  5155. position:absolute;
  5156. align-self:center;
  5157. padding:2px 2px 2px 2px;
  5158. box-sizing:border-box;
  5159. width:100%;
  5160. }
  5161. #u57906_img.selected {
  5162. }
  5163. #u57906.selected {
  5164. }
  5165. #u57906_text {
  5166. border-width:0px;
  5167. word-wrap:break-word;
  5168. text-transform:none;
  5169. visibility:hidden;
  5170. }
  5171. #u57907_div {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:65px;
  5177. height:20px;
  5178. background:inherit;
  5179. background-color:rgba(255, 255, 255, 0);
  5180. border:none;
  5181. border-radius:0px;
  5182. -moz-box-shadow:none;
  5183. -webkit-box-shadow:none;
  5184. box-shadow:none;
  5185. }
  5186. #u57907 {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:22px;
  5190. top:0px;
  5191. width:65px;
  5192. height:20px;
  5193. display:flex;
  5194. }
  5195. #u57907 .text {
  5196. position:absolute;
  5197. align-self:center;
  5198. padding:2px 2px 2px 3px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u57907_text {
  5203. border-width:0px;
  5204. white-space:nowrap;
  5205. text-transform:none;
  5206. }
  5207. #u57905_children {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:0px;
  5213. height:0px;
  5214. }
  5215. #u57908 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:20px;
  5219. top:20px;
  5220. width:87px;
  5221. height:20px;
  5222. }
  5223. #u57909_div {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:0px;
  5227. top:0px;
  5228. width:65px;
  5229. height:20px;
  5230. background:inherit;
  5231. background-color:rgba(255, 255, 255, 0);
  5232. border:none;
  5233. border-radius:0px;
  5234. -moz-box-shadow:none;
  5235. -webkit-box-shadow:none;
  5236. box-shadow:none;
  5237. }
  5238. #u57909 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:22px;
  5242. top:0px;
  5243. width:65px;
  5244. height:20px;
  5245. display:flex;
  5246. }
  5247. #u57909 .text {
  5248. position:absolute;
  5249. align-self:center;
  5250. padding:2px 2px 2px 3px;
  5251. box-sizing:border-box;
  5252. width:100%;
  5253. }
  5254. #u57909_text {
  5255. border-width:0px;
  5256. white-space:nowrap;
  5257. text-transform:none;
  5258. }
  5259. #u57910 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:20px;
  5263. top:40px;
  5264. width:87px;
  5265. height:20px;
  5266. }
  5267. #u57911_div {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:65px;
  5273. height:20px;
  5274. background:inherit;
  5275. background-color:rgba(255, 255, 255, 0);
  5276. border:none;
  5277. border-radius:0px;
  5278. -moz-box-shadow:none;
  5279. -webkit-box-shadow:none;
  5280. box-shadow:none;
  5281. }
  5282. #u57911 {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:22px;
  5286. top:0px;
  5287. width:65px;
  5288. height:20px;
  5289. display:flex;
  5290. }
  5291. #u57911 .text {
  5292. position:absolute;
  5293. align-self:center;
  5294. padding:2px 2px 2px 3px;
  5295. box-sizing:border-box;
  5296. width:100%;
  5297. }
  5298. #u57911_text {
  5299. border-width:0px;
  5300. white-space:nowrap;
  5301. text-transform:none;
  5302. }
  5303. #u57912 {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:20px;
  5307. top:60px;
  5308. width:54px;
  5309. height:20px;
  5310. }
  5311. #u57913_div {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:0px;
  5315. top:0px;
  5316. width:32px;
  5317. height:20px;
  5318. background:inherit;
  5319. background-color:rgba(255, 255, 255, 0);
  5320. border:none;
  5321. border-radius:0px;
  5322. -moz-box-shadow:none;
  5323. -webkit-box-shadow:none;
  5324. box-shadow:none;
  5325. }
  5326. #u57913 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:22px;
  5330. top:0px;
  5331. width:32px;
  5332. height:20px;
  5333. display:flex;
  5334. }
  5335. #u57913 .text {
  5336. position:absolute;
  5337. align-self:center;
  5338. padding:2px 2px 2px 3px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u57913_text {
  5343. border-width:0px;
  5344. white-space:nowrap;
  5345. text-transform:none;
  5346. }
  5347. #u57914 {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:20px;
  5351. top:100px;
  5352. width:87px;
  5353. height:20px;
  5354. }
  5355. #u57915_img {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:9px;
  5361. height:9px;
  5362. }
  5363. #u57915 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:6px;
  5367. top:6px;
  5368. width:9px;
  5369. height:9px;
  5370. display:flex;
  5371. }
  5372. #u57915 .text {
  5373. position:absolute;
  5374. align-self:center;
  5375. padding:2px 2px 2px 2px;
  5376. box-sizing:border-box;
  5377. width:100%;
  5378. }
  5379. #u57915_img.selected {
  5380. }
  5381. #u57915.selected {
  5382. }
  5383. #u57915_text {
  5384. border-width:0px;
  5385. word-wrap:break-word;
  5386. text-transform:none;
  5387. visibility:hidden;
  5388. }
  5389. #u57916_div {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:0px;
  5393. top:0px;
  5394. width:65px;
  5395. height:20px;
  5396. background:inherit;
  5397. background-color:rgba(255, 255, 255, 0);
  5398. border:none;
  5399. border-radius:0px;
  5400. -moz-box-shadow:none;
  5401. -webkit-box-shadow:none;
  5402. box-shadow:none;
  5403. }
  5404. #u57916 {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:22px;
  5408. top:0px;
  5409. width:65px;
  5410. height:20px;
  5411. display:flex;
  5412. }
  5413. #u57916 .text {
  5414. position:absolute;
  5415. align-self:center;
  5416. padding:2px 2px 2px 3px;
  5417. box-sizing:border-box;
  5418. width:100%;
  5419. }
  5420. #u57916_text {
  5421. border-width:0px;
  5422. white-space:nowrap;
  5423. text-transform:none;
  5424. }
  5425. #u57914_children {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:0px;
  5431. height:0px;
  5432. }
  5433. #u57917 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:20px;
  5437. top:20px;
  5438. width:87px;
  5439. height:20px;
  5440. }
  5441. #u57918_div {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:65px;
  5447. height:20px;
  5448. background:inherit;
  5449. background-color:rgba(255, 255, 255, 0);
  5450. border:none;
  5451. border-radius:0px;
  5452. -moz-box-shadow:none;
  5453. -webkit-box-shadow:none;
  5454. box-shadow:none;
  5455. }
  5456. #u57918 {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:22px;
  5460. top:0px;
  5461. width:65px;
  5462. height:20px;
  5463. display:flex;
  5464. }
  5465. #u57918 .text {
  5466. position:absolute;
  5467. align-self:center;
  5468. padding:2px 2px 2px 3px;
  5469. box-sizing:border-box;
  5470. width:100%;
  5471. }
  5472. #u57918_text {
  5473. border-width:0px;
  5474. white-space:nowrap;
  5475. text-transform:none;
  5476. }
  5477. #u57919 {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:20px;
  5481. top:40px;
  5482. width:87px;
  5483. height:20px;
  5484. }
  5485. #u57920_div {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:0px;
  5489. top:0px;
  5490. width:65px;
  5491. height:20px;
  5492. background:inherit;
  5493. background-color:rgba(255, 255, 255, 0);
  5494. border:none;
  5495. border-radius:0px;
  5496. -moz-box-shadow:none;
  5497. -webkit-box-shadow:none;
  5498. box-shadow:none;
  5499. }
  5500. #u57920 {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:22px;
  5504. top:0px;
  5505. width:65px;
  5506. height:20px;
  5507. display:flex;
  5508. }
  5509. #u57920 .text {
  5510. position:absolute;
  5511. align-self:center;
  5512. padding:2px 2px 2px 3px;
  5513. box-sizing:border-box;
  5514. width:100%;
  5515. }
  5516. #u57920_text {
  5517. border-width:0px;
  5518. white-space:nowrap;
  5519. text-transform:none;
  5520. }
  5521. #u57921 {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:20px;
  5525. top:60px;
  5526. width:54px;
  5527. height:20px;
  5528. }
  5529. #u57922_div {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:0px;
  5533. top:0px;
  5534. width:32px;
  5535. height:20px;
  5536. background:inherit;
  5537. background-color:rgba(255, 255, 255, 0);
  5538. border:none;
  5539. border-radius:0px;
  5540. -moz-box-shadow:none;
  5541. -webkit-box-shadow:none;
  5542. box-shadow:none;
  5543. }
  5544. #u57922 {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:22px;
  5548. top:0px;
  5549. width:32px;
  5550. height:20px;
  5551. display:flex;
  5552. }
  5553. #u57922 .text {
  5554. position:absolute;
  5555. align-self:center;
  5556. padding:2px 2px 2px 3px;
  5557. box-sizing:border-box;
  5558. width:100%;
  5559. }
  5560. #u57922_text {
  5561. border-width:0px;
  5562. white-space:nowrap;
  5563. text-transform:none;
  5564. }
  5565. #u57923 {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:20px;
  5569. top:180px;
  5570. width:87px;
  5571. height:20px;
  5572. }
  5573. #u57924_img {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:9px;
  5579. height:9px;
  5580. }
  5581. #u57924 {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:6px;
  5585. top:6px;
  5586. width:9px;
  5587. height:9px;
  5588. display:flex;
  5589. }
  5590. #u57924 .text {
  5591. position:absolute;
  5592. align-self:center;
  5593. padding:2px 2px 2px 2px;
  5594. box-sizing:border-box;
  5595. width:100%;
  5596. }
  5597. #u57924_img.selected {
  5598. }
  5599. #u57924.selected {
  5600. }
  5601. #u57924_text {
  5602. border-width:0px;
  5603. word-wrap:break-word;
  5604. text-transform:none;
  5605. visibility:hidden;
  5606. }
  5607. #u57925_div {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:65px;
  5613. height:20px;
  5614. background:inherit;
  5615. background-color:rgba(255, 255, 255, 0);
  5616. border:none;
  5617. border-radius:0px;
  5618. -moz-box-shadow:none;
  5619. -webkit-box-shadow:none;
  5620. box-shadow:none;
  5621. }
  5622. #u57925 {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:22px;
  5626. top:0px;
  5627. width:65px;
  5628. height:20px;
  5629. display:flex;
  5630. }
  5631. #u57925 .text {
  5632. position:absolute;
  5633. align-self:center;
  5634. padding:2px 2px 2px 3px;
  5635. box-sizing:border-box;
  5636. width:100%;
  5637. }
  5638. #u57925_text {
  5639. border-width:0px;
  5640. white-space:nowrap;
  5641. text-transform:none;
  5642. }
  5643. #u57923_children {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:0px;
  5647. top:0px;
  5648. width:0px;
  5649. height:0px;
  5650. }
  5651. #u57926 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:20px;
  5655. top:20px;
  5656. width:87px;
  5657. height:20px;
  5658. }
  5659. #u57927_div {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:0px;
  5663. top:0px;
  5664. width:65px;
  5665. height:20px;
  5666. background:inherit;
  5667. background-color:rgba(255, 255, 255, 0);
  5668. border:none;
  5669. border-radius:0px;
  5670. -moz-box-shadow:none;
  5671. -webkit-box-shadow:none;
  5672. box-shadow:none;
  5673. }
  5674. #u57927 {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:22px;
  5678. top:0px;
  5679. width:65px;
  5680. height:20px;
  5681. display:flex;
  5682. }
  5683. #u57927 .text {
  5684. position:absolute;
  5685. align-self:center;
  5686. padding:2px 2px 2px 3px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u57927_text {
  5691. border-width:0px;
  5692. white-space:nowrap;
  5693. text-transform:none;
  5694. }
  5695. #u57928 {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:20px;
  5699. top:40px;
  5700. width:54px;
  5701. height:20px;
  5702. }
  5703. #u57929_div {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:32px;
  5709. height:20px;
  5710. background:inherit;
  5711. background-color:rgba(255, 255, 255, 0);
  5712. border:none;
  5713. border-radius:0px;
  5714. -moz-box-shadow:none;
  5715. -webkit-box-shadow:none;
  5716. box-shadow:none;
  5717. }
  5718. #u57929 {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:22px;
  5722. top:0px;
  5723. width:32px;
  5724. height:20px;
  5725. display:flex;
  5726. }
  5727. #u57929 .text {
  5728. position:absolute;
  5729. align-self:center;
  5730. padding:2px 2px 2px 3px;
  5731. box-sizing:border-box;
  5732. width:100%;
  5733. }
  5734. #u57929_text {
  5735. border-width:0px;
  5736. white-space:nowrap;
  5737. text-transform:none;
  5738. }
  5739. #u57930 {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:0px;
  5743. top:0px;
  5744. width:0px;
  5745. height:0px;
  5746. }
  5747. #u57931_div {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:0px;
  5751. top:0px;
  5752. width:175px;
  5753. height:30px;
  5754. background:inherit;
  5755. background-color:rgba(255, 255, 255, 1);
  5756. box-sizing:border-box;
  5757. border-width:1px;
  5758. border-style:solid;
  5759. border-color:rgba(201, 201, 201, 1);
  5760. border-radius:4px;
  5761. -moz-box-shadow:none;
  5762. -webkit-box-shadow:none;
  5763. box-shadow:none;
  5764. font-family:'Microsoft YaHei', sans-serif;
  5765. font-weight:400;
  5766. font-style:normal;
  5767. font-size:14px;
  5768. color:#CCCCCC;
  5769. text-align:left;
  5770. }
  5771. #u57931 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:1666px;
  5775. top:293px;
  5776. width:175px;
  5777. height:30px;
  5778. display:flex;
  5779. font-family:'Microsoft YaHei', sans-serif;
  5780. font-weight:400;
  5781. font-style:normal;
  5782. font-size:14px;
  5783. color:#CCCCCC;
  5784. text-align:left;
  5785. }
  5786. #u57931 .text {
  5787. position:absolute;
  5788. align-self:center;
  5789. padding:2px 8px 2px 8px;
  5790. box-sizing:border-box;
  5791. width:100%;
  5792. }
  5793. #u57931_text {
  5794. border-width:0px;
  5795. word-wrap:break-word;
  5796. text-transform:none;
  5797. visibility:hidden;
  5798. }
  5799. #u57932_input {
  5800. position:absolute;
  5801. left:0px;
  5802. top:0px;
  5803. width:159px;
  5804. height:25px;
  5805. padding:2px 2px 2px 2px;
  5806. font-family:'Microsoft YaHei', sans-serif;
  5807. font-weight:400;
  5808. font-style:normal;
  5809. font-size:10px;
  5810. letter-spacing:normal;
  5811. color:#000000;
  5812. vertical-align:none;
  5813. text-align:left;
  5814. text-transform:none;
  5815. background-color:transparent;
  5816. border-color:transparent;
  5817. }
  5818. #u57932_input.disabled {
  5819. position:absolute;
  5820. left:0px;
  5821. top:0px;
  5822. width:159px;
  5823. height:25px;
  5824. padding:2px 2px 2px 2px;
  5825. font-family:'Microsoft YaHei', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:10px;
  5829. letter-spacing:normal;
  5830. color:#000000;
  5831. vertical-align:none;
  5832. text-align:left;
  5833. text-transform:none;
  5834. background-color:transparent;
  5835. border-color:transparent;
  5836. }
  5837. #u57932_div {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:159px;
  5843. height:25px;
  5844. background:inherit;
  5845. background-color:rgba(255, 255, 255, 1);
  5846. border:none;
  5847. border-radius:0px;
  5848. -moz-box-shadow:none;
  5849. -webkit-box-shadow:none;
  5850. box-shadow:none;
  5851. font-family:'Microsoft YaHei', sans-serif;
  5852. font-weight:400;
  5853. font-style:normal;
  5854. font-size:10px;
  5855. }
  5856. #u57932 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:1676px;
  5860. top:294px;
  5861. width:159px;
  5862. height:25px;
  5863. display:flex;
  5864. font-family:'Microsoft YaHei', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:10px;
  5868. }
  5869. #u57932 .text {
  5870. position:absolute;
  5871. align-self:center;
  5872. padding:2px 2px 2px 2px;
  5873. box-sizing:border-box;
  5874. width:100%;
  5875. }
  5876. #u57932_div.disabled {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:159px;
  5882. height:25px;
  5883. background:inherit;
  5884. background-color:rgba(240, 240, 240, 1);
  5885. border:none;
  5886. border-radius:0px;
  5887. -moz-box-shadow:none;
  5888. -webkit-box-shadow:none;
  5889. box-shadow:none;
  5890. font-family:'Microsoft YaHei', sans-serif;
  5891. font-weight:400;
  5892. font-style:normal;
  5893. font-size:10px;
  5894. }
  5895. #u57932.disabled {
  5896. }
  5897. #u57933_div {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:25px;
  5903. height:30px;
  5904. background:inherit;
  5905. background-color:rgba(255, 255, 255, 0);
  5906. border:none;
  5907. border-radius:0px;
  5908. -moz-box-shadow:none;
  5909. -webkit-box-shadow:none;
  5910. box-shadow:none;
  5911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5912. font-weight:400;
  5913. font-style:normal;
  5914. font-size:12px;
  5915. color:#3399FF;
  5916. line-height:30px;
  5917. }
  5918. #u57933 {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:1666px;
  5922. top:332px;
  5923. width:25px;
  5924. height:30px;
  5925. display:flex;
  5926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5927. font-weight:400;
  5928. font-style:normal;
  5929. font-size:12px;
  5930. color:#3399FF;
  5931. line-height:30px;
  5932. }
  5933. #u57933 .text {
  5934. position:absolute;
  5935. align-self:flex-start;
  5936. padding:0px 0px 0px 0px;
  5937. box-sizing:border-box;
  5938. width:100%;
  5939. }
  5940. #u57933_text {
  5941. border-width:0px;
  5942. white-space:nowrap;
  5943. text-transform:none;
  5944. }
  5945. #u57934_div {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:0px;
  5949. top:0px;
  5950. width:25px;
  5951. height:30px;
  5952. background:inherit;
  5953. background-color:rgba(255, 255, 255, 0);
  5954. border:none;
  5955. border-radius:0px;
  5956. -moz-box-shadow:none;
  5957. -webkit-box-shadow:none;
  5958. box-shadow:none;
  5959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5960. font-weight:400;
  5961. font-style:normal;
  5962. font-size:12px;
  5963. color:#7F7F7F;
  5964. line-height:30px;
  5965. }
  5966. #u57934 {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:1703px;
  5970. top:332px;
  5971. width:25px;
  5972. height:30px;
  5973. display:flex;
  5974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. font-size:12px;
  5978. color:#7F7F7F;
  5979. line-height:30px;
  5980. }
  5981. #u57934 .text {
  5982. position:absolute;
  5983. align-self:flex-start;
  5984. padding:0px 0px 0px 0px;
  5985. box-sizing:border-box;
  5986. width:100%;
  5987. }
  5988. #u57934_text {
  5989. border-width:0px;
  5990. white-space:nowrap;
  5991. text-transform:none;
  5992. }
  5993. #u57935_div {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:0px;
  5997. top:0px;
  5998. width:25px;
  5999. height:30px;
  6000. background:inherit;
  6001. background-color:rgba(255, 255, 255, 0);
  6002. border:none;
  6003. border-radius:0px;
  6004. -moz-box-shadow:none;
  6005. -webkit-box-shadow:none;
  6006. box-shadow:none;
  6007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6008. font-weight:400;
  6009. font-style:normal;
  6010. font-size:12px;
  6011. color:#7F7F7F;
  6012. line-height:30px;
  6013. }
  6014. #u57935 {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:1739px;
  6018. top:332px;
  6019. width:25px;
  6020. height:30px;
  6021. display:flex;
  6022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6023. font-weight:400;
  6024. font-style:normal;
  6025. font-size:12px;
  6026. color:#7F7F7F;
  6027. line-height:30px;
  6028. }
  6029. #u57935 .text {
  6030. position:absolute;
  6031. align-self:flex-start;
  6032. padding:0px 0px 0px 0px;
  6033. box-sizing:border-box;
  6034. width:100%;
  6035. }
  6036. #u57935_text {
  6037. border-width:0px;
  6038. white-space:nowrap;
  6039. text-transform:none;
  6040. }
  6041. #u57936_div {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:25px;
  6047. height:30px;
  6048. background:inherit;
  6049. background-color:rgba(255, 255, 255, 0);
  6050. border:none;
  6051. border-radius:0px;
  6052. -moz-box-shadow:none;
  6053. -webkit-box-shadow:none;
  6054. box-shadow:none;
  6055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6056. font-weight:400;
  6057. font-style:normal;
  6058. font-size:12px;
  6059. color:#7F7F7F;
  6060. line-height:30px;
  6061. }
  6062. #u57936 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:1776px;
  6066. top:332px;
  6067. width:25px;
  6068. height:30px;
  6069. display:flex;
  6070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. font-size:12px;
  6074. color:#7F7F7F;
  6075. line-height:30px;
  6076. }
  6077. #u57936 .text {
  6078. position:absolute;
  6079. align-self:flex-start;
  6080. padding:0px 0px 0px 0px;
  6081. box-sizing:border-box;
  6082. width:100%;
  6083. }
  6084. #u57936_text {
  6085. border-width:0px;
  6086. white-space:nowrap;
  6087. text-transform:none;
  6088. }
  6089. #u57937_img {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:0px;
  6093. top:0px;
  6094. width:41px;
  6095. height:41px;
  6096. }
  6097. #u57937 {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:452px;
  6101. top:497px;
  6102. width:41px;
  6103. height:41px;
  6104. display:flex;
  6105. }
  6106. #u57937 .text {
  6107. position:absolute;
  6108. align-self:center;
  6109. padding:2px 2px 2px 2px;
  6110. box-sizing:border-box;
  6111. width:100%;
  6112. }
  6113. #u57937_text {
  6114. border-width:0px;
  6115. word-wrap:break-word;
  6116. text-transform:none;
  6117. visibility:hidden;
  6118. }
  6119. #u57938 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:0px;
  6125. height:0px;
  6126. }
  6127. #u57939_div {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:129px;
  6133. height:30px;
  6134. background:inherit;
  6135. background-color:rgba(127, 127, 127, 1);
  6136. border:none;
  6137. border-radius:4px;
  6138. -moz-box-shadow:none;
  6139. -webkit-box-shadow:none;
  6140. box-shadow:none;
  6141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6142. font-weight:400;
  6143. font-style:normal;
  6144. color:#FFFFFF;
  6145. text-align:right;
  6146. }
  6147. #u57939 {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:479px;
  6151. top:472px;
  6152. width:129px;
  6153. height:30px;
  6154. display:flex;
  6155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6156. font-weight:400;
  6157. font-style:normal;
  6158. color:#FFFFFF;
  6159. text-align:right;
  6160. }
  6161. #u57939 .text {
  6162. position:absolute;
  6163. align-self:center;
  6164. padding:0px 10px 0px 0px;
  6165. box-sizing:border-box;
  6166. width:100%;
  6167. }
  6168. #u57939_text {
  6169. border-width:0px;
  6170. word-wrap:break-word;
  6171. text-transform:none;
  6172. }
  6173. #u57940_div {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:0px;
  6177. top:0px;
  6178. width:44px;
  6179. height:30px;
  6180. background:inherit;
  6181. background-color:rgba(112, 182, 3, 1);
  6182. border:none;
  6183. border-right:0px;
  6184. border-radius:4px;
  6185. border-top-right-radius:0px;
  6186. border-bottom-right-radius:0px;
  6187. -moz-box-shadow:none;
  6188. -webkit-box-shadow:none;
  6189. box-shadow:none;
  6190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6191. font-weight:400;
  6192. font-style:normal;
  6193. color:#FFFFFF;
  6194. }
  6195. #u57940 {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:479px;
  6199. top:472px;
  6200. width:44px;
  6201. height:30px;
  6202. display:flex;
  6203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6204. font-weight:400;
  6205. font-style:normal;
  6206. color:#FFFFFF;
  6207. }
  6208. #u57940 .text {
  6209. position:absolute;
  6210. align-self:center;
  6211. padding:0px 0px 0px 10px;
  6212. box-sizing:border-box;
  6213. width:100%;
  6214. }
  6215. #u57940_text {
  6216. border-width:0px;
  6217. word-wrap:break-word;
  6218. text-transform:none;
  6219. }
  6220. #u57941_img {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:0px;
  6224. top:0px;
  6225. width:41px;
  6226. height:41px;
  6227. }
  6228. #u57941 {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:1056px;
  6232. top:284px;
  6233. width:41px;
  6234. height:41px;
  6235. display:flex;
  6236. }
  6237. #u57941 .text {
  6238. position:absolute;
  6239. align-self:center;
  6240. padding:2px 2px 2px 2px;
  6241. box-sizing:border-box;
  6242. width:100%;
  6243. }
  6244. #u57941_text {
  6245. border-width:0px;
  6246. word-wrap:break-word;
  6247. text-transform:none;
  6248. visibility:hidden;
  6249. }
  6250. #u57942 {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:0px;
  6254. top:0px;
  6255. width:0px;
  6256. height:0px;
  6257. }
  6258. #u57943_div {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:0px;
  6262. top:0px;
  6263. width:129px;
  6264. height:30px;
  6265. background:inherit;
  6266. background-color:rgba(127, 127, 127, 1);
  6267. border:none;
  6268. border-radius:4px;
  6269. -moz-box-shadow:none;
  6270. -webkit-box-shadow:none;
  6271. box-shadow:none;
  6272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6273. font-weight:400;
  6274. font-style:normal;
  6275. color:#FFFFFF;
  6276. text-align:right;
  6277. }
  6278. #u57943 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:1083px;
  6282. top:259px;
  6283. width:129px;
  6284. height:30px;
  6285. display:flex;
  6286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6287. font-weight:400;
  6288. font-style:normal;
  6289. color:#FFFFFF;
  6290. text-align:right;
  6291. }
  6292. #u57943 .text {
  6293. position:absolute;
  6294. align-self:center;
  6295. padding:0px 10px 0px 0px;
  6296. box-sizing:border-box;
  6297. width:100%;
  6298. }
  6299. #u57943_text {
  6300. border-width:0px;
  6301. word-wrap:break-word;
  6302. text-transform:none;
  6303. }
  6304. #u57944_div {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:0px;
  6308. top:0px;
  6309. width:44px;
  6310. height:30px;
  6311. background:inherit;
  6312. background-color:rgba(217, 0, 27, 1);
  6313. border:none;
  6314. border-right:0px;
  6315. border-radius:4px;
  6316. border-top-right-radius:0px;
  6317. border-bottom-right-radius:0px;
  6318. -moz-box-shadow:none;
  6319. -webkit-box-shadow:none;
  6320. box-shadow:none;
  6321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6322. font-weight:400;
  6323. font-style:normal;
  6324. color:#FFFFFF;
  6325. }
  6326. #u57944 {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:1083px;
  6330. top:259px;
  6331. width:44px;
  6332. height:30px;
  6333. display:flex;
  6334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6335. font-weight:400;
  6336. font-style:normal;
  6337. color:#FFFFFF;
  6338. }
  6339. #u57944 .text {
  6340. position:absolute;
  6341. align-self:center;
  6342. padding:0px 0px 0px 10px;
  6343. box-sizing:border-box;
  6344. width:100%;
  6345. }
  6346. #u57944_text {
  6347. border-width:0px;
  6348. word-wrap:break-word;
  6349. text-transform:none;
  6350. }
  6351. #u57945_div {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:0px;
  6355. top:0px;
  6356. width:674px;
  6357. height:240px;
  6358. background:inherit;
  6359. background-color:rgba(255, 255, 255, 0);
  6360. border:none;
  6361. border-left:0px;
  6362. border-top:0px;
  6363. border-right:0px;
  6364. border-radius:0px;
  6365. border-bottom-right-radius:0px;
  6366. border-bottom-left-radius:0px;
  6367. -moz-box-shadow:none;
  6368. -webkit-box-shadow:none;
  6369. box-shadow:none;
  6370. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6371. font-weight:500;
  6372. font-style:normal;
  6373. font-size:18px;
  6374. color:#D9001B;
  6375. line-height:40px;
  6376. }
  6377. #u57945 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:423px;
  6381. top:622px;
  6382. width:674px;
  6383. height:240px;
  6384. display:flex;
  6385. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6386. font-weight:500;
  6387. font-style:normal;
  6388. font-size:18px;
  6389. color:#D9001B;
  6390. line-height:40px;
  6391. }
  6392. #u57945 .text {
  6393. position:absolute;
  6394. align-self:center;
  6395. padding:0px 0px 0px 0px;
  6396. box-sizing:border-box;
  6397. width:100%;
  6398. }
  6399. #u57945_text {
  6400. border-width:0px;
  6401. white-space:nowrap;
  6402. text-transform:none;
  6403. }
  6404. #u57946_div {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:0px;
  6408. top:0px;
  6409. width:80px;
  6410. height:30px;
  6411. background:inherit;
  6412. background-color:rgba(242, 242, 242, 1);
  6413. border:none;
  6414. border-radius:4px;
  6415. -moz-box-shadow:none;
  6416. -webkit-box-shadow:none;
  6417. box-shadow:none;
  6418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. text-align:center;
  6422. }
  6423. #u57946 {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:1499px;
  6427. top:61px;
  6428. width:80px;
  6429. height:30px;
  6430. display:flex;
  6431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6432. font-weight:400;
  6433. font-style:normal;
  6434. text-align:center;
  6435. }
  6436. #u57946 .text {
  6437. position:absolute;
  6438. align-self:center;
  6439. padding:0px 0px 0px 0px;
  6440. box-sizing:border-box;
  6441. width:100%;
  6442. }
  6443. #u57946_text {
  6444. border-width:0px;
  6445. word-wrap:break-word;
  6446. text-transform:none;
  6447. }
  6448. #u57947_div {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:0px;
  6452. top:0px;
  6453. width:80px;
  6454. height:30px;
  6455. background:inherit;
  6456. background-color:rgba(51, 153, 255, 1);
  6457. border:none;
  6458. border-right:0px;
  6459. border-radius:4px;
  6460. border-top-right-radius:0px;
  6461. border-bottom-right-radius:0px;
  6462. -moz-box-shadow:none;
  6463. -webkit-box-shadow:none;
  6464. box-shadow:none;
  6465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. color:#FFFFFF;
  6469. text-align:center;
  6470. }
  6471. #u57947 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:1419px;
  6475. top:61px;
  6476. width:80px;
  6477. height:30px;
  6478. display:flex;
  6479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6480. font-weight:400;
  6481. font-style:normal;
  6482. color:#FFFFFF;
  6483. text-align:center;
  6484. }
  6485. #u57947 .text {
  6486. position:absolute;
  6487. align-self:center;
  6488. padding:0px 0px 0px 0px;
  6489. box-sizing:border-box;
  6490. width:100%;
  6491. }
  6492. #u57947_text {
  6493. border-width:0px;
  6494. word-wrap:break-word;
  6495. text-transform:none;
  6496. }
  6497. #u57948_img {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:0px;
  6501. top:0px;
  6502. width:41px;
  6503. height:41px;
  6504. }
  6505. #u57948 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:760px;
  6509. top:343px;
  6510. width:41px;
  6511. height:41px;
  6512. display:flex;
  6513. }
  6514. #u57948 .text {
  6515. position:absolute;
  6516. align-self:center;
  6517. padding:2px 2px 2px 2px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u57948_text {
  6522. border-width:0px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. visibility:hidden;
  6526. }
  6527. #u57949 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:0px;
  6533. height:0px;
  6534. }
  6535. #u57950_div {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:0px;
  6539. top:0px;
  6540. width:129px;
  6541. height:30px;
  6542. background:inherit;
  6543. background-color:rgba(127, 127, 127, 1);
  6544. border:none;
  6545. border-radius:4px;
  6546. -moz-box-shadow:none;
  6547. -webkit-box-shadow:none;
  6548. box-shadow:none;
  6549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6550. font-weight:400;
  6551. font-style:normal;
  6552. color:#FFFFFF;
  6553. text-align:center;
  6554. }
  6555. #u57950 {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:787px;
  6559. top:318px;
  6560. width:129px;
  6561. height:30px;
  6562. display:flex;
  6563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6564. font-weight:400;
  6565. font-style:normal;
  6566. color:#FFFFFF;
  6567. text-align:center;
  6568. }
  6569. #u57950 .text {
  6570. position:absolute;
  6571. align-self:center;
  6572. padding:0px 10px 0px 0px;
  6573. box-sizing:border-box;
  6574. width:100%;
  6575. }
  6576. #u57950_text {
  6577. border-width:0px;
  6578. word-wrap:break-word;
  6579. text-transform:none;
  6580. }
  6581. #u57951_div {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:0px;
  6585. top:0px;
  6586. width:310px;
  6587. height:465px;
  6588. background:inherit;
  6589. background-color:rgba(127, 127, 127, 0.756862745098039);
  6590. border:none;
  6591. border-radius:4px;
  6592. -moz-box-shadow:none;
  6593. -webkit-box-shadow:none;
  6594. box-shadow:none;
  6595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6596. font-weight:400;
  6597. font-style:normal;
  6598. color:#FFFFFF;
  6599. text-align:right;
  6600. }
  6601. #u57951 {
  6602. border-width:0px;
  6603. position:absolute;
  6604. left:1235px;
  6605. top:131px;
  6606. width:310px;
  6607. height:465px;
  6608. display:flex;
  6609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6610. font-weight:400;
  6611. font-style:normal;
  6612. color:#FFFFFF;
  6613. text-align:right;
  6614. }
  6615. #u57951 .text {
  6616. position:absolute;
  6617. align-self:center;
  6618. padding:0px 0px 0px 0px;
  6619. box-sizing:border-box;
  6620. width:100%;
  6621. }
  6622. #u57951_text {
  6623. border-width:0px;
  6624. word-wrap:break-word;
  6625. text-transform:none;
  6626. visibility:hidden;
  6627. }
  6628. #u57952_div {
  6629. border-width:0px;
  6630. position:absolute;
  6631. left:0px;
  6632. top:0px;
  6633. width:310px;
  6634. height:580px;
  6635. background:inherit;
  6636. background-color:rgba(127, 127, 127, 0.756862745098039);
  6637. border:none;
  6638. border-radius:4px;
  6639. -moz-box-shadow:none;
  6640. -webkit-box-shadow:none;
  6641. box-shadow:none;
  6642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6643. font-weight:400;
  6644. font-style:normal;
  6645. color:#FFFFFF;
  6646. text-align:right;
  6647. }
  6648. #u57952 {
  6649. border-width:0px;
  6650. position:absolute;
  6651. left:1235px;
  6652. top:609px;
  6653. width:310px;
  6654. height:580px;
  6655. display:flex;
  6656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6657. font-weight:400;
  6658. font-style:normal;
  6659. color:#FFFFFF;
  6660. text-align:right;
  6661. }
  6662. #u57952 .text {
  6663. position:absolute;
  6664. align-self:center;
  6665. padding:0px 0px 0px 0px;
  6666. box-sizing:border-box;
  6667. width:100%;
  6668. }
  6669. #u57952_text {
  6670. border-width:0px;
  6671. word-wrap:break-word;
  6672. text-transform:none;
  6673. visibility:hidden;
  6674. }
  6675. #u57953_div {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:0px;
  6679. top:0px;
  6680. width:102px;
  6681. height:25px;
  6682. background:inherit;
  6683. background-color:rgba(255, 255, 255, 0);
  6684. border:none;
  6685. border-radius:0px;
  6686. -moz-box-shadow:none;
  6687. -webkit-box-shadow:none;
  6688. box-shadow:none;
  6689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6690. font-weight:400;
  6691. font-style:normal;
  6692. font-size:18px;
  6693. }
  6694. #u57953 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:1262px;
  6698. top:341px;
  6699. width:102px;
  6700. height:25px;
  6701. display:flex;
  6702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:18px;
  6706. }
  6707. #u57953 .text {
  6708. position:absolute;
  6709. align-self:flex-start;
  6710. padding:0px 0px 0px 0px;
  6711. box-sizing:border-box;
  6712. width:100%;
  6713. }
  6714. #u57953_text {
  6715. border-width:0px;
  6716. white-space:nowrap;
  6717. text-transform:none;
  6718. }
  6719. #u57954_div {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:223px;
  6725. height:125px;
  6726. background:inherit;
  6727. background-color:rgba(255, 255, 255, 0);
  6728. border:none;
  6729. border-radius:0px;
  6730. -moz-box-shadow:none;
  6731. -webkit-box-shadow:none;
  6732. box-shadow:none;
  6733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6734. font-weight:400;
  6735. font-style:normal;
  6736. line-height:25px;
  6737. }
  6738. #u57954 {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:1262px;
  6742. top:386px;
  6743. width:223px;
  6744. height:125px;
  6745. display:flex;
  6746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6747. font-weight:400;
  6748. font-style:normal;
  6749. line-height:25px;
  6750. }
  6751. #u57954 .text {
  6752. position:absolute;
  6753. align-self:flex-start;
  6754. padding:0px 0px 0px 0px;
  6755. box-sizing:border-box;
  6756. width:100%;
  6757. }
  6758. #u57954_text {
  6759. border-width:0px;
  6760. white-space:nowrap;
  6761. text-transform:none;
  6762. }
  6763. #u57955_div {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:0px;
  6767. top:0px;
  6768. width:71px;
  6769. height:20px;
  6770. background:inherit;
  6771. background-color:rgba(255, 255, 255, 0);
  6772. border:none;
  6773. border-radius:0px;
  6774. -moz-box-shadow:none;
  6775. -webkit-box-shadow:none;
  6776. box-shadow:none;
  6777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6778. font-weight:400;
  6779. font-style:normal;
  6780. color:#0089FE;
  6781. }
  6782. #u57955 {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:1451px;
  6786. top:551px;
  6787. width:71px;
  6788. height:20px;
  6789. display:flex;
  6790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6791. font-weight:400;
  6792. font-style:normal;
  6793. color:#0089FE;
  6794. }
  6795. #u57955 .text {
  6796. position:absolute;
  6797. align-self:flex-start;
  6798. padding:0px 0px 0px 0px;
  6799. box-sizing:border-box;
  6800. width:100%;
  6801. }
  6802. #u57955_text {
  6803. border-width:0px;
  6804. white-space:nowrap;
  6805. text-transform:none;
  6806. }
  6807. #u57956_img {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:0px;
  6811. top:0px;
  6812. width:104px;
  6813. height:104px;
  6814. }
  6815. #u57956 {
  6816. border-width:0px;
  6817. position:absolute;
  6818. left:1278px;
  6819. top:657px;
  6820. width:104px;
  6821. height:104px;
  6822. display:flex;
  6823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6824. font-weight:400;
  6825. font-style:normal;
  6826. }
  6827. #u57956 .text {
  6828. position:absolute;
  6829. align-self:center;
  6830. padding:2px 2px 2px 2px;
  6831. box-sizing:border-box;
  6832. width:100%;
  6833. }
  6834. #u57956_text {
  6835. border-width:0px;
  6836. word-wrap:break-word;
  6837. text-transform:none;
  6838. }
  6839. #u57957_div {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:0px;
  6843. top:0px;
  6844. width:91px;
  6845. height:150px;
  6846. background:inherit;
  6847. background-color:rgba(255, 255, 255, 0);
  6848. border:none;
  6849. border-radius:0px;
  6850. -moz-box-shadow:none;
  6851. -webkit-box-shadow:none;
  6852. box-shadow:none;
  6853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6854. font-weight:400;
  6855. font-style:normal;
  6856. line-height:30px;
  6857. }
  6858. #u57957 {
  6859. border-width:0px;
  6860. position:absolute;
  6861. left:1400px;
  6862. top:634px;
  6863. width:91px;
  6864. height:150px;
  6865. display:flex;
  6866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6867. font-weight:400;
  6868. font-style:normal;
  6869. line-height:30px;
  6870. }
  6871. #u57957 .text {
  6872. position:absolute;
  6873. align-self:flex-start;
  6874. padding:0px 0px 0px 0px;
  6875. box-sizing:border-box;
  6876. width:100%;
  6877. }
  6878. #u57957_text {
  6879. border-width:0px;
  6880. white-space:nowrap;
  6881. text-transform:none;
  6882. }
  6883. #u57958_div {
  6884. border-width:0px;
  6885. position:absolute;
  6886. left:0px;
  6887. top:0px;
  6888. width:282px;
  6889. height:40px;
  6890. background:inherit;
  6891. background-color:rgba(51, 51, 51, 0.376470588235294);
  6892. border:none;
  6893. border-radius:4px;
  6894. -moz-box-shadow:none;
  6895. -webkit-box-shadow:none;
  6896. box-shadow:none;
  6897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6898. font-weight:400;
  6899. font-style:normal;
  6900. font-size:18px;
  6901. text-align:center;
  6902. }
  6903. #u57958 {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:1249px;
  6907. top:817px;
  6908. width:282px;
  6909. height:40px;
  6910. display:flex;
  6911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6912. font-weight:400;
  6913. font-style:normal;
  6914. font-size:18px;
  6915. text-align:center;
  6916. }
  6917. #u57958 .text {
  6918. position:absolute;
  6919. align-self:center;
  6920. padding:0px 0px 0px 20px;
  6921. box-sizing:border-box;
  6922. width:100%;
  6923. }
  6924. #u57958_text {
  6925. border-width:0px;
  6926. word-wrap:break-word;
  6927. text-transform:none;
  6928. }
  6929. #u57959_div {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:0px;
  6933. top:0px;
  6934. width:63px;
  6935. height:17px;
  6936. background:inherit;
  6937. background-color:rgba(255, 255, 255, 0);
  6938. border:none;
  6939. border-radius:0px;
  6940. -moz-box-shadow:none;
  6941. -webkit-box-shadow:none;
  6942. box-shadow:none;
  6943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6944. font-weight:400;
  6945. font-style:normal;
  6946. font-size:12px;
  6947. }
  6948. #u57959 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:1464px;
  6952. top:346px;
  6953. width:63px;
  6954. height:17px;
  6955. display:flex;
  6956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:12px;
  6960. }
  6961. #u57959 .text {
  6962. position:absolute;
  6963. align-self:flex-start;
  6964. padding:0px 0px 0px 0px;
  6965. box-sizing:border-box;
  6966. width:100%;
  6967. }
  6968. #u57959_text {
  6969. border-width:0px;
  6970. white-space:nowrap;
  6971. text-transform:none;
  6972. }
  6973. #u57960_div {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:0px;
  6977. top:0px;
  6978. width:65px;
  6979. height:180px;
  6980. background:inherit;
  6981. background-color:rgba(255, 255, 255, 0);
  6982. border:none;
  6983. border-radius:0px;
  6984. -moz-box-shadow:none;
  6985. -webkit-box-shadow:none;
  6986. box-shadow:none;
  6987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6988. font-weight:400;
  6989. font-style:normal;
  6990. line-height:30px;
  6991. }
  6992. #u57960 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:1262px;
  6996. top:979px;
  6997. width:65px;
  6998. height:180px;
  6999. display:flex;
  7000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. line-height:30px;
  7004. }
  7005. #u57960 .text {
  7006. position:absolute;
  7007. align-self:flex-start;
  7008. padding:0px 0px 0px 0px;
  7009. box-sizing:border-box;
  7010. width:100%;
  7011. }
  7012. #u57960_text {
  7013. border-width:0px;
  7014. white-space:nowrap;
  7015. text-transform:none;
  7016. }
  7017. #u57961_div {
  7018. border-width:0px;
  7019. position:absolute;
  7020. left:0px;
  7021. top:0px;
  7022. width:29px;
  7023. height:180px;
  7024. background:inherit;
  7025. background-color:rgba(255, 255, 255, 0);
  7026. border:none;
  7027. border-radius:0px;
  7028. -moz-box-shadow:none;
  7029. -webkit-box-shadow:none;
  7030. box-shadow:none;
  7031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7032. font-weight:400;
  7033. font-style:normal;
  7034. text-align:right;
  7035. line-height:30px;
  7036. }
  7037. #u57961 {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:1496px;
  7041. top:979px;
  7042. width:29px;
  7043. height:180px;
  7044. display:flex;
  7045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7046. font-weight:400;
  7047. font-style:normal;
  7048. text-align:right;
  7049. line-height:30px;
  7050. }
  7051. #u57961 .text {
  7052. position:absolute;
  7053. align-self:flex-start;
  7054. padding:0px 0px 0px 0px;
  7055. box-sizing:border-box;
  7056. width:100%;
  7057. }
  7058. #u57961_text {
  7059. border-width:0px;
  7060. white-space:nowrap;
  7061. text-transform:none;
  7062. }
  7063. #u57962_div {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:0px;
  7067. top:0px;
  7068. width:136px;
  7069. height:40px;
  7070. background:inherit;
  7071. background-color:rgba(51, 51, 51, 0.376470588235294);
  7072. border:none;
  7073. border-radius:4px;
  7074. -moz-box-shadow:none;
  7075. -webkit-box-shadow:none;
  7076. box-shadow:none;
  7077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7078. font-weight:400;
  7079. font-style:normal;
  7080. }
  7081. #u57962 {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:1249px;
  7085. top:867px;
  7086. width:136px;
  7087. height:40px;
  7088. display:flex;
  7089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. }
  7093. #u57962 .text {
  7094. position:absolute;
  7095. align-self:center;
  7096. padding:0px 0px 0px 20px;
  7097. box-sizing:border-box;
  7098. width:100%;
  7099. }
  7100. #u57962_text {
  7101. border-width:0px;
  7102. word-wrap:break-word;
  7103. text-transform:none;
  7104. }
  7105. #u57963_div {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:0px;
  7109. top:0px;
  7110. width:136px;
  7111. height:40px;
  7112. background:inherit;
  7113. background-color:rgba(51, 51, 51, 0.376470588235294);
  7114. border:none;
  7115. border-radius:4px;
  7116. -moz-box-shadow:none;
  7117. -webkit-box-shadow:none;
  7118. box-shadow:none;
  7119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7120. font-weight:400;
  7121. font-style:normal;
  7122. }
  7123. #u57963 {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:1249px;
  7127. top:917px;
  7128. width:136px;
  7129. height:40px;
  7130. display:flex;
  7131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7132. font-weight:400;
  7133. font-style:normal;
  7134. }
  7135. #u57963 .text {
  7136. position:absolute;
  7137. align-self:center;
  7138. padding:0px 0px 0px 20px;
  7139. box-sizing:border-box;
  7140. width:100%;
  7141. }
  7142. #u57963_text {
  7143. border-width:0px;
  7144. word-wrap:break-word;
  7145. text-transform:none;
  7146. }
  7147. #u57964_div {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:0px;
  7151. top:0px;
  7152. width:136px;
  7153. height:40px;
  7154. background:inherit;
  7155. background-color:rgba(51, 51, 51, 0.376470588235294);
  7156. border:none;
  7157. border-radius:4px;
  7158. -moz-box-shadow:none;
  7159. -webkit-box-shadow:none;
  7160. box-shadow:none;
  7161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. }
  7165. #u57964 {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:1395px;
  7169. top:867px;
  7170. width:136px;
  7171. height:40px;
  7172. display:flex;
  7173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7174. font-weight:400;
  7175. font-style:normal;
  7176. }
  7177. #u57964 .text {
  7178. position:absolute;
  7179. align-self:center;
  7180. padding:0px 0px 0px 20px;
  7181. box-sizing:border-box;
  7182. width:100%;
  7183. }
  7184. #u57964_text {
  7185. border-width:0px;
  7186. word-wrap:break-word;
  7187. text-transform:none;
  7188. }
  7189. #u57965_div {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:0px;
  7193. top:0px;
  7194. width:136px;
  7195. height:40px;
  7196. background:inherit;
  7197. background-color:rgba(51, 51, 51, 0.376470588235294);
  7198. border:none;
  7199. border-radius:4px;
  7200. -moz-box-shadow:none;
  7201. -webkit-box-shadow:none;
  7202. box-shadow:none;
  7203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7204. font-weight:400;
  7205. font-style:normal;
  7206. }
  7207. #u57965 {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:1395px;
  7211. top:917px;
  7212. width:136px;
  7213. height:40px;
  7214. display:flex;
  7215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7216. font-weight:400;
  7217. font-style:normal;
  7218. }
  7219. #u57965 .text {
  7220. position:absolute;
  7221. align-self:center;
  7222. padding:0px 0px 0px 20px;
  7223. box-sizing:border-box;
  7224. width:100%;
  7225. }
  7226. #u57965_text {
  7227. border-width:0px;
  7228. word-wrap:break-word;
  7229. text-transform:none;
  7230. }
  7231. #u57966_img {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:0px;
  7235. top:0px;
  7236. width:256px;
  7237. height:176px;
  7238. }
  7239. #u57966 {
  7240. border-width:0px;
  7241. position:absolute;
  7242. left:1262px;
  7243. top:145px;
  7244. width:256px;
  7245. height:176px;
  7246. display:flex;
  7247. }
  7248. #u57966 .text {
  7249. position:absolute;
  7250. align-self:center;
  7251. padding:2px 2px 2px 2px;
  7252. box-sizing:border-box;
  7253. width:100%;
  7254. }
  7255. #u57966_text {
  7256. border-width:0px;
  7257. word-wrap:break-word;
  7258. text-transform:none;
  7259. visibility:hidden;
  7260. }
  7261. #u57967_div {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:91px;
  7267. height:25px;
  7268. background:inherit;
  7269. background-color:rgba(255, 255, 255, 0);
  7270. border:none;
  7271. border-radius:0px;
  7272. -moz-box-shadow:none;
  7273. -webkit-box-shadow:none;
  7274. box-shadow:none;
  7275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7276. font-weight:400;
  7277. font-style:normal;
  7278. font-size:18px;
  7279. }
  7280. #u57967 {
  7281. border-width:0px;
  7282. position:absolute;
  7283. left:370px;
  7284. top:119px;
  7285. width:91px;
  7286. height:25px;
  7287. display:flex;
  7288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7289. font-weight:400;
  7290. font-style:normal;
  7291. font-size:18px;
  7292. }
  7293. #u57967 .text {
  7294. position:absolute;
  7295. align-self:flex-start;
  7296. padding:0px 0px 0px 0px;
  7297. box-sizing:border-box;
  7298. width:100%;
  7299. }
  7300. #u57967_text {
  7301. border-width:0px;
  7302. white-space:nowrap;
  7303. text-transform:none;
  7304. }
  7305. #u57968_div {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:0px;
  7309. top:0px;
  7310. width:91px;
  7311. height:25px;
  7312. background:inherit;
  7313. background-color:rgba(255, 255, 255, 0);
  7314. border:none;
  7315. border-radius:0px;
  7316. -moz-box-shadow:none;
  7317. -webkit-box-shadow:none;
  7318. box-shadow:none;
  7319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:18px;
  7323. }
  7324. #u57968 {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:489px;
  7328. top:119px;
  7329. width:91px;
  7330. height:25px;
  7331. display:flex;
  7332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7333. font-weight:400;
  7334. font-style:normal;
  7335. font-size:18px;
  7336. }
  7337. #u57968 .text {
  7338. position:absolute;
  7339. align-self:flex-start;
  7340. padding:0px 0px 0px 0px;
  7341. box-sizing:border-box;
  7342. width:100%;
  7343. }
  7344. #u57968_text {
  7345. border-width:0px;
  7346. white-space:nowrap;
  7347. text-transform:none;
  7348. }
  7349. #u57969_div {
  7350. border-width:0px;
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:73px;
  7355. height:25px;
  7356. background:inherit;
  7357. background-color:rgba(255, 255, 255, 0);
  7358. border:none;
  7359. border-radius:0px;
  7360. -moz-box-shadow:none;
  7361. -webkit-box-shadow:none;
  7362. box-shadow:none;
  7363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7364. font-weight:400;
  7365. font-style:normal;
  7366. font-size:18px;
  7367. }
  7368. #u57969 {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:618px;
  7372. top:119px;
  7373. width:73px;
  7374. height:25px;
  7375. display:flex;
  7376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7377. font-weight:400;
  7378. font-style:normal;
  7379. font-size:18px;
  7380. }
  7381. #u57969 .text {
  7382. position:absolute;
  7383. align-self:flex-start;
  7384. padding:0px 0px 0px 0px;
  7385. box-sizing:border-box;
  7386. width:100%;
  7387. }
  7388. #u57969_text {
  7389. border-width:0px;
  7390. white-space:nowrap;
  7391. text-transform:none;
  7392. }
  7393. #u57970 {
  7394. border-width:0px;
  7395. position:absolute;
  7396. left:0px;
  7397. top:0px;
  7398. width:0px;
  7399. height:0px;
  7400. }
  7401. #u57971_div {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:0px;
  7405. top:0px;
  7406. width:200px;
  7407. height:1180px;
  7408. background:inherit;
  7409. background-color:rgba(255, 255, 255, 1);
  7410. border:none;
  7411. border-radius:0px;
  7412. -moz-box-shadow:none;
  7413. -webkit-box-shadow:none;
  7414. box-shadow:none;
  7415. }
  7416. #u57971 {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:120px;
  7420. top:51px;
  7421. width:200px;
  7422. height:1180px;
  7423. display:flex;
  7424. }
  7425. #u57971 .text {
  7426. position:absolute;
  7427. align-self:center;
  7428. padding:2px 2px 2px 2px;
  7429. box-sizing:border-box;
  7430. width:100%;
  7431. }
  7432. #u57971_text {
  7433. border-width:0px;
  7434. word-wrap:break-word;
  7435. text-transform:none;
  7436. visibility:hidden;
  7437. }
  7438. #u57972_div {
  7439. border-width:0px;
  7440. position:absolute;
  7441. left:0px;
  7442. top:0px;
  7443. width:200px;
  7444. height:60px;
  7445. background:inherit;
  7446. background-color:rgba(224, 231, 247, 1);
  7447. border:none;
  7448. border-radius:0px;
  7449. -moz-box-shadow:none;
  7450. -webkit-box-shadow:none;
  7451. box-shadow:none;
  7452. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7453. font-weight:500;
  7454. font-style:normal;
  7455. font-size:18px;
  7456. }
  7457. #u57972 {
  7458. border-width:0px;
  7459. position:absolute;
  7460. left:120px;
  7461. top:51px;
  7462. width:200px;
  7463. height:60px;
  7464. display:flex;
  7465. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7466. font-weight:500;
  7467. font-style:normal;
  7468. font-size:18px;
  7469. }
  7470. #u57972 .text {
  7471. position:absolute;
  7472. align-self:center;
  7473. padding:0px 0px 0px 20px;
  7474. box-sizing:border-box;
  7475. width:100%;
  7476. }
  7477. #u57972_text {
  7478. border-width:0px;
  7479. word-wrap:break-word;
  7480. text-transform:none;
  7481. }
  7482. #u57973_div {
  7483. border-width:0px;
  7484. position:absolute;
  7485. left:0px;
  7486. top:0px;
  7487. width:65px;
  7488. height:22px;
  7489. background:inherit;
  7490. background-color:rgba(255, 255, 255, 0);
  7491. border:none;
  7492. border-radius:0px;
  7493. -moz-box-shadow:none;
  7494. -webkit-box-shadow:none;
  7495. box-shadow:none;
  7496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7497. font-weight:400;
  7498. font-style:normal;
  7499. font-size:16px;
  7500. }
  7501. #u57973 {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:142px;
  7505. top:162px;
  7506. width:65px;
  7507. height:22px;
  7508. display:flex;
  7509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7510. font-weight:400;
  7511. font-style:normal;
  7512. font-size:16px;
  7513. }
  7514. #u57973 .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. #u57973_text {
  7522. border-width:0px;
  7523. white-space:nowrap;
  7524. text-transform:none;
  7525. }
  7526. #u57974_div {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:0px;
  7530. top:0px;
  7531. width:49px;
  7532. height:17px;
  7533. background:inherit;
  7534. background-color:rgba(255, 255, 255, 0);
  7535. border:none;
  7536. border-radius:0px;
  7537. -moz-box-shadow:none;
  7538. -webkit-box-shadow:none;
  7539. box-shadow:none;
  7540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. font-size:12px;
  7544. color:#AAAAAA;
  7545. }
  7546. #u57974 {
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:142px;
  7550. top:126px;
  7551. width:49px;
  7552. height:17px;
  7553. display:flex;
  7554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7555. font-weight:400;
  7556. font-style:normal;
  7557. font-size:12px;
  7558. color:#AAAAAA;
  7559. }
  7560. #u57974 .text {
  7561. position:absolute;
  7562. align-self:flex-start;
  7563. padding:0px 0px 0px 0px;
  7564. box-sizing:border-box;
  7565. width:100%;
  7566. }
  7567. #u57974_text {
  7568. border-width:0px;
  7569. white-space:nowrap;
  7570. text-transform:none;
  7571. }
  7572. #u57975_img {
  7573. border-width:0px;
  7574. position:absolute;
  7575. left:0px;
  7576. top:0px;
  7577. width:201px;
  7578. height:2px;
  7579. }
  7580. #u57975 {
  7581. border-width:0px;
  7582. position:absolute;
  7583. left:120px;
  7584. top:246px;
  7585. width:200px;
  7586. height:1px;
  7587. display:flex;
  7588. }
  7589. #u57975 .text {
  7590. position:absolute;
  7591. align-self:center;
  7592. padding:2px 2px 2px 2px;
  7593. box-sizing:border-box;
  7594. width:100%;
  7595. }
  7596. #u57975_text {
  7597. border-width:0px;
  7598. word-wrap:break-word;
  7599. text-transform:none;
  7600. visibility:hidden;
  7601. }
  7602. #u57976_div {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:0px;
  7606. top:0px;
  7607. width:65px;
  7608. height:22px;
  7609. background:inherit;
  7610. background-color:rgba(255, 255, 255, 0);
  7611. border:none;
  7612. border-radius:0px;
  7613. -moz-box-shadow:none;
  7614. -webkit-box-shadow:none;
  7615. box-shadow:none;
  7616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7617. font-weight:400;
  7618. font-style:normal;
  7619. font-size:16px;
  7620. }
  7621. #u57976 {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:142px;
  7625. top:302px;
  7626. width:65px;
  7627. height:22px;
  7628. display:flex;
  7629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7630. font-weight:400;
  7631. font-style:normal;
  7632. font-size:16px;
  7633. }
  7634. #u57976 .text {
  7635. position:absolute;
  7636. align-self:flex-start;
  7637. padding:0px 0px 0px 0px;
  7638. box-sizing:border-box;
  7639. width:100%;
  7640. }
  7641. #u57976_text {
  7642. border-width:0px;
  7643. white-space:nowrap;
  7644. text-transform:none;
  7645. }
  7646. #u57977_div {
  7647. border-width:0px;
  7648. position:absolute;
  7649. left:0px;
  7650. top:0px;
  7651. width:49px;
  7652. height:17px;
  7653. background:inherit;
  7654. background-color:rgba(255, 255, 255, 0);
  7655. border:none;
  7656. border-radius:0px;
  7657. -moz-box-shadow:none;
  7658. -webkit-box-shadow:none;
  7659. box-shadow:none;
  7660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7661. font-weight:400;
  7662. font-style:normal;
  7663. font-size:12px;
  7664. color:#AAAAAA;
  7665. }
  7666. #u57977 {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:142px;
  7670. top:266px;
  7671. width:49px;
  7672. height:17px;
  7673. display:flex;
  7674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7675. font-weight:400;
  7676. font-style:normal;
  7677. font-size:12px;
  7678. color:#AAAAAA;
  7679. }
  7680. #u57977 .text {
  7681. position:absolute;
  7682. align-self:flex-start;
  7683. padding:0px 0px 0px 0px;
  7684. box-sizing:border-box;
  7685. width:100%;
  7686. }
  7687. #u57977_text {
  7688. border-width:0px;
  7689. white-space:nowrap;
  7690. text-transform:none;
  7691. }
  7692. #u57978_div {
  7693. border-width:0px;
  7694. position:absolute;
  7695. left:0px;
  7696. top:0px;
  7697. width:65px;
  7698. height:22px;
  7699. background:inherit;
  7700. background-color:rgba(255, 255, 255, 0);
  7701. border:none;
  7702. border-radius:0px;
  7703. -moz-box-shadow:none;
  7704. -webkit-box-shadow:none;
  7705. box-shadow:none;
  7706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7707. font-weight:400;
  7708. font-style:normal;
  7709. font-size:16px;
  7710. }
  7711. #u57978 {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:142px;
  7715. top:344px;
  7716. width:65px;
  7717. height:22px;
  7718. display:flex;
  7719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7720. font-weight:400;
  7721. font-style:normal;
  7722. font-size:16px;
  7723. }
  7724. #u57978 .text {
  7725. position:absolute;
  7726. align-self:flex-start;
  7727. padding:0px 0px 0px 0px;
  7728. box-sizing:border-box;
  7729. width:100%;
  7730. }
  7731. #u57978_text {
  7732. border-width:0px;
  7733. white-space:nowrap;
  7734. text-transform:none;
  7735. }
  7736. #u57979_div {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:0px;
  7740. top:0px;
  7741. width:65px;
  7742. height:22px;
  7743. background:inherit;
  7744. background-color:rgba(255, 255, 255, 0);
  7745. border:none;
  7746. border-radius:0px;
  7747. -moz-box-shadow:none;
  7748. -webkit-box-shadow:none;
  7749. box-shadow:none;
  7750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7751. font-weight:400;
  7752. font-style:normal;
  7753. font-size:16px;
  7754. }
  7755. #u57979 {
  7756. border-width:0px;
  7757. position:absolute;
  7758. left:142px;
  7759. top:204px;
  7760. width:65px;
  7761. height:22px;
  7762. display:flex;
  7763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7764. font-weight:400;
  7765. font-style:normal;
  7766. font-size:16px;
  7767. }
  7768. #u57979 .text {
  7769. position:absolute;
  7770. align-self:flex-start;
  7771. padding:0px 0px 0px 0px;
  7772. box-sizing:border-box;
  7773. width:100%;
  7774. }
  7775. #u57979_text {
  7776. border-width:0px;
  7777. white-space:nowrap;
  7778. text-transform:none;
  7779. }