styles.css 154 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u59752_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. #u59752 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u59752 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u59752_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u59753_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. #u59753 {
  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. #u59753 .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. #u59753_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u59754_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. #u59754 {
  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. #u59754 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u59754_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u59755 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u59756_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u59756 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u59756 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u59756_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u59757_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. #u59757 {
  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. #u59757 .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. #u59757_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u59758_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. #u59758 {
  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. #u59758 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u59758_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u59759 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u59760_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. #u59760_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. #u59760_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. #u59760 {
  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. #u59760 .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. #u59760_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. #u59760.disabled {
  356. }
  357. .u59760_input_option {
  358. font-size:14px;
  359. }
  360. #u59761_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u59761 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u59761 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u59761_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u59762_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. #u59762 {
  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. #u59762 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u59762_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u59763_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. #u59763 {
  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. #u59763 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u59763_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u59764 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u59765_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. #u59765 {
  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. #u59765 .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. #u59765_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u59766_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u59766 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u59766 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u59766_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u59767 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u59768_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. #u59768 {
  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. #u59768 .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. #u59768_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u59769_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u59769 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u59769 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u59769_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u59770 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u59771_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. #u59771 {
  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. #u59771 .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. #u59771_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u59772_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u59772 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u59772 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u59772_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u59773 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u59774_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. #u59774 {
  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. #u59774 .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. #u59774_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u59775_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u59775 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u59775 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u59775_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u59776 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u59777_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. #u59777 {
  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. #u59777 .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. #u59777_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u59778_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u59778 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u59778 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u59778_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u59779 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u59780_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. #u59780 {
  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. #u59780 .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. #u59780_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u59781_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u59781 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u59781 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u59781_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u59782 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u59783_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. #u59783 {
  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. #u59783 .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. #u59783_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u59784_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u59784 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u59784 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u59784_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u59785 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u59786_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. #u59786 {
  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. #u59786 .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. #u59786_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u59787_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u59787 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u59787 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u59787_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u59788 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u59789_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. #u59789 {
  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. #u59789 .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. #u59789_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u59790_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u59790 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u59790 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u59790_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u59791 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u59792_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. #u59792 {
  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. #u59792 .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. #u59792_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u59793_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u59793 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u59793 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u59793_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u59794_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. #u59794 {
  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. #u59794 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u59794_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u59795_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u59795 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u59795 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u59795_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u59796_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. #u59796 {
  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. #u59796 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u59796_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u59797_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u59797 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u59797 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u59797_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u59798 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u59799_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. #u59799 {
  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. #u59799 .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. #u59799_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u59800_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u59800 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u59800 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u59800_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u59801 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u59802_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. #u59802 {
  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. #u59802 .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. #u59802_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u59803_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u59803 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u59803 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u59803_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u59804_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1257px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(242, 242, 242, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. }
  1656. #u59804 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:332px;
  1660. top:50px;
  1661. width:1257px;
  1662. height:1180px;
  1663. display:flex;
  1664. }
  1665. #u59804 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u59804_text {
  1673. border-width:0px;
  1674. word-wrap:break-word;
  1675. text-transform:none;
  1676. visibility:hidden;
  1677. }
  1678. #u59805_img {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:0px;
  1682. top:0px;
  1683. width:598px;
  1684. height:413px;
  1685. }
  1686. #u59805 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:970px;
  1690. top:727px;
  1691. width:598px;
  1692. height:413px;
  1693. display:flex;
  1694. }
  1695. #u59805 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:0px 0px 0px 0px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u59805_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u59806_div {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:145px;
  1714. height:25px;
  1715. background:inherit;
  1716. background-color:rgba(255, 255, 255, 0);
  1717. border:none;
  1718. border-radius:0px;
  1719. -moz-box-shadow:none;
  1720. -webkit-box-shadow:none;
  1721. box-shadow:none;
  1722. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1723. font-weight:650;
  1724. font-style:normal;
  1725. }
  1726. #u59806 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:996px;
  1730. top:750px;
  1731. width:145px;
  1732. height:25px;
  1733. display:flex;
  1734. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1735. font-weight:650;
  1736. font-style:normal;
  1737. }
  1738. #u59806 .text {
  1739. position:absolute;
  1740. align-self:flex-start;
  1741. padding:0px 0px 0px 0px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u59806_text {
  1746. border-width:0px;
  1747. white-space:nowrap;
  1748. text-transform:none;
  1749. }
  1750. #u59807_div {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:0px;
  1754. top:0px;
  1755. width:53px;
  1756. height:18px;
  1757. background:inherit;
  1758. background-color:rgba(255, 255, 255, 0);
  1759. border:none;
  1760. border-radius:0px;
  1761. -moz-box-shadow:none;
  1762. -webkit-box-shadow:none;
  1763. box-shadow:none;
  1764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1765. font-weight:400;
  1766. font-style:normal;
  1767. font-size:12px;
  1768. color:#555555;
  1769. }
  1770. #u59807 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:1376px;
  1774. top:880px;
  1775. width:53px;
  1776. height:18px;
  1777. display:flex;
  1778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1779. font-weight:400;
  1780. font-style:normal;
  1781. font-size:12px;
  1782. color:#555555;
  1783. }
  1784. #u59807 .text {
  1785. position:absolute;
  1786. align-self:flex-start;
  1787. padding:0px 0px 0px 0px;
  1788. box-sizing:border-box;
  1789. width:100%;
  1790. }
  1791. #u59807_text {
  1792. border-width:0px;
  1793. word-wrap:break-word;
  1794. text-transform:none;
  1795. }
  1796. #u59808_div {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:0px;
  1800. top:0px;
  1801. width:56px;
  1802. height:17px;
  1803. background:inherit;
  1804. background-color:rgba(255, 255, 255, 0);
  1805. border:none;
  1806. border-radius:0px;
  1807. -moz-box-shadow:none;
  1808. -webkit-box-shadow:none;
  1809. box-shadow:none;
  1810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1811. font-weight:400;
  1812. font-style:normal;
  1813. font-size:12px;
  1814. color:#555555;
  1815. }
  1816. #u59808 {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:1376px;
  1820. top:916px;
  1821. width:56px;
  1822. height:17px;
  1823. display:flex;
  1824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1825. font-weight:400;
  1826. font-style:normal;
  1827. font-size:12px;
  1828. color:#555555;
  1829. }
  1830. #u59808 .text {
  1831. position:absolute;
  1832. align-self:flex-start;
  1833. padding:0px 0px 0px 0px;
  1834. box-sizing:border-box;
  1835. width:100%;
  1836. }
  1837. #u59808_text {
  1838. border-width:0px;
  1839. white-space:nowrap;
  1840. text-transform:none;
  1841. }
  1842. #u59809_div {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:0px;
  1846. top:0px;
  1847. width:66px;
  1848. height:18px;
  1849. background:inherit;
  1850. background-color:rgba(255, 255, 255, 0);
  1851. border:none;
  1852. border-radius:0px;
  1853. -moz-box-shadow:none;
  1854. -webkit-box-shadow:none;
  1855. box-shadow:none;
  1856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1857. font-weight:400;
  1858. font-style:normal;
  1859. font-size:12px;
  1860. color:#555555;
  1861. }
  1862. #u59809 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:1376px;
  1866. top:951px;
  1867. width:66px;
  1868. height:18px;
  1869. display:flex;
  1870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1871. font-weight:400;
  1872. font-style:normal;
  1873. font-size:12px;
  1874. color:#555555;
  1875. }
  1876. #u59809 .text {
  1877. position:absolute;
  1878. align-self:flex-start;
  1879. padding:0px 0px 0px 0px;
  1880. box-sizing:border-box;
  1881. width:100%;
  1882. }
  1883. #u59809_text {
  1884. border-width:0px;
  1885. word-wrap:break-word;
  1886. text-transform:none;
  1887. }
  1888. #u59810_img {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:0px;
  1892. top:0px;
  1893. width:9px;
  1894. height:9px;
  1895. }
  1896. #u59810 {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:1351px;
  1900. top:884px;
  1901. width:9px;
  1902. height:9px;
  1903. display:flex;
  1904. }
  1905. #u59810 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:0px 0px 0px 0px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u59810_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. visibility:hidden;
  1917. }
  1918. #u59811_img {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:9px;
  1924. height:9px;
  1925. }
  1926. #u59811 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:1351px;
  1930. top:919px;
  1931. width:9px;
  1932. height:9px;
  1933. display:flex;
  1934. }
  1935. #u59811 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:0px 0px 0px 0px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u59811_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. visibility:hidden;
  1947. }
  1948. #u59812_img {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:9px;
  1954. height:9px;
  1955. }
  1956. #u59812 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:1351px;
  1960. top:954px;
  1961. width:9px;
  1962. height:9px;
  1963. display:flex;
  1964. }
  1965. #u59812 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:0px 0px 0px 0px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u59812_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. visibility:hidden;
  1977. }
  1978. #u59813_div {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:73px;
  1984. height:30px;
  1985. background:inherit;
  1986. background-color:rgba(255, 255, 255, 0);
  1987. border:none;
  1988. border-radius:0px;
  1989. -moz-box-shadow:none;
  1990. -webkit-box-shadow:none;
  1991. box-shadow:none;
  1992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1993. font-weight:400;
  1994. font-style:normal;
  1995. font-size:18px;
  1996. color:#000000;
  1997. line-height:30px;
  1998. }
  1999. #u59813 {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:354px;
  2003. top:67px;
  2004. width:73px;
  2005. height:30px;
  2006. display:flex;
  2007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2008. font-weight:400;
  2009. font-style:normal;
  2010. font-size:18px;
  2011. color:#000000;
  2012. line-height:30px;
  2013. }
  2014. #u59813 .text {
  2015. position:absolute;
  2016. align-self:flex-start;
  2017. padding:0px 0px 0px 0px;
  2018. box-sizing:border-box;
  2019. width:100%;
  2020. }
  2021. #u59813_text {
  2022. border-width:0px;
  2023. white-space:nowrap;
  2024. text-transform:none;
  2025. }
  2026. #u59814 {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:0px;
  2030. top:0px;
  2031. width:0px;
  2032. height:0px;
  2033. }
  2034. #u59815_div {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:29px;
  2040. height:30px;
  2041. background:inherit;
  2042. background-color:rgba(255, 255, 255, 0);
  2043. border:none;
  2044. border-radius:0px;
  2045. -moz-box-shadow:none;
  2046. -webkit-box-shadow:none;
  2047. box-shadow:none;
  2048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2049. font-weight:400;
  2050. font-style:normal;
  2051. font-size:14px;
  2052. color:#1890FF;
  2053. line-height:30px;
  2054. }
  2055. #u59815 {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:459px;
  2059. top:67px;
  2060. width:29px;
  2061. height:30px;
  2062. display:flex;
  2063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2064. font-weight:400;
  2065. font-style:normal;
  2066. font-size:14px;
  2067. color:#1890FF;
  2068. line-height:30px;
  2069. }
  2070. #u59815 .text {
  2071. position:absolute;
  2072. align-self:flex-start;
  2073. padding:0px 0px 0px 0px;
  2074. box-sizing:border-box;
  2075. width:100%;
  2076. }
  2077. #u59815_text {
  2078. border-width:0px;
  2079. white-space:nowrap;
  2080. text-transform:none;
  2081. }
  2082. #u59816_img {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:14px;
  2088. height:14px;
  2089. }
  2090. #u59816 {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:440px;
  2094. top:75px;
  2095. width:14px;
  2096. height:14px;
  2097. display:flex;
  2098. }
  2099. #u59816 .text {
  2100. position:absolute;
  2101. align-self:center;
  2102. padding:2px 2px 2px 2px;
  2103. box-sizing:border-box;
  2104. width:100%;
  2105. }
  2106. #u59816_text {
  2107. border-width:0px;
  2108. word-wrap:break-word;
  2109. text-transform:none;
  2110. visibility:hidden;
  2111. }
  2112. #u59817 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:0px;
  2116. top:0px;
  2117. width:0px;
  2118. height:0px;
  2119. }
  2120. #u59818_div {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:200px;
  2126. height:30px;
  2127. background:inherit;
  2128. background-color:rgba(255, 255, 255, 1);
  2129. box-sizing:border-box;
  2130. border-width:1px;
  2131. border-style:solid;
  2132. border-color:rgba(215, 215, 215, 1);
  2133. border-radius:0px;
  2134. -moz-box-shadow:none;
  2135. -webkit-box-shadow:none;
  2136. box-shadow:none;
  2137. font-size:11px;
  2138. }
  2139. #u59818 {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:1368px;
  2143. top:67px;
  2144. width:200px;
  2145. height:30px;
  2146. display:flex;
  2147. font-size:11px;
  2148. }
  2149. #u59818 .text {
  2150. position:absolute;
  2151. align-self:center;
  2152. padding:2px 2px 2px 2px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u59818_text {
  2157. border-width:0px;
  2158. word-wrap:break-word;
  2159. text-transform:none;
  2160. visibility:hidden;
  2161. }
  2162. #u59819_input {
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:171px;
  2167. height:23px;
  2168. padding:2px 2px 2px 2px;
  2169. font-family:'ArialMT', 'Arial', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. font-size:11px;
  2173. letter-spacing:normal;
  2174. color:#333333;
  2175. vertical-align:none;
  2176. text-align:left;
  2177. text-transform:none;
  2178. background-color:transparent;
  2179. border-color:transparent;
  2180. }
  2181. #u59819_input.disabled {
  2182. position:absolute;
  2183. left:0px;
  2184. top:0px;
  2185. width:171px;
  2186. height:23px;
  2187. padding:2px 2px 2px 2px;
  2188. font-family:'ArialMT', 'Arial', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:11px;
  2192. letter-spacing:normal;
  2193. color:#333333;
  2194. vertical-align:none;
  2195. text-align:left;
  2196. text-transform:none;
  2197. background-color:transparent;
  2198. border-color:transparent;
  2199. }
  2200. #u59819_div {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:171px;
  2206. height:23px;
  2207. background:inherit;
  2208. background-color:rgba(255, 255, 255, 1);
  2209. border:none;
  2210. border-radius:0px;
  2211. -moz-box-shadow:none;
  2212. -webkit-box-shadow:none;
  2213. box-shadow:none;
  2214. font-size:11px;
  2215. color:#333333;
  2216. }
  2217. #u59819 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:1378px;
  2221. top:69px;
  2222. width:171px;
  2223. height:23px;
  2224. display:flex;
  2225. font-size:11px;
  2226. color:#333333;
  2227. }
  2228. #u59819 .text {
  2229. position:absolute;
  2230. align-self:flex-start;
  2231. padding:2px 2px 2px 2px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u59819_div.disabled {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:171px;
  2241. height:23px;
  2242. background:inherit;
  2243. background-color:rgba(240, 240, 240, 1);
  2244. border:none;
  2245. border-radius:0px;
  2246. -moz-box-shadow:none;
  2247. -webkit-box-shadow:none;
  2248. box-shadow:none;
  2249. font-size:11px;
  2250. color:#333333;
  2251. }
  2252. #u59819.disabled {
  2253. }
  2254. .u59819_input_option {
  2255. font-size:11px;
  2256. }
  2257. #u59820_img {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:214px;
  2263. height:214px;
  2264. }
  2265. #u59820 {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:1050px;
  2269. top:829px;
  2270. width:214px;
  2271. height:214px;
  2272. display:flex;
  2273. }
  2274. #u59820 .text {
  2275. position:absolute;
  2276. align-self:center;
  2277. padding:55.5px 15.0742521562354px 2px 2px;
  2278. box-sizing:border-box;
  2279. width:100%;
  2280. }
  2281. #u59820_text {
  2282. border-width:0px;
  2283. word-wrap:break-word;
  2284. text-transform:none;
  2285. visibility:hidden;
  2286. }
  2287. #u59821_img {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:0px;
  2291. top:0px;
  2292. width:214px;
  2293. height:214px;
  2294. }
  2295. #u59821 {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:1050px;
  2299. top:829px;
  2300. width:214px;
  2301. height:214px;
  2302. display:flex;
  2303. }
  2304. #u59821 .text {
  2305. position:absolute;
  2306. align-self:center;
  2307. padding:2px 11.1633340121802px 109px 16.1837336290937px;
  2308. box-sizing:border-box;
  2309. width:100%;
  2310. }
  2311. #u59821_text {
  2312. border-width:0px;
  2313. word-wrap:break-word;
  2314. text-transform:none;
  2315. visibility:hidden;
  2316. }
  2317. #u59822_img {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:214px;
  2323. height:214px;
  2324. }
  2325. #u59822 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:1050px;
  2329. top:829px;
  2330. width:214px;
  2331. height:214px;
  2332. display:flex;
  2333. }
  2334. #u59822 .text {
  2335. position:absolute;
  2336. align-self:center;
  2337. padding:65.3267632681052px 2px 57.1893885853986px 109px;
  2338. box-sizing:border-box;
  2339. width:100%;
  2340. }
  2341. #u59822_text {
  2342. border-width:0px;
  2343. word-wrap:break-word;
  2344. text-transform:none;
  2345. visibility:hidden;
  2346. }
  2347. #u59823_img {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:137px;
  2353. height:137px;
  2354. }
  2355. #u59823 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:1089px;
  2359. top:868px;
  2360. width:137px;
  2361. height:137px;
  2362. display:flex;
  2363. }
  2364. #u59823 .text {
  2365. position:absolute;
  2366. align-self:center;
  2367. padding:2px 2px 2px 2px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u59823_text {
  2372. border-width:0px;
  2373. word-wrap:break-word;
  2374. text-transform:none;
  2375. }
  2376. #u59824 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:0px;
  2382. height:0px;
  2383. }
  2384. #u59825_div {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:303px;
  2390. height:120px;
  2391. background:inherit;
  2392. background-color:rgba(255, 255, 255, 1);
  2393. border:none;
  2394. border-radius:0px;
  2395. -moz-box-shadow:none;
  2396. -webkit-box-shadow:none;
  2397. box-shadow:none;
  2398. font-family:'Microsoft YaHei', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. }
  2402. #u59825 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:354px;
  2406. top:107px;
  2407. width:303px;
  2408. height:120px;
  2409. display:flex;
  2410. font-family:'Microsoft YaHei', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. }
  2414. #u59825 .text {
  2415. position:absolute;
  2416. align-self:center;
  2417. padding:2px 2px 2px 2px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u59825_div.selected {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:303px;
  2427. height:120px;
  2428. background:inherit;
  2429. background-color:rgba(255, 255, 255, 1);
  2430. border:none;
  2431. border-radius:0px;
  2432. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2433. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2434. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2435. font-family:'Microsoft YaHei', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. }
  2439. #u59825.selected {
  2440. }
  2441. #u59825_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u59826_div {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:112px;
  2453. height:17px;
  2454. background:inherit;
  2455. background-color:rgba(255, 255, 255, 0);
  2456. border:none;
  2457. border-radius:0px;
  2458. -moz-box-shadow:none;
  2459. -webkit-box-shadow:none;
  2460. box-shadow:none;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:12px;
  2465. color:rgba(51, 51, 51, 0.996078431372549);
  2466. }
  2467. #u59826 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:380px;
  2471. top:117px;
  2472. width:112px;
  2473. height:17px;
  2474. display:flex;
  2475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2476. font-weight:400;
  2477. font-style:normal;
  2478. font-size:12px;
  2479. color:rgba(51, 51, 51, 0.996078431372549);
  2480. }
  2481. #u59826 .text {
  2482. position:absolute;
  2483. align-self:flex-start;
  2484. padding:0px 0px 0px 0px;
  2485. box-sizing:border-box;
  2486. width:100%;
  2487. }
  2488. #u59826_text {
  2489. border-width:0px;
  2490. word-wrap:break-word;
  2491. text-transform:none;
  2492. }
  2493. #u59827_div {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:24px;
  2499. height:34px;
  2500. background:inherit;
  2501. background-color:rgba(255, 255, 255, 0);
  2502. border:none;
  2503. border-radius:0px;
  2504. -moz-box-shadow:none;
  2505. -webkit-box-shadow:none;
  2506. box-shadow:none;
  2507. font-size:30px;
  2508. color:rgba(51, 51, 51, 0.996078431372549);
  2509. }
  2510. #u59827 {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:380px;
  2514. top:139px;
  2515. width:24px;
  2516. height:34px;
  2517. display:flex;
  2518. font-size:30px;
  2519. color:rgba(51, 51, 51, 0.996078431372549);
  2520. }
  2521. #u59827 .text {
  2522. position:absolute;
  2523. align-self:flex-start;
  2524. padding:0px 0px 0px 0px;
  2525. box-sizing:border-box;
  2526. width:100%;
  2527. }
  2528. #u59827_text {
  2529. border-width:0px;
  2530. word-wrap:break-word;
  2531. text-transform:none;
  2532. }
  2533. #u59828_img {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:14px;
  2539. height:10px;
  2540. }
  2541. #u59828 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:628px;
  2545. top:121px;
  2546. width:14px;
  2547. height:10px;
  2548. display:flex;
  2549. }
  2550. #u59828 .text {
  2551. position:absolute;
  2552. align-self:center;
  2553. padding:2px 2px 2px 2px;
  2554. box-sizing:border-box;
  2555. width:100%;
  2556. }
  2557. #u59828_text {
  2558. border-width:0px;
  2559. word-wrap:break-word;
  2560. text-transform:none;
  2561. visibility:hidden;
  2562. }
  2563. #u59829 {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:0px;
  2569. height:0px;
  2570. }
  2571. #u59830_div {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:303px;
  2577. height:120px;
  2578. background:inherit;
  2579. background-color:rgba(255, 255, 255, 1);
  2580. border:none;
  2581. border-radius:0px;
  2582. -moz-box-shadow:none;
  2583. -webkit-box-shadow:none;
  2584. box-shadow:none;
  2585. font-family:'Microsoft YaHei', sans-serif;
  2586. font-weight:400;
  2587. font-style:normal;
  2588. }
  2589. #u59830 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:657px;
  2593. top:107px;
  2594. width:303px;
  2595. height:120px;
  2596. display:flex;
  2597. font-family:'Microsoft YaHei', sans-serif;
  2598. font-weight:400;
  2599. font-style:normal;
  2600. }
  2601. #u59830 .text {
  2602. position:absolute;
  2603. align-self:center;
  2604. padding:2px 2px 2px 2px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u59830_div.selected {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:303px;
  2614. height:120px;
  2615. background:inherit;
  2616. background-color:rgba(255, 255, 255, 1);
  2617. border:none;
  2618. border-radius:0px;
  2619. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2620. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2621. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2622. font-family:'Microsoft YaHei', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. }
  2626. #u59830.selected {
  2627. }
  2628. #u59830_text {
  2629. border-width:0px;
  2630. word-wrap:break-word;
  2631. text-transform:none;
  2632. visibility:hidden;
  2633. }
  2634. #u59831_div {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:0px;
  2638. top:0px;
  2639. width:112px;
  2640. height:17px;
  2641. background:inherit;
  2642. background-color:rgba(255, 255, 255, 0);
  2643. border:none;
  2644. border-radius:0px;
  2645. -moz-box-shadow:none;
  2646. -webkit-box-shadow:none;
  2647. box-shadow:none;
  2648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2649. font-weight:400;
  2650. font-style:normal;
  2651. font-size:12px;
  2652. color:rgba(51, 51, 51, 0.996078431372549);
  2653. }
  2654. #u59831 {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:683px;
  2658. top:117px;
  2659. width:112px;
  2660. height:17px;
  2661. display:flex;
  2662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2663. font-weight:400;
  2664. font-style:normal;
  2665. font-size:12px;
  2666. color:rgba(51, 51, 51, 0.996078431372549);
  2667. }
  2668. #u59831 .text {
  2669. position:absolute;
  2670. align-self:flex-start;
  2671. padding:0px 0px 0px 0px;
  2672. box-sizing:border-box;
  2673. width:100%;
  2674. }
  2675. #u59831_text {
  2676. border-width:0px;
  2677. word-wrap:break-word;
  2678. text-transform:none;
  2679. }
  2680. #u59832_div {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:58px;
  2686. height:34px;
  2687. background:inherit;
  2688. background-color:rgba(255, 255, 255, 0);
  2689. border:none;
  2690. border-radius:0px;
  2691. -moz-box-shadow:none;
  2692. -webkit-box-shadow:none;
  2693. box-shadow:none;
  2694. font-size:30px;
  2695. color:rgba(51, 51, 51, 0.996078431372549);
  2696. }
  2697. #u59832 {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:683px;
  2701. top:139px;
  2702. width:58px;
  2703. height:34px;
  2704. display:flex;
  2705. font-size:30px;
  2706. color:rgba(51, 51, 51, 0.996078431372549);
  2707. }
  2708. #u59832 .text {
  2709. position:absolute;
  2710. align-self:flex-start;
  2711. padding:0px 0px 0px 0px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u59832_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. }
  2720. #u59833_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:14px;
  2726. height:10px;
  2727. }
  2728. #u59833 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:932px;
  2732. top:121px;
  2733. width:14px;
  2734. height:10px;
  2735. display:flex;
  2736. }
  2737. #u59833 .text {
  2738. position:absolute;
  2739. align-self:center;
  2740. padding:2px 2px 2px 2px;
  2741. box-sizing:border-box;
  2742. width:100%;
  2743. }
  2744. #u59833_text {
  2745. border-width:0px;
  2746. word-wrap:break-word;
  2747. text-transform:none;
  2748. visibility:hidden;
  2749. }
  2750. #u59834_img {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:265px;
  2756. height:2px;
  2757. }
  2758. #u59834 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:678px;
  2762. top:196px;
  2763. width:264px;
  2764. height:1px;
  2765. display:flex;
  2766. }
  2767. #u59834 .text {
  2768. position:absolute;
  2769. align-self:center;
  2770. padding:2px 2px 2px 2px;
  2771. box-sizing:border-box;
  2772. width:100%;
  2773. }
  2774. #u59834_text {
  2775. border-width:0px;
  2776. word-wrap:break-word;
  2777. text-transform:none;
  2778. visibility:hidden;
  2779. }
  2780. #u59835_div {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:73px;
  2786. height:17px;
  2787. background:inherit;
  2788. background-color:rgba(255, 255, 255, 0);
  2789. border:none;
  2790. border-radius:0px;
  2791. -moz-box-shadow:none;
  2792. -webkit-box-shadow:none;
  2793. box-shadow:none;
  2794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2795. font-weight:400;
  2796. font-style:normal;
  2797. font-size:12px;
  2798. color:rgba(127, 127, 127, 0.996078431372549);
  2799. }
  2800. #u59835 {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:690px;
  2804. top:204px;
  2805. width:73px;
  2806. height:17px;
  2807. display:flex;
  2808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2809. font-weight:400;
  2810. font-style:normal;
  2811. font-size:12px;
  2812. color:rgba(127, 127, 127, 0.996078431372549);
  2813. }
  2814. #u59835 .text {
  2815. position:absolute;
  2816. align-self:flex-start;
  2817. padding:0px 0px 0px 0px;
  2818. box-sizing:border-box;
  2819. width:100%;
  2820. }
  2821. #u59835_text {
  2822. border-width:0px;
  2823. word-wrap:break-word;
  2824. text-transform:none;
  2825. }
  2826. #u59836_div {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:73px;
  2832. height:17px;
  2833. background:inherit;
  2834. background-color:rgba(255, 255, 255, 0);
  2835. border:none;
  2836. border-radius:0px;
  2837. -moz-box-shadow:none;
  2838. -webkit-box-shadow:none;
  2839. box-shadow:none;
  2840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2841. font-weight:400;
  2842. font-style:normal;
  2843. font-size:12px;
  2844. color:rgba(127, 127, 127, 0.996078431372549);
  2845. }
  2846. #u59836 {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:845px;
  2850. top:204px;
  2851. width:73px;
  2852. height:17px;
  2853. display:flex;
  2854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2855. font-weight:400;
  2856. font-style:normal;
  2857. font-size:12px;
  2858. color:rgba(127, 127, 127, 0.996078431372549);
  2859. }
  2860. #u59836 .text {
  2861. position:absolute;
  2862. align-self:flex-start;
  2863. padding:0px 0px 0px 0px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u59836_text {
  2868. border-width:0px;
  2869. word-wrap:break-word;
  2870. text-transform:none;
  2871. }
  2872. #u59837 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:0px;
  2878. height:0px;
  2879. }
  2880. #u59838_div {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:303px;
  2886. height:120px;
  2887. background:inherit;
  2888. background-color:rgba(255, 255, 255, 1);
  2889. border:none;
  2890. border-radius:0px;
  2891. -moz-box-shadow:none;
  2892. -webkit-box-shadow:none;
  2893. box-shadow:none;
  2894. font-family:'Microsoft YaHei', sans-serif;
  2895. font-weight:400;
  2896. font-style:normal;
  2897. }
  2898. #u59838 {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:961px;
  2902. top:107px;
  2903. width:303px;
  2904. height:120px;
  2905. display:flex;
  2906. font-family:'Microsoft YaHei', sans-serif;
  2907. font-weight:400;
  2908. font-style:normal;
  2909. }
  2910. #u59838 .text {
  2911. position:absolute;
  2912. align-self:center;
  2913. padding:2px 2px 2px 2px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u59838_div.selected {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:0px;
  2921. top:0px;
  2922. width:303px;
  2923. height:120px;
  2924. background:inherit;
  2925. background-color:rgba(255, 255, 255, 1);
  2926. border:none;
  2927. border-radius:0px;
  2928. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2929. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2930. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2931. font-family:'Microsoft YaHei', sans-serif;
  2932. font-weight:400;
  2933. font-style:normal;
  2934. }
  2935. #u59838.selected {
  2936. }
  2937. #u59838_text {
  2938. border-width:0px;
  2939. word-wrap:break-word;
  2940. text-transform:none;
  2941. visibility:hidden;
  2942. }
  2943. #u59839_div {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:0px;
  2947. top:0px;
  2948. width:112px;
  2949. height:17px;
  2950. background:inherit;
  2951. background-color:rgba(255, 255, 255, 0);
  2952. border:none;
  2953. border-radius:0px;
  2954. -moz-box-shadow:none;
  2955. -webkit-box-shadow:none;
  2956. box-shadow:none;
  2957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2958. font-weight:400;
  2959. font-style:normal;
  2960. font-size:12px;
  2961. color:rgba(51, 51, 51, 0.996078431372549);
  2962. }
  2963. #u59839 {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:987px;
  2967. top:117px;
  2968. width:112px;
  2969. height:17px;
  2970. display:flex;
  2971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2972. font-weight:400;
  2973. font-style:normal;
  2974. font-size:12px;
  2975. color:rgba(51, 51, 51, 0.996078431372549);
  2976. }
  2977. #u59839 .text {
  2978. position:absolute;
  2979. align-self:flex-start;
  2980. padding:0px 0px 0px 0px;
  2981. box-sizing:border-box;
  2982. width:100%;
  2983. }
  2984. #u59839_text {
  2985. border-width:0px;
  2986. word-wrap:break-word;
  2987. text-transform:none;
  2988. }
  2989. #u59840_div {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:58px;
  2995. height:34px;
  2996. background:inherit;
  2997. background-color:rgba(255, 255, 255, 0);
  2998. border:none;
  2999. border-radius:0px;
  3000. -moz-box-shadow:none;
  3001. -webkit-box-shadow:none;
  3002. box-shadow:none;
  3003. font-size:30px;
  3004. color:rgba(51, 51, 51, 0.996078431372549);
  3005. }
  3006. #u59840 {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:987px;
  3010. top:139px;
  3011. width:58px;
  3012. height:34px;
  3013. display:flex;
  3014. font-size:30px;
  3015. color:rgba(51, 51, 51, 0.996078431372549);
  3016. }
  3017. #u59840 .text {
  3018. position:absolute;
  3019. align-self:flex-start;
  3020. padding:0px 0px 0px 0px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u59840_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. }
  3029. #u59841_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:14px;
  3035. height:10px;
  3036. }
  3037. #u59841 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:1235px;
  3041. top:121px;
  3042. width:14px;
  3043. height:10px;
  3044. display:flex;
  3045. }
  3046. #u59841 .text {
  3047. position:absolute;
  3048. align-self:center;
  3049. padding:2px 2px 2px 2px;
  3050. box-sizing:border-box;
  3051. width:100%;
  3052. }
  3053. #u59841_text {
  3054. border-width:0px;
  3055. word-wrap:break-word;
  3056. text-transform:none;
  3057. visibility:hidden;
  3058. }
  3059. #u59842_img {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:265px;
  3065. height:2px;
  3066. }
  3067. #u59842 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:981px;
  3071. top:196px;
  3072. width:264px;
  3073. height:1px;
  3074. display:flex;
  3075. }
  3076. #u59842 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:2px 2px 2px 2px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u59842_text {
  3084. border-width:0px;
  3085. word-wrap:break-word;
  3086. text-transform:none;
  3087. visibility:hidden;
  3088. }
  3089. #u59843_div {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:90px;
  3095. height:17px;
  3096. background:inherit;
  3097. background-color:rgba(255, 255, 255, 0);
  3098. border:none;
  3099. border-radius:0px;
  3100. -moz-box-shadow:none;
  3101. -webkit-box-shadow:none;
  3102. box-shadow:none;
  3103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3104. font-weight:400;
  3105. font-style:normal;
  3106. font-size:12px;
  3107. color:rgba(127, 127, 127, 0.996078431372549);
  3108. }
  3109. #u59843 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:993px;
  3113. top:204px;
  3114. width:90px;
  3115. height:17px;
  3116. display:flex;
  3117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3118. font-weight:400;
  3119. font-style:normal;
  3120. font-size:12px;
  3121. color:rgba(127, 127, 127, 0.996078431372549);
  3122. }
  3123. #u59843 .text {
  3124. position:absolute;
  3125. align-self:flex-start;
  3126. padding:0px 0px 0px 0px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u59843_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. }
  3135. #u59844_div {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:90px;
  3141. height:17px;
  3142. background:inherit;
  3143. background-color:rgba(255, 255, 255, 0);
  3144. border:none;
  3145. border-radius:0px;
  3146. -moz-box-shadow:none;
  3147. -webkit-box-shadow:none;
  3148. box-shadow:none;
  3149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:12px;
  3153. }
  3154. #u59844 {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:1148px;
  3158. top:204px;
  3159. width:90px;
  3160. height:17px;
  3161. display:flex;
  3162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3163. font-weight:400;
  3164. font-style:normal;
  3165. font-size:12px;
  3166. }
  3167. #u59844 .text {
  3168. position:absolute;
  3169. align-self:flex-start;
  3170. padding:0px 0px 0px 0px;
  3171. box-sizing:border-box;
  3172. width:100%;
  3173. }
  3174. #u59844_text {
  3175. border-width:0px;
  3176. word-wrap:break-word;
  3177. text-transform:none;
  3178. }
  3179. #u59845 {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:0px;
  3185. height:0px;
  3186. }
  3187. #u59846_div {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:303px;
  3193. height:120px;
  3194. background:inherit;
  3195. background-color:rgba(255, 255, 255, 1);
  3196. border:none;
  3197. border-radius:0px;
  3198. -moz-box-shadow:none;
  3199. -webkit-box-shadow:none;
  3200. box-shadow:none;
  3201. font-family:'Microsoft YaHei', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. }
  3205. #u59846 {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:1265px;
  3209. top:107px;
  3210. width:303px;
  3211. height:120px;
  3212. display:flex;
  3213. font-family:'Microsoft YaHei', sans-serif;
  3214. font-weight:400;
  3215. font-style:normal;
  3216. }
  3217. #u59846 .text {
  3218. position:absolute;
  3219. align-self:center;
  3220. padding:2px 2px 2px 2px;
  3221. box-sizing:border-box;
  3222. width:100%;
  3223. }
  3224. #u59846_div.selected {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:303px;
  3230. height:120px;
  3231. background:inherit;
  3232. background-color:rgba(255, 255, 255, 1);
  3233. border:none;
  3234. border-radius:0px;
  3235. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3236. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3237. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3238. font-family:'Microsoft YaHei', sans-serif;
  3239. font-weight:400;
  3240. font-style:normal;
  3241. }
  3242. #u59846.selected {
  3243. }
  3244. #u59846_text {
  3245. border-width:0px;
  3246. word-wrap:break-word;
  3247. text-transform:none;
  3248. visibility:hidden;
  3249. }
  3250. #u59847_div {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:0px;
  3254. top:0px;
  3255. width:112px;
  3256. height:17px;
  3257. background:inherit;
  3258. background-color:rgba(255, 255, 255, 0);
  3259. border:none;
  3260. border-radius:0px;
  3261. -moz-box-shadow:none;
  3262. -webkit-box-shadow:none;
  3263. box-shadow:none;
  3264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3265. font-weight:400;
  3266. font-style:normal;
  3267. font-size:12px;
  3268. color:rgba(51, 51, 51, 0.996078431372549);
  3269. }
  3270. #u59847 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:1292px;
  3274. top:117px;
  3275. width:112px;
  3276. height:17px;
  3277. display:flex;
  3278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3279. font-weight:400;
  3280. font-style:normal;
  3281. font-size:12px;
  3282. color:rgba(51, 51, 51, 0.996078431372549);
  3283. }
  3284. #u59847 .text {
  3285. position:absolute;
  3286. align-self:flex-start;
  3287. padding:0px 0px 0px 0px;
  3288. box-sizing:border-box;
  3289. width:100%;
  3290. }
  3291. #u59847_text {
  3292. border-width:0px;
  3293. word-wrap:break-word;
  3294. text-transform:none;
  3295. }
  3296. #u59848_div {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:58px;
  3302. height:34px;
  3303. background:inherit;
  3304. background-color:rgba(255, 255, 255, 0);
  3305. border:none;
  3306. border-radius:0px;
  3307. -moz-box-shadow:none;
  3308. -webkit-box-shadow:none;
  3309. box-shadow:none;
  3310. font-size:30px;
  3311. color:rgba(51, 51, 51, 0.996078431372549);
  3312. }
  3313. #u59848 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:1292px;
  3317. top:139px;
  3318. width:58px;
  3319. height:34px;
  3320. display:flex;
  3321. font-size:30px;
  3322. color:rgba(51, 51, 51, 0.996078431372549);
  3323. }
  3324. #u59848 .text {
  3325. position:absolute;
  3326. align-self:flex-start;
  3327. padding:0px 0px 0px 0px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u59848_text {
  3332. border-width:0px;
  3333. word-wrap:break-word;
  3334. text-transform:none;
  3335. }
  3336. #u59849_img {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:14px;
  3342. height:10px;
  3343. }
  3344. #u59849 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:1539px;
  3348. top:121px;
  3349. width:14px;
  3350. height:10px;
  3351. display:flex;
  3352. }
  3353. #u59849 .text {
  3354. position:absolute;
  3355. align-self:center;
  3356. padding:2px 2px 2px 2px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u59849_text {
  3361. border-width:0px;
  3362. word-wrap:break-word;
  3363. text-transform:none;
  3364. visibility:hidden;
  3365. }
  3366. #u59850_img {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:0px;
  3370. top:0px;
  3371. width:265px;
  3372. height:2px;
  3373. }
  3374. #u59850 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:1285px;
  3378. top:196px;
  3379. width:264px;
  3380. height:1px;
  3381. display:flex;
  3382. }
  3383. #u59850 .text {
  3384. position:absolute;
  3385. align-self:center;
  3386. padding:2px 2px 2px 2px;
  3387. box-sizing:border-box;
  3388. width:100%;
  3389. }
  3390. #u59850_text {
  3391. border-width:0px;
  3392. word-wrap:break-word;
  3393. text-transform:none;
  3394. visibility:hidden;
  3395. }
  3396. #u59851_div {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:0px;
  3400. top:0px;
  3401. width:90px;
  3402. height:17px;
  3403. background:inherit;
  3404. background-color:rgba(255, 255, 255, 0);
  3405. border:none;
  3406. border-radius:0px;
  3407. -moz-box-shadow:none;
  3408. -webkit-box-shadow:none;
  3409. box-shadow:none;
  3410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3411. font-weight:400;
  3412. font-style:normal;
  3413. font-size:12px;
  3414. color:rgba(127, 127, 127, 0.996078431372549);
  3415. }
  3416. #u59851 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:1298px;
  3420. top:204px;
  3421. width:90px;
  3422. height:17px;
  3423. display:flex;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:12px;
  3428. color:rgba(127, 127, 127, 0.996078431372549);
  3429. }
  3430. #u59851 .text {
  3431. position:absolute;
  3432. align-self:flex-start;
  3433. padding:0px 0px 0px 0px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u59851_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. }
  3442. #u59852_div {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:0px;
  3446. top:0px;
  3447. width:90px;
  3448. height:17px;
  3449. background:inherit;
  3450. background-color:rgba(255, 255, 255, 0);
  3451. border:none;
  3452. border-radius:0px;
  3453. -moz-box-shadow:none;
  3454. -webkit-box-shadow:none;
  3455. box-shadow:none;
  3456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. font-size:12px;
  3460. }
  3461. #u59852 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:1452px;
  3465. top:204px;
  3466. width:90px;
  3467. height:17px;
  3468. display:flex;
  3469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:12px;
  3473. }
  3474. #u59852 .text {
  3475. position:absolute;
  3476. align-self:flex-start;
  3477. padding:0px 0px 0px 0px;
  3478. box-sizing:border-box;
  3479. width:100%;
  3480. }
  3481. #u59852_text {
  3482. border-width:0px;
  3483. word-wrap:break-word;
  3484. text-transform:none;
  3485. }
  3486. #u59853_img {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:1214px;
  3492. height:460px;
  3493. }
  3494. #u59853 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:354px;
  3498. top:247px;
  3499. width:1214px;
  3500. height:460px;
  3501. display:flex;
  3502. }
  3503. #u59853 .text {
  3504. position:absolute;
  3505. align-self:center;
  3506. padding:0px 0px 0px 0px;
  3507. box-sizing:border-box;
  3508. width:100%;
  3509. }
  3510. #u59853_text {
  3511. border-width:0px;
  3512. word-wrap:break-word;
  3513. text-transform:none;
  3514. visibility:hidden;
  3515. }
  3516. #u59854 {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:0px;
  3520. top:0px;
  3521. width:0px;
  3522. height:0px;
  3523. }
  3524. #u59855_img {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:280px;
  3530. height:6px;
  3531. }
  3532. #u59855p000 {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:-6px;
  3536. top:-1px;
  3537. width:12px;
  3538. height:6px;
  3539. -webkit-transform:rotate(90deg);
  3540. -moz-transform:rotate(90deg);
  3541. -ms-transform:rotate(90deg);
  3542. transform:rotate(90deg);
  3543. }
  3544. #u59855p000_img {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:12px;
  3550. height:6px;
  3551. }
  3552. #u59855p001 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:50px;
  3556. top:-1px;
  3557. width:12px;
  3558. height:6px;
  3559. -webkit-transform:rotate(90deg);
  3560. -moz-transform:rotate(90deg);
  3561. -ms-transform:rotate(90deg);
  3562. transform:rotate(90deg);
  3563. }
  3564. #u59855p001_img {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:12px;
  3570. height:6px;
  3571. }
  3572. #u59855p002 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:106px;
  3576. top:-1px;
  3577. width:12px;
  3578. height:6px;
  3579. -webkit-transform:rotate(90deg);
  3580. -moz-transform:rotate(90deg);
  3581. -ms-transform:rotate(90deg);
  3582. transform:rotate(90deg);
  3583. }
  3584. #u59855p002_img {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:12px;
  3590. height:6px;
  3591. }
  3592. #u59855p003 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:162px;
  3596. top:-1px;
  3597. width:10px;
  3598. height:6px;
  3599. -webkit-transform:rotate(90deg);
  3600. -moz-transform:rotate(90deg);
  3601. -ms-transform:rotate(90deg);
  3602. transform:rotate(90deg);
  3603. }
  3604. #u59855p003_img {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:10px;
  3610. height:6px;
  3611. }
  3612. #u59855p004 {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:218px;
  3616. top:-1px;
  3617. width:10px;
  3618. height:6px;
  3619. -webkit-transform:rotate(90deg);
  3620. -moz-transform:rotate(90deg);
  3621. -ms-transform:rotate(90deg);
  3622. transform:rotate(90deg);
  3623. }
  3624. #u59855p004_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:10px;
  3630. height:6px;
  3631. }
  3632. #u59855p005 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:274px;
  3636. top:-1px;
  3637. width:10px;
  3638. height:6px;
  3639. -webkit-transform:rotate(90deg);
  3640. -moz-transform:rotate(90deg);
  3641. -ms-transform:rotate(90deg);
  3642. transform:rotate(90deg);
  3643. }
  3644. #u59855p005_img {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:10px;
  3650. height:6px;
  3651. }
  3652. #u59855.compound {
  3653. width:0px;
  3654. height:0px;
  3655. }
  3656. #u59855 {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:442px;
  3660. top:639px;
  3661. width:279px;
  3662. height:5px;
  3663. display:flex;
  3664. opacity:0.619607843137255;
  3665. }
  3666. #u59855 .text {
  3667. position:absolute;
  3668. align-self:center;
  3669. padding:0px 0px 0px 0px;
  3670. box-sizing:border-box;
  3671. width:100%;
  3672. }
  3673. #u59855_text {
  3674. border-width:0px;
  3675. word-wrap:break-word;
  3676. text-transform:none;
  3677. visibility:hidden;
  3678. }
  3679. #u59856_div {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:26px;
  3685. height:16px;
  3686. background:inherit;
  3687. background-color:rgba(255, 255, 255, 0);
  3688. border:none;
  3689. border-radius:0px;
  3690. -moz-box-shadow:none;
  3691. -webkit-box-shadow:none;
  3692. box-shadow:none;
  3693. font-family:'Helvetica', sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:12px;
  3697. color:rgba(0, 0, 0, 0.996078431372549);
  3698. text-align:left;
  3699. }
  3700. #u59856 {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:437px;
  3704. top:650px;
  3705. width:26px;
  3706. height:16px;
  3707. display:flex;
  3708. font-family:'Helvetica', sans-serif;
  3709. font-weight:400;
  3710. font-style:normal;
  3711. font-size:12px;
  3712. color:rgba(0, 0, 0, 0.996078431372549);
  3713. text-align:left;
  3714. }
  3715. #u59856 .text {
  3716. position:absolute;
  3717. align-self:flex-start;
  3718. padding:0px 0px 0px 0px;
  3719. box-sizing:border-box;
  3720. width:100%;
  3721. }
  3722. #u59856_text {
  3723. border-width:0px;
  3724. word-wrap:break-word;
  3725. text-transform:none;
  3726. }
  3727. #u59857_div {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:0px;
  3731. top:0px;
  3732. width:26px;
  3733. height:16px;
  3734. background:inherit;
  3735. background-color:rgba(255, 255, 255, 0);
  3736. border:none;
  3737. border-radius:0px;
  3738. -moz-box-shadow:none;
  3739. -webkit-box-shadow:none;
  3740. box-shadow:none;
  3741. font-family:'Helvetica', sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. font-size:12px;
  3745. color:rgba(0, 0, 0, 0.996078431372549);
  3746. text-align:left;
  3747. }
  3748. #u59857 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:493px;
  3752. top:650px;
  3753. width:26px;
  3754. height:16px;
  3755. display:flex;
  3756. font-family:'Helvetica', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. font-size:12px;
  3760. color:rgba(0, 0, 0, 0.996078431372549);
  3761. text-align:left;
  3762. }
  3763. #u59857 .text {
  3764. position:absolute;
  3765. align-self:flex-start;
  3766. padding:0px 0px 0px 0px;
  3767. box-sizing:border-box;
  3768. width:100%;
  3769. }
  3770. #u59857_text {
  3771. border-width:0px;
  3772. word-wrap:break-word;
  3773. text-transform:none;
  3774. }
  3775. #u59858_div {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:0px;
  3779. top:0px;
  3780. width:26px;
  3781. height:16px;
  3782. background:inherit;
  3783. background-color:rgba(255, 255, 255, 0);
  3784. border:none;
  3785. border-radius:0px;
  3786. -moz-box-shadow:none;
  3787. -webkit-box-shadow:none;
  3788. box-shadow:none;
  3789. font-family:'Helvetica', sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. font-size:12px;
  3793. color:rgba(0, 0, 0, 0.996078431372549);
  3794. text-align:left;
  3795. }
  3796. #u59858 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:550px;
  3800. top:650px;
  3801. width:26px;
  3802. height:16px;
  3803. display:flex;
  3804. font-family:'Helvetica', sans-serif;
  3805. font-weight:400;
  3806. font-style:normal;
  3807. font-size:12px;
  3808. color:rgba(0, 0, 0, 0.996078431372549);
  3809. text-align:left;
  3810. }
  3811. #u59858 .text {
  3812. position:absolute;
  3813. align-self:flex-start;
  3814. padding:0px 0px 0px 0px;
  3815. box-sizing:border-box;
  3816. width:100%;
  3817. }
  3818. #u59858_text {
  3819. border-width:0px;
  3820. word-wrap:break-word;
  3821. text-transform:none;
  3822. }
  3823. #u59859_div {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:0px;
  3827. top:0px;
  3828. width:26px;
  3829. height:16px;
  3830. background:inherit;
  3831. background-color:rgba(255, 255, 255, 0);
  3832. border:none;
  3833. border-radius:0px;
  3834. -moz-box-shadow:none;
  3835. -webkit-box-shadow:none;
  3836. box-shadow:none;
  3837. font-family:'Helvetica', sans-serif;
  3838. font-weight:400;
  3839. font-style:normal;
  3840. font-size:12px;
  3841. color:rgba(0, 0, 0, 0.996078431372549);
  3842. text-align:left;
  3843. }
  3844. #u59859 {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:608px;
  3848. top:650px;
  3849. width:26px;
  3850. height:16px;
  3851. display:flex;
  3852. font-family:'Helvetica', sans-serif;
  3853. font-weight:400;
  3854. font-style:normal;
  3855. font-size:12px;
  3856. color:rgba(0, 0, 0, 0.996078431372549);
  3857. text-align:left;
  3858. }
  3859. #u59859 .text {
  3860. position:absolute;
  3861. align-self:flex-start;
  3862. padding:0px 0px 0px 0px;
  3863. box-sizing:border-box;
  3864. width:100%;
  3865. }
  3866. #u59859_text {
  3867. border-width:0px;
  3868. word-wrap:break-word;
  3869. text-transform:none;
  3870. }
  3871. #u59860_div {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:26px;
  3877. height:16px;
  3878. background:inherit;
  3879. background-color:rgba(255, 255, 255, 0);
  3880. border:none;
  3881. border-radius:0px;
  3882. -moz-box-shadow:none;
  3883. -webkit-box-shadow:none;
  3884. box-shadow:none;
  3885. font-family:'Helvetica', sans-serif;
  3886. font-weight:400;
  3887. font-style:normal;
  3888. font-size:12px;
  3889. color:rgba(0, 0, 0, 0.996078431372549);
  3890. text-align:left;
  3891. }
  3892. #u59860 {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:661px;
  3896. top:650px;
  3897. width:26px;
  3898. height:16px;
  3899. display:flex;
  3900. font-family:'Helvetica', sans-serif;
  3901. font-weight:400;
  3902. font-style:normal;
  3903. font-size:12px;
  3904. color:rgba(0, 0, 0, 0.996078431372549);
  3905. text-align:left;
  3906. }
  3907. #u59860 .text {
  3908. position:absolute;
  3909. align-self:flex-start;
  3910. padding:0px 0px 0px 0px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u59860_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. }
  3919. #u59861_div {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:26px;
  3925. height:16px;
  3926. background:inherit;
  3927. background-color:rgba(255, 255, 255, 0);
  3928. border:none;
  3929. border-radius:0px;
  3930. -moz-box-shadow:none;
  3931. -webkit-box-shadow:none;
  3932. box-shadow:none;
  3933. font-family:'Helvetica', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:12px;
  3937. color:rgba(0, 0, 0, 0.996078431372549);
  3938. text-align:left;
  3939. }
  3940. #u59861 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:717px;
  3944. top:650px;
  3945. width:26px;
  3946. height:16px;
  3947. display:flex;
  3948. font-family:'Helvetica', sans-serif;
  3949. font-weight:400;
  3950. font-style:normal;
  3951. font-size:12px;
  3952. color:rgba(0, 0, 0, 0.996078431372549);
  3953. text-align:left;
  3954. }
  3955. #u59861 .text {
  3956. position:absolute;
  3957. align-self:flex-start;
  3958. padding:0px 0px 0px 0px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u59861_text {
  3963. border-width:0px;
  3964. word-wrap:break-word;
  3965. text-transform:none;
  3966. }
  3967. #u59862_img {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:0px;
  3971. top:0px;
  3972. width:719px;
  3973. height:2px;
  3974. }
  3975. #u59862 {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:419px;
  3979. top:638px;
  3980. width:718px;
  3981. height:1px;
  3982. display:flex;
  3983. }
  3984. #u59862 .text {
  3985. position:absolute;
  3986. align-self:center;
  3987. padding:0px 0px 0px 0px;
  3988. box-sizing:border-box;
  3989. width:100%;
  3990. }
  3991. #u59862_text {
  3992. border-width:0px;
  3993. word-wrap:break-word;
  3994. text-transform:none;
  3995. visibility:hidden;
  3996. }
  3997. #u59863_img {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:719px;
  4003. height:2px;
  4004. }
  4005. #u59863 {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:419px;
  4009. top:578px;
  4010. width:718px;
  4011. height:1px;
  4012. display:flex;
  4013. }
  4014. #u59863 .text {
  4015. position:absolute;
  4016. align-self:center;
  4017. padding:0px 0px 0px 0px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u59863_text {
  4022. border-width:0px;
  4023. word-wrap:break-word;
  4024. text-transform:none;
  4025. visibility:hidden;
  4026. }
  4027. #u59864_img {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:719px;
  4033. height:2px;
  4034. }
  4035. #u59864 {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:419px;
  4039. top:516px;
  4040. width:718px;
  4041. height:1px;
  4042. display:flex;
  4043. }
  4044. #u59864 .text {
  4045. position:absolute;
  4046. align-self:center;
  4047. padding:0px 0px 0px 0px;
  4048. box-sizing:border-box;
  4049. width:100%;
  4050. }
  4051. #u59864_text {
  4052. border-width:0px;
  4053. word-wrap:break-word;
  4054. text-transform:none;
  4055. visibility:hidden;
  4056. }
  4057. #u59865_img {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:0px;
  4061. top:0px;
  4062. width:719px;
  4063. height:2px;
  4064. }
  4065. #u59865 {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:419px;
  4069. top:456px;
  4070. width:718px;
  4071. height:1px;
  4072. display:flex;
  4073. }
  4074. #u59865 .text {
  4075. position:absolute;
  4076. align-self:center;
  4077. padding:0px 0px 0px 0px;
  4078. box-sizing:border-box;
  4079. width:100%;
  4080. }
  4081. #u59865_text {
  4082. border-width:0px;
  4083. word-wrap:break-word;
  4084. text-transform:none;
  4085. visibility:hidden;
  4086. }
  4087. #u59866_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:719px;
  4093. height:2px;
  4094. }
  4095. #u59866 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:419px;
  4099. top:396px;
  4100. width:718px;
  4101. height:1px;
  4102. display:flex;
  4103. }
  4104. #u59866 .text {
  4105. position:absolute;
  4106. align-self:center;
  4107. padding:0px 0px 0px 0px;
  4108. box-sizing:border-box;
  4109. width:100%;
  4110. }
  4111. #u59866_text {
  4112. border-width:0px;
  4113. word-wrap:break-word;
  4114. text-transform:none;
  4115. visibility:hidden;
  4116. }
  4117. #u59867_div {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:5px;
  4123. height:16px;
  4124. background:inherit;
  4125. background-color:rgba(255, 255, 255, 0);
  4126. border:none;
  4127. border-radius:0px;
  4128. -moz-box-shadow:none;
  4129. -webkit-box-shadow:none;
  4130. box-shadow:none;
  4131. font-family:'Helvetica', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. font-size:12px;
  4135. color:rgba(0, 0, 0, 0.988235294117647);
  4136. text-align:left;
  4137. }
  4138. #u59867 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:410px;
  4142. top:632px;
  4143. width:5px;
  4144. height:16px;
  4145. display:flex;
  4146. font-family:'Helvetica', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:12px;
  4150. color:rgba(0, 0, 0, 0.988235294117647);
  4151. text-align:left;
  4152. }
  4153. #u59867 .text {
  4154. position:absolute;
  4155. align-self:flex-start;
  4156. padding:0px 0px 0px 0px;
  4157. box-sizing:border-box;
  4158. width:100%;
  4159. }
  4160. #u59867_text {
  4161. border-width:0px;
  4162. word-wrap:break-word;
  4163. text-transform:none;
  4164. }
  4165. #u59868_div {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:14px;
  4171. height:14px;
  4172. background:inherit;
  4173. background-color:rgba(255, 255, 255, 0);
  4174. border:none;
  4175. border-radius:0px;
  4176. -moz-box-shadow:none;
  4177. -webkit-box-shadow:none;
  4178. box-shadow:none;
  4179. font-family:'Helvetica', sans-serif;
  4180. font-weight:400;
  4181. font-style:normal;
  4182. font-size:12px;
  4183. color:rgba(0, 0, 0, 0.988235294117647);
  4184. text-align:left;
  4185. }
  4186. #u59868 {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:402px;
  4190. top:571px;
  4191. width:14px;
  4192. height:14px;
  4193. display:flex;
  4194. font-family:'Helvetica', sans-serif;
  4195. font-weight:400;
  4196. font-style:normal;
  4197. font-size:12px;
  4198. color:rgba(0, 0, 0, 0.988235294117647);
  4199. text-align:left;
  4200. }
  4201. #u59868 .text {
  4202. position:absolute;
  4203. align-self:flex-start;
  4204. padding:0px 0px 0px 0px;
  4205. box-sizing:border-box;
  4206. width:100%;
  4207. }
  4208. #u59868_text {
  4209. border-width:0px;
  4210. white-space:nowrap;
  4211. text-transform:none;
  4212. }
  4213. #u59869_div {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:21px;
  4219. height:14px;
  4220. background:inherit;
  4221. background-color:rgba(255, 255, 255, 0);
  4222. border:none;
  4223. border-radius:0px;
  4224. -moz-box-shadow:none;
  4225. -webkit-box-shadow:none;
  4226. box-shadow:none;
  4227. font-family:'Helvetica', sans-serif;
  4228. font-weight:400;
  4229. font-style:normal;
  4230. font-size:12px;
  4231. color:rgba(0, 0, 0, 0.988235294117647);
  4232. text-align:left;
  4233. }
  4234. #u59869 {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:402px;
  4238. top:511px;
  4239. width:21px;
  4240. height:14px;
  4241. display:flex;
  4242. font-family:'Helvetica', sans-serif;
  4243. font-weight:400;
  4244. font-style:normal;
  4245. font-size:12px;
  4246. color:rgba(0, 0, 0, 0.988235294117647);
  4247. text-align:left;
  4248. }
  4249. #u59869 .text {
  4250. position:absolute;
  4251. align-self:flex-start;
  4252. padding:0px 0px 0px 0px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u59869_text {
  4257. border-width:0px;
  4258. white-space:nowrap;
  4259. text-transform:none;
  4260. }
  4261. #u59870_div {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:0px;
  4265. top:0px;
  4266. width:21px;
  4267. height:14px;
  4268. background:inherit;
  4269. background-color:rgba(255, 255, 255, 0);
  4270. border:none;
  4271. border-radius:0px;
  4272. -moz-box-shadow:none;
  4273. -webkit-box-shadow:none;
  4274. box-shadow:none;
  4275. font-family:'Helvetica', sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:12px;
  4279. color:rgba(0, 0, 0, 0.988235294117647);
  4280. text-align:left;
  4281. }
  4282. #u59870 {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:402px;
  4286. top:449px;
  4287. width:21px;
  4288. height:14px;
  4289. display:flex;
  4290. font-family:'Helvetica', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:12px;
  4294. color:rgba(0, 0, 0, 0.988235294117647);
  4295. text-align:left;
  4296. }
  4297. #u59870 .text {
  4298. position:absolute;
  4299. align-self:flex-start;
  4300. padding:0px 0px 0px 0px;
  4301. box-sizing:border-box;
  4302. width:100%;
  4303. }
  4304. #u59870_text {
  4305. border-width:0px;
  4306. white-space:nowrap;
  4307. text-transform:none;
  4308. }
  4309. #u59871_div {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:0px;
  4313. top:0px;
  4314. width:21px;
  4315. height:14px;
  4316. background:inherit;
  4317. background-color:rgba(255, 255, 255, 0);
  4318. border:none;
  4319. border-radius:0px;
  4320. -moz-box-shadow:none;
  4321. -webkit-box-shadow:none;
  4322. box-shadow:none;
  4323. font-family:'Helvetica', sans-serif;
  4324. font-weight:400;
  4325. font-style:normal;
  4326. font-size:12px;
  4327. color:rgba(0, 0, 0, 0.988235294117647);
  4328. text-align:left;
  4329. }
  4330. #u59871 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:399px;
  4334. top:389px;
  4335. width:21px;
  4336. height:14px;
  4337. display:flex;
  4338. font-family:'Helvetica', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:12px;
  4342. color:rgba(0, 0, 0, 0.988235294117647);
  4343. text-align:left;
  4344. }
  4345. #u59871 .text {
  4346. position:absolute;
  4347. align-self:flex-start;
  4348. padding:0px 0px 0px 0px;
  4349. box-sizing:border-box;
  4350. width:100%;
  4351. }
  4352. #u59871_text {
  4353. border-width:0px;
  4354. white-space:nowrap;
  4355. text-transform:none;
  4356. }
  4357. #u59872_img {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:321px;
  4363. height:7px;
  4364. }
  4365. #u59872p000 {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:-6px;
  4369. top:0px;
  4370. width:12px;
  4371. height:6px;
  4372. -webkit-transform:rotate(90deg);
  4373. -moz-transform:rotate(90deg);
  4374. -ms-transform:rotate(90deg);
  4375. transform:rotate(90deg);
  4376. }
  4377. #u59872p000_img {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:12px;
  4383. height:6px;
  4384. }
  4385. #u59872p001 {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:58px;
  4389. top:0px;
  4390. width:12px;
  4391. height:6px;
  4392. -webkit-transform:rotate(90deg);
  4393. -moz-transform:rotate(90deg);
  4394. -ms-transform:rotate(90deg);
  4395. transform:rotate(90deg);
  4396. }
  4397. #u59872p001_img {
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:0px;
  4401. top:0px;
  4402. width:12px;
  4403. height:6px;
  4404. }
  4405. #u59872p002 {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:122px;
  4409. top:0px;
  4410. width:12px;
  4411. height:6px;
  4412. -webkit-transform:rotate(90deg);
  4413. -moz-transform:rotate(90deg);
  4414. -ms-transform:rotate(90deg);
  4415. transform:rotate(90deg);
  4416. }
  4417. #u59872p002_img {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:0px;
  4421. top:0px;
  4422. width:12px;
  4423. height:6px;
  4424. }
  4425. #u59872p003 {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:186px;
  4429. top:0px;
  4430. width:12px;
  4431. height:6px;
  4432. -webkit-transform:rotate(90deg);
  4433. -moz-transform:rotate(90deg);
  4434. -ms-transform:rotate(90deg);
  4435. transform:rotate(90deg);
  4436. }
  4437. #u59872p003_img {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:0px;
  4442. width:12px;
  4443. height:6px;
  4444. }
  4445. #u59872p004 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:250px;
  4449. top:0px;
  4450. width:12px;
  4451. height:6px;
  4452. -webkit-transform:rotate(90deg);
  4453. -moz-transform:rotate(90deg);
  4454. -ms-transform:rotate(90deg);
  4455. transform:rotate(90deg);
  4456. }
  4457. #u59872p004_img {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:0px;
  4461. top:0px;
  4462. width:12px;
  4463. height:6px;
  4464. }
  4465. #u59872p005 {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:314px;
  4469. top:0px;
  4470. width:12px;
  4471. height:6px;
  4472. -webkit-transform:rotate(90deg);
  4473. -moz-transform:rotate(90deg);
  4474. -ms-transform:rotate(90deg);
  4475. transform:rotate(90deg);
  4476. }
  4477. #u59872p005_img {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:0px;
  4481. top:0px;
  4482. width:12px;
  4483. height:6px;
  4484. }
  4485. #u59872.compound {
  4486. width:0px;
  4487. height:0px;
  4488. }
  4489. #u59872 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:778px;
  4493. top:638px;
  4494. width:320px;
  4495. height:6px;
  4496. display:flex;
  4497. opacity:0.2;
  4498. }
  4499. #u59872 .text {
  4500. position:absolute;
  4501. align-self:center;
  4502. padding:0px 0px 0px 0px;
  4503. box-sizing:border-box;
  4504. width:100%;
  4505. }
  4506. #u59872_text {
  4507. border-width:0px;
  4508. word-wrap:break-word;
  4509. text-transform:none;
  4510. visibility:hidden;
  4511. }
  4512. #u59873_div {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:0px;
  4516. top:0px;
  4517. width:26px;
  4518. height:16px;
  4519. background:inherit;
  4520. background-color:rgba(255, 255, 255, 0);
  4521. border:none;
  4522. border-radius:0px;
  4523. -moz-box-shadow:none;
  4524. -webkit-box-shadow:none;
  4525. box-shadow:none;
  4526. font-family:'Helvetica', sans-serif;
  4527. font-weight:400;
  4528. font-style:normal;
  4529. font-size:12px;
  4530. color:rgba(0, 0, 0, 0.996078431372549);
  4531. text-align:left;
  4532. }
  4533. #u59873 {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:775px;
  4537. top:650px;
  4538. width:26px;
  4539. height:16px;
  4540. display:flex;
  4541. font-family:'Helvetica', sans-serif;
  4542. font-weight:400;
  4543. font-style:normal;
  4544. font-size:12px;
  4545. color:rgba(0, 0, 0, 0.996078431372549);
  4546. text-align:left;
  4547. }
  4548. #u59873 .text {
  4549. position:absolute;
  4550. align-self:flex-start;
  4551. padding:0px 0px 0px 0px;
  4552. box-sizing:border-box;
  4553. width:100%;
  4554. }
  4555. #u59873_text {
  4556. border-width:0px;
  4557. word-wrap:break-word;
  4558. text-transform:none;
  4559. }
  4560. #u59874_div {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:0px;
  4564. top:0px;
  4565. width:26px;
  4566. height:16px;
  4567. background:inherit;
  4568. background-color:rgba(255, 255, 255, 0);
  4569. border:none;
  4570. border-radius:0px;
  4571. -moz-box-shadow:none;
  4572. -webkit-box-shadow:none;
  4573. box-shadow:none;
  4574. font-family:'Helvetica', sans-serif;
  4575. font-weight:400;
  4576. font-style:normal;
  4577. font-size:12px;
  4578. color:rgba(0, 0, 0, 0.996078431372549);
  4579. text-align:left;
  4580. }
  4581. #u59874 {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:837px;
  4585. top:650px;
  4586. width:26px;
  4587. height:16px;
  4588. display:flex;
  4589. font-family:'Helvetica', sans-serif;
  4590. font-weight:400;
  4591. font-style:normal;
  4592. font-size:12px;
  4593. color:rgba(0, 0, 0, 0.996078431372549);
  4594. text-align:left;
  4595. }
  4596. #u59874 .text {
  4597. position:absolute;
  4598. align-self:flex-start;
  4599. padding:0px 0px 0px 0px;
  4600. box-sizing:border-box;
  4601. width:100%;
  4602. }
  4603. #u59874_text {
  4604. border-width:0px;
  4605. word-wrap:break-word;
  4606. text-transform:none;
  4607. }
  4608. #u59875_div {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:0px;
  4612. top:0px;
  4613. width:26px;
  4614. height:16px;
  4615. background:inherit;
  4616. background-color:rgba(255, 255, 255, 0);
  4617. border:none;
  4618. border-radius:0px;
  4619. -moz-box-shadow:none;
  4620. -webkit-box-shadow:none;
  4621. box-shadow:none;
  4622. font-family:'Helvetica', sans-serif;
  4623. font-weight:400;
  4624. font-style:normal;
  4625. font-size:12px;
  4626. color:rgba(0, 0, 0, 0.996078431372549);
  4627. text-align:left;
  4628. }
  4629. #u59875 {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:898px;
  4633. top:650px;
  4634. width:26px;
  4635. height:16px;
  4636. display:flex;
  4637. font-family:'Helvetica', sans-serif;
  4638. font-weight:400;
  4639. font-style:normal;
  4640. font-size:12px;
  4641. color:rgba(0, 0, 0, 0.996078431372549);
  4642. text-align:left;
  4643. }
  4644. #u59875 .text {
  4645. position:absolute;
  4646. align-self:flex-start;
  4647. padding:0px 0px 0px 0px;
  4648. box-sizing:border-box;
  4649. width:100%;
  4650. }
  4651. #u59875_text {
  4652. border-width:0px;
  4653. word-wrap:break-word;
  4654. text-transform:none;
  4655. }
  4656. #u59876_div {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:0px;
  4660. top:0px;
  4661. width:26px;
  4662. height:16px;
  4663. background:inherit;
  4664. background-color:rgba(255, 255, 255, 0);
  4665. border:none;
  4666. border-radius:0px;
  4667. -moz-box-shadow:none;
  4668. -webkit-box-shadow:none;
  4669. box-shadow:none;
  4670. font-family:'Helvetica', sans-serif;
  4671. font-weight:400;
  4672. font-style:normal;
  4673. font-size:12px;
  4674. color:rgba(0, 0, 0, 0.996078431372549);
  4675. text-align:left;
  4676. }
  4677. #u59876 {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:964px;
  4681. top:650px;
  4682. width:26px;
  4683. height:16px;
  4684. display:flex;
  4685. font-family:'Helvetica', sans-serif;
  4686. font-weight:400;
  4687. font-style:normal;
  4688. font-size:12px;
  4689. color:rgba(0, 0, 0, 0.996078431372549);
  4690. text-align:left;
  4691. }
  4692. #u59876 .text {
  4693. position:absolute;
  4694. align-self:flex-start;
  4695. padding:0px 0px 0px 0px;
  4696. box-sizing:border-box;
  4697. width:100%;
  4698. }
  4699. #u59876_text {
  4700. border-width:0px;
  4701. word-wrap:break-word;
  4702. text-transform:none;
  4703. }
  4704. #u59877_div {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:0px;
  4708. top:0px;
  4709. width:26px;
  4710. height:16px;
  4711. background:inherit;
  4712. background-color:rgba(255, 255, 255, 0);
  4713. border:none;
  4714. border-radius:0px;
  4715. -moz-box-shadow:none;
  4716. -webkit-box-shadow:none;
  4717. box-shadow:none;
  4718. font-family:'Helvetica', sans-serif;
  4719. font-weight:400;
  4720. font-style:normal;
  4721. font-size:12px;
  4722. color:rgba(0, 0, 0, 0.996078431372549);
  4723. text-align:left;
  4724. }
  4725. #u59877 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:1026px;
  4729. top:650px;
  4730. width:26px;
  4731. height:16px;
  4732. display:flex;
  4733. font-family:'Helvetica', sans-serif;
  4734. font-weight:400;
  4735. font-style:normal;
  4736. font-size:12px;
  4737. color:rgba(0, 0, 0, 0.996078431372549);
  4738. text-align:left;
  4739. }
  4740. #u59877 .text {
  4741. position:absolute;
  4742. align-self:flex-start;
  4743. padding:0px 0px 0px 0px;
  4744. box-sizing:border-box;
  4745. width:100%;
  4746. }
  4747. #u59877_text {
  4748. border-width:0px;
  4749. word-wrap:break-word;
  4750. text-transform:none;
  4751. }
  4752. #u59878_div {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:26px;
  4758. height:16px;
  4759. background:inherit;
  4760. background-color:rgba(255, 255, 255, 0);
  4761. border:none;
  4762. border-radius:0px;
  4763. -moz-box-shadow:none;
  4764. -webkit-box-shadow:none;
  4765. box-shadow:none;
  4766. font-family:'Helvetica', sans-serif;
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:12px;
  4770. color:rgba(0, 0, 0, 0.996078431372549);
  4771. text-align:left;
  4772. }
  4773. #u59878 {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:1090px;
  4777. top:650px;
  4778. width:26px;
  4779. height:16px;
  4780. display:flex;
  4781. font-family:'Helvetica', sans-serif;
  4782. font-weight:400;
  4783. font-style:normal;
  4784. font-size:12px;
  4785. color:rgba(0, 0, 0, 0.996078431372549);
  4786. text-align:left;
  4787. }
  4788. #u59878 .text {
  4789. position:absolute;
  4790. align-self:flex-start;
  4791. padding:0px 0px 0px 0px;
  4792. box-sizing:border-box;
  4793. width:100%;
  4794. }
  4795. #u59878_text {
  4796. border-width:0px;
  4797. word-wrap:break-word;
  4798. text-transform:none;
  4799. }
  4800. #u59879 {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:0px;
  4804. top:0px;
  4805. width:0px;
  4806. height:0px;
  4807. }
  4808. #u59880_img {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:0px;
  4812. top:0px;
  4813. width:2px;
  4814. height:254px;
  4815. }
  4816. #u59880 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:666px;
  4820. top:381px;
  4821. width:1px;
  4822. height:253px;
  4823. display:flex;
  4824. }
  4825. #u59880 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:2px 2px 2px 2px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u59880_text {
  4833. border-width:0px;
  4834. word-wrap:break-word;
  4835. text-transform:none;
  4836. visibility:hidden;
  4837. }
  4838. #u59881_div {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:73px;
  4844. height:17px;
  4845. background:inherit;
  4846. background-color:rgba(255, 255, 255, 0);
  4847. border:none;
  4848. border-radius:0px;
  4849. -moz-box-shadow:none;
  4850. -webkit-box-shadow:none;
  4851. box-shadow:none;
  4852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4853. font-weight:400;
  4854. font-style:normal;
  4855. font-size:12px;
  4856. color:#555555;
  4857. text-align:left;
  4858. }
  4859. #u59881 {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:394px;
  4863. top:335px;
  4864. width:73px;
  4865. height:17px;
  4866. display:flex;
  4867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4868. font-weight:400;
  4869. font-style:normal;
  4870. font-size:12px;
  4871. color:#555555;
  4872. text-align:left;
  4873. }
  4874. #u59881 .text {
  4875. position:absolute;
  4876. align-self:flex-start;
  4877. padding:0px 0px 0px 0px;
  4878. box-sizing:border-box;
  4879. width:100%;
  4880. }
  4881. #u59881_text {
  4882. border-width:0px;
  4883. white-space:nowrap;
  4884. text-transform:none;
  4885. }
  4886. #u59882 {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:0px;
  4890. top:0px;
  4891. width:0px;
  4892. height:0px;
  4893. }
  4894. #u59883_img {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:-2px;
  4898. top:-2px;
  4899. width:74px;
  4900. height:54px;
  4901. }
  4902. #u59883 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:662px;
  4906. top:481px;
  4907. width:64px;
  4908. height:44px;
  4909. display:flex;
  4910. font-family:'微软雅黑', sans-serif;
  4911. font-weight:400;
  4912. font-style:normal;
  4913. font-size:12px;
  4914. color:#4B4D53;
  4915. }
  4916. #u59883 .text {
  4917. position:absolute;
  4918. align-self:center;
  4919. padding:2px 2px 2px 2px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u59883_text {
  4924. border-width:0px;
  4925. word-wrap:break-word;
  4926. text-transform:none;
  4927. visibility:hidden;
  4928. }
  4929. #u59884_div {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:52px;
  4935. height:17px;
  4936. background:inherit;
  4937. background-color:rgba(255, 255, 255, 0);
  4938. border:none;
  4939. border-radius:0px;
  4940. -moz-box-shadow:none;
  4941. -webkit-box-shadow:none;
  4942. box-shadow:none;
  4943. font-size:12px;
  4944. color:#4B4D53;
  4945. }
  4946. #u59884 {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:670px;
  4950. top:492px;
  4951. width:52px;
  4952. height:17px;
  4953. display:flex;
  4954. font-size:12px;
  4955. color:#4B4D53;
  4956. }
  4957. #u59884 .text {
  4958. position:absolute;
  4959. align-self:flex-start;
  4960. padding:0px 0px 0px 0px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u59884_text {
  4965. border-width:0px;
  4966. white-space:nowrap;
  4967. text-transform:none;
  4968. }
  4969. #u59885 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:0px;
  4975. height:0px;
  4976. }
  4977. #u59886_img {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:0px;
  4981. top:0px;
  4982. width:9px;
  4983. height:10px;
  4984. }
  4985. #u59886 {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:839px;
  4989. top:356px;
  4990. width:9px;
  4991. height:10px;
  4992. display:flex;
  4993. }
  4994. #u59886 .text {
  4995. position:absolute;
  4996. align-self:center;
  4997. padding:2px 2px 2px 2px;
  4998. box-sizing:border-box;
  4999. width:100%;
  5000. }
  5001. #u59886_text {
  5002. border-width:0px;
  5003. word-wrap:break-word;
  5004. text-transform:none;
  5005. visibility:hidden;
  5006. }
  5007. #u59887_div {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:0px;
  5011. top:0px;
  5012. width:61px;
  5013. height:17px;
  5014. background:inherit;
  5015. background-color:rgba(255, 255, 255, 0);
  5016. border:none;
  5017. border-radius:0px;
  5018. -moz-box-shadow:none;
  5019. -webkit-box-shadow:none;
  5020. box-shadow:none;
  5021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:12px;
  5025. color:#4B4D53;
  5026. }
  5027. #u59887 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:855px;
  5031. top:351px;
  5032. width:61px;
  5033. height:17px;
  5034. display:flex;
  5035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5036. font-weight:400;
  5037. font-style:normal;
  5038. font-size:12px;
  5039. color:#4B4D53;
  5040. }
  5041. #u59887 .text {
  5042. position:absolute;
  5043. align-self:flex-start;
  5044. padding:0px 0px 0px 0px;
  5045. box-sizing:border-box;
  5046. width:100%;
  5047. }
  5048. #u59887_text {
  5049. border-width:0px;
  5050. white-space:nowrap;
  5051. text-transform:none;
  5052. }
  5053. #u59888 {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:0px;
  5057. top:0px;
  5058. width:0px;
  5059. height:0px;
  5060. }
  5061. #u59889_img {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:0px;
  5065. top:0px;
  5066. width:9px;
  5067. height:10px;
  5068. }
  5069. #u59889 {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:929px;
  5073. top:356px;
  5074. width:9px;
  5075. height:10px;
  5076. display:flex;
  5077. }
  5078. #u59889 .text {
  5079. position:absolute;
  5080. align-self:center;
  5081. padding:2px 2px 2px 2px;
  5082. box-sizing:border-box;
  5083. width:100%;
  5084. }
  5085. #u59889_text {
  5086. border-width:0px;
  5087. word-wrap:break-word;
  5088. text-transform:none;
  5089. visibility:hidden;
  5090. }
  5091. #u59890_div {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:49px;
  5097. height:17px;
  5098. background:inherit;
  5099. background-color:rgba(255, 255, 255, 0);
  5100. border:none;
  5101. border-radius:0px;
  5102. -moz-box-shadow:none;
  5103. -webkit-box-shadow:none;
  5104. box-shadow:none;
  5105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5106. font-weight:400;
  5107. font-style:normal;
  5108. font-size:12px;
  5109. color:#4B4D53;
  5110. }
  5111. #u59890 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:945px;
  5115. top:351px;
  5116. width:49px;
  5117. height:17px;
  5118. display:flex;
  5119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:12px;
  5123. color:#4B4D53;
  5124. }
  5125. #u59890 .text {
  5126. position:absolute;
  5127. align-self:flex-start;
  5128. padding:0px 0px 0px 0px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u59890_text {
  5133. border-width:0px;
  5134. white-space:nowrap;
  5135. text-transform:none;
  5136. }
  5137. #u59891 {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:0px;
  5143. height:0px;
  5144. }
  5145. #u59892_img {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:9px;
  5151. height:10px;
  5152. }
  5153. #u59892 {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:1008px;
  5157. top:356px;
  5158. width:9px;
  5159. height:10px;
  5160. display:flex;
  5161. }
  5162. #u59892 .text {
  5163. position:absolute;
  5164. align-self:center;
  5165. padding:2px 2px 2px 2px;
  5166. box-sizing:border-box;
  5167. width:100%;
  5168. }
  5169. #u59892_text {
  5170. border-width:0px;
  5171. word-wrap:break-word;
  5172. text-transform:none;
  5173. visibility:hidden;
  5174. }
  5175. #u59893_div {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:0px;
  5179. top:0px;
  5180. width:49px;
  5181. height:17px;
  5182. background:inherit;
  5183. background-color:rgba(255, 255, 255, 0);
  5184. border:none;
  5185. border-radius:0px;
  5186. -moz-box-shadow:none;
  5187. -webkit-box-shadow:none;
  5188. box-shadow:none;
  5189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:12px;
  5193. color:#4B4D53;
  5194. }
  5195. #u59893 {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:1024px;
  5199. top:351px;
  5200. width:49px;
  5201. height:17px;
  5202. display:flex;
  5203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. font-size:12px;
  5207. color:#4B4D53;
  5208. }
  5209. #u59893 .text {
  5210. position:absolute;
  5211. align-self:flex-start;
  5212. padding:0px 0px 0px 0px;
  5213. box-sizing:border-box;
  5214. width:100%;
  5215. }
  5216. #u59893_text {
  5217. border-width:0px;
  5218. white-space:nowrap;
  5219. text-transform:none;
  5220. }
  5221. #u59894_div {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:0px;
  5226. width:7px;
  5227. height:139px;
  5228. background:inherit;
  5229. background-color:rgba(245, 197, 35, 1);
  5230. border:none;
  5231. border-radius:0px;
  5232. -moz-box-shadow:none;
  5233. -webkit-box-shadow:none;
  5234. box-shadow:none;
  5235. }
  5236. #u59894 {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:439px;
  5240. top:501px;
  5241. width:7px;
  5242. height:139px;
  5243. display:flex;
  5244. }
  5245. #u59894 .text {
  5246. position:absolute;
  5247. align-self:center;
  5248. padding:2px 2px 2px 2px;
  5249. box-sizing:border-box;
  5250. width:100%;
  5251. }
  5252. #u59894_text {
  5253. border-width:0px;
  5254. word-wrap:break-word;
  5255. text-transform:none;
  5256. visibility:hidden;
  5257. }
  5258. #u59895 {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:0px;
  5264. height:0px;
  5265. }
  5266. #u59896_img {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:9px;
  5272. height:10px;
  5273. }
  5274. #u59896 {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:1087px;
  5278. top:356px;
  5279. width:9px;
  5280. height:10px;
  5281. display:flex;
  5282. }
  5283. #u59896 .text {
  5284. position:absolute;
  5285. align-self:center;
  5286. padding:2px 2px 2px 2px;
  5287. box-sizing:border-box;
  5288. width:100%;
  5289. }
  5290. #u59896_text {
  5291. border-width:0px;
  5292. word-wrap:break-word;
  5293. text-transform:none;
  5294. visibility:hidden;
  5295. }
  5296. #u59897_div {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:37px;
  5302. height:17px;
  5303. background:inherit;
  5304. background-color:rgba(255, 255, 255, 0);
  5305. border:none;
  5306. border-radius:0px;
  5307. -moz-box-shadow:none;
  5308. -webkit-box-shadow:none;
  5309. box-shadow:none;
  5310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5311. font-weight:400;
  5312. font-style:normal;
  5313. font-size:12px;
  5314. color:#4B4D53;
  5315. }
  5316. #u59897 {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:1103px;
  5320. top:351px;
  5321. width:37px;
  5322. height:17px;
  5323. display:flex;
  5324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5325. font-weight:400;
  5326. font-style:normal;
  5327. font-size:12px;
  5328. color:#4B4D53;
  5329. }
  5330. #u59897 .text {
  5331. position:absolute;
  5332. align-self:flex-start;
  5333. padding:0px 0px 0px 0px;
  5334. box-sizing:border-box;
  5335. width:100%;
  5336. }
  5337. #u59897_text {
  5338. border-width:0px;
  5339. white-space:nowrap;
  5340. text-transform:none;
  5341. }
  5342. #u59898_div {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:0px;
  5346. top:0px;
  5347. width:60px;
  5348. height:30px;
  5349. background:inherit;
  5350. background-color:rgba(51, 51, 51, 1);
  5351. box-sizing:border-box;
  5352. border-width:1px;
  5353. border-style:solid;
  5354. border-color:rgba(215, 215, 215, 1);
  5355. border-radius:0px;
  5356. -moz-box-shadow:none;
  5357. -webkit-box-shadow:none;
  5358. box-shadow:none;
  5359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5360. font-weight:400;
  5361. font-style:normal;
  5362. font-size:14px;
  5363. color:#FFFFFF;
  5364. text-align:center;
  5365. line-height:30px;
  5366. }
  5367. #u59898 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:1358px;
  5371. top:268px;
  5372. width:60px;
  5373. height:30px;
  5374. display:flex;
  5375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5376. font-weight:400;
  5377. font-style:normal;
  5378. font-size:14px;
  5379. color:#FFFFFF;
  5380. text-align:center;
  5381. line-height:30px;
  5382. }
  5383. #u59898 .text {
  5384. position:absolute;
  5385. align-self:flex-start;
  5386. padding:0px 0px 0px 0px;
  5387. box-sizing:border-box;
  5388. width:100%;
  5389. }
  5390. #u59898_text {
  5391. border-width:0px;
  5392. word-wrap:break-word;
  5393. text-transform:none;
  5394. }
  5395. #u59899_div {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:0px;
  5399. top:0px;
  5400. width:60px;
  5401. height:30px;
  5402. background:inherit;
  5403. background-color:rgba(255, 255, 255, 0);
  5404. box-sizing:border-box;
  5405. border-width:1px;
  5406. border-style:solid;
  5407. border-color:rgba(215, 215, 215, 1);
  5408. border-radius:0px;
  5409. -moz-box-shadow:none;
  5410. -webkit-box-shadow:none;
  5411. box-shadow:none;
  5412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5413. font-weight:400;
  5414. font-style:normal;
  5415. font-size:14px;
  5416. text-align:center;
  5417. line-height:30px;
  5418. }
  5419. #u59899 {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:1299px;
  5423. top:268px;
  5424. width:60px;
  5425. height:30px;
  5426. display:flex;
  5427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5428. font-weight:400;
  5429. font-style:normal;
  5430. font-size:14px;
  5431. text-align:center;
  5432. line-height:30px;
  5433. }
  5434. #u59899 .text {
  5435. position:absolute;
  5436. align-self:flex-start;
  5437. padding:0px 0px 0px 0px;
  5438. box-sizing:border-box;
  5439. width:100%;
  5440. }
  5441. #u59899_text {
  5442. border-width:0px;
  5443. word-wrap:break-word;
  5444. text-transform:none;
  5445. }
  5446. #u59900 {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:0px;
  5450. top:0px;
  5451. width:0px;
  5452. height:0px;
  5453. }
  5454. #u59901_div {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:140px;
  5460. height:30px;
  5461. background:inherit;
  5462. background-color:rgba(255, 255, 255, 1);
  5463. box-sizing:border-box;
  5464. border-width:1px;
  5465. border-style:solid;
  5466. border-color:rgba(201, 201, 201, 1);
  5467. border-radius:0px;
  5468. -moz-box-shadow:none;
  5469. -webkit-box-shadow:none;
  5470. box-shadow:none;
  5471. font-family:'Microsoft YaHei', sans-serif;
  5472. font-weight:400;
  5473. font-style:normal;
  5474. font-size:14px;
  5475. color:#CCCCCC;
  5476. text-align:left;
  5477. }
  5478. #u59901 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:1428px;
  5482. top:268px;
  5483. width:140px;
  5484. height:30px;
  5485. display:flex;
  5486. font-family:'Microsoft YaHei', sans-serif;
  5487. font-weight:400;
  5488. font-style:normal;
  5489. font-size:14px;
  5490. color:#CCCCCC;
  5491. text-align:left;
  5492. }
  5493. #u59901 .text {
  5494. position:absolute;
  5495. align-self:center;
  5496. padding:2px 8px 2px 8px;
  5497. box-sizing:border-box;
  5498. width:100%;
  5499. }
  5500. #u59901_text {
  5501. border-width:0px;
  5502. word-wrap:break-word;
  5503. text-transform:none;
  5504. visibility:hidden;
  5505. }
  5506. #u59902_input {
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:113px;
  5511. height:27px;
  5512. padding:2px 2px 2px 2px;
  5513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5514. font-weight:400;
  5515. font-style:normal;
  5516. font-size:12px;
  5517. letter-spacing:normal;
  5518. color:#000000;
  5519. vertical-align:none;
  5520. text-align:left;
  5521. text-transform:none;
  5522. background-color:transparent;
  5523. border-color:transparent;
  5524. }
  5525. #u59902_input.disabled {
  5526. position:absolute;
  5527. left:0px;
  5528. top:0px;
  5529. width:113px;
  5530. height:27px;
  5531. padding:2px 2px 2px 2px;
  5532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5533. font-weight:400;
  5534. font-style:normal;
  5535. font-size:12px;
  5536. letter-spacing:normal;
  5537. color:#000000;
  5538. vertical-align:none;
  5539. text-align:left;
  5540. text-transform:none;
  5541. background-color:transparent;
  5542. border-color:transparent;
  5543. }
  5544. #u59902_div {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:0px;
  5548. top:0px;
  5549. width:113px;
  5550. height:27px;
  5551. background:inherit;
  5552. background-color:rgba(255, 255, 255, 1);
  5553. border:none;
  5554. border-radius:0px;
  5555. -moz-box-shadow:none;
  5556. -webkit-box-shadow:none;
  5557. box-shadow:none;
  5558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5559. font-weight:400;
  5560. font-style:normal;
  5561. font-size:12px;
  5562. }
  5563. #u59902 {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:1433px;
  5567. top:269px;
  5568. width:113px;
  5569. height:27px;
  5570. display:flex;
  5571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5572. font-weight:400;
  5573. font-style:normal;
  5574. font-size:12px;
  5575. }
  5576. #u59902 .text {
  5577. position:absolute;
  5578. align-self:center;
  5579. padding:2px 2px 2px 2px;
  5580. box-sizing:border-box;
  5581. width:100%;
  5582. }
  5583. #u59902_div.disabled {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:0px;
  5587. top:0px;
  5588. width:113px;
  5589. height:27px;
  5590. background:inherit;
  5591. background-color:rgba(240, 240, 240, 1);
  5592. border:none;
  5593. border-radius:0px;
  5594. -moz-box-shadow:none;
  5595. -webkit-box-shadow:none;
  5596. box-shadow:none;
  5597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5598. font-weight:400;
  5599. font-style:normal;
  5600. font-size:12px;
  5601. }
  5602. #u59902.disabled {
  5603. }
  5604. #u59903_img {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:0px;
  5608. top:0px;
  5609. width:13px;
  5610. height:13px;
  5611. }
  5612. #u59903 {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:1549px;
  5616. top:277px;
  5617. width:13px;
  5618. height:13px;
  5619. display:flex;
  5620. }
  5621. #u59903 .text {
  5622. position:absolute;
  5623. align-self:center;
  5624. padding:2px 2px 2px 2px;
  5625. box-sizing:border-box;
  5626. width:100%;
  5627. }
  5628. #u59903_text {
  5629. border-width:0px;
  5630. word-wrap:break-word;
  5631. text-transform:none;
  5632. visibility:hidden;
  5633. }
  5634. #u59904_div {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:0px;
  5638. top:0px;
  5639. width:109px;
  5640. height:25px;
  5641. background:inherit;
  5642. background-color:rgba(255, 255, 255, 0);
  5643. border:none;
  5644. border-radius:0px;
  5645. -moz-box-shadow:none;
  5646. -webkit-box-shadow:none;
  5647. box-shadow:none;
  5648. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5649. font-weight:650;
  5650. font-style:normal;
  5651. }
  5652. #u59904 {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:380px;
  5656. top:268px;
  5657. width:109px;
  5658. height:25px;
  5659. display:flex;
  5660. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5661. font-weight:650;
  5662. font-style:normal;
  5663. }
  5664. #u59904 .text {
  5665. position:absolute;
  5666. align-self:flex-start;
  5667. padding:0px 0px 0px 0px;
  5668. box-sizing:border-box;
  5669. width:100%;
  5670. }
  5671. #u59904_text {
  5672. border-width:0px;
  5673. white-space:nowrap;
  5674. text-transform:none;
  5675. }
  5676. #u59905_img {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:1215px;
  5682. height:2px;
  5683. }
  5684. #u59905 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:354px;
  5688. top:308px;
  5689. width:1214px;
  5690. height:1px;
  5691. display:flex;
  5692. }
  5693. #u59905 .text {
  5694. position:absolute;
  5695. align-self:center;
  5696. padding:2px 2px 2px 2px;
  5697. box-sizing:border-box;
  5698. width:100%;
  5699. }
  5700. #u59905_text {
  5701. border-width:0px;
  5702. word-wrap:break-word;
  5703. text-transform:none;
  5704. visibility:hidden;
  5705. }
  5706. #u59906_div {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:145px;
  5712. height:25px;
  5713. background:inherit;
  5714. background-color:rgba(255, 255, 255, 0);
  5715. border:none;
  5716. border-radius:0px;
  5717. -moz-box-shadow:none;
  5718. -webkit-box-shadow:none;
  5719. box-shadow:none;
  5720. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5721. font-weight:650;
  5722. font-style:normal;
  5723. }
  5724. #u59906 {
  5725. border-width:0px;
  5726. position:absolute;
  5727. left:1182px;
  5728. top:345px;
  5729. width:145px;
  5730. height:25px;
  5731. display:flex;
  5732. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5733. font-weight:650;
  5734. font-style:normal;
  5735. }
  5736. #u59906 .text {
  5737. position:absolute;
  5738. align-self:flex-start;
  5739. padding:0px 0px 0px 0px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u59906_text {
  5744. border-width:0px;
  5745. white-space:nowrap;
  5746. text-transform:none;
  5747. }
  5748. #u59907 {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:0px;
  5754. height:0px;
  5755. }
  5756. #u59908_div {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:0px;
  5760. top:0px;
  5761. width:382px;
  5762. height:50px;
  5763. background:inherit;
  5764. background-color:rgba(255, 255, 255, 1);
  5765. box-sizing:border-box;
  5766. border-width:1px;
  5767. border-style:solid;
  5768. border-color:rgba(215, 215, 215, 1);
  5769. border-left:0px;
  5770. border-right:0px;
  5771. border-radius:0px;
  5772. border-top-left-radius:0px;
  5773. border-top-right-radius:0px;
  5774. border-bottom-right-radius:0px;
  5775. border-bottom-left-radius:0px;
  5776. -moz-box-shadow:none;
  5777. -webkit-box-shadow:none;
  5778. box-shadow:none;
  5779. font-family:'Microsoft YaHei', sans-serif;
  5780. font-weight:400;
  5781. font-style:normal;
  5782. }
  5783. #u59908 {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:1186px;
  5787. top:382px;
  5788. width:382px;
  5789. height:50px;
  5790. display:flex;
  5791. font-family:'Microsoft YaHei', sans-serif;
  5792. font-weight:400;
  5793. font-style:normal;
  5794. }
  5795. #u59908 .text {
  5796. position:absolute;
  5797. align-self:center;
  5798. padding:2px 2px 2px 2px;
  5799. box-sizing:border-box;
  5800. width:100%;
  5801. }
  5802. #u59908_div.selected {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:382px;
  5808. height:50px;
  5809. background:inherit;
  5810. background-color:rgba(255, 255, 255, 1);
  5811. box-sizing:border-box;
  5812. border-width:1px;
  5813. border-style:solid;
  5814. border-color:rgba(24, 144, 255, 1);
  5815. border-left:0px;
  5816. border-right:0px;
  5817. border-radius:0px;
  5818. border-top-left-radius:0px;
  5819. border-top-right-radius:0px;
  5820. border-bottom-right-radius:0px;
  5821. border-bottom-left-radius:0px;
  5822. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5823. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5824. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5825. font-family:'Microsoft YaHei', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. }
  5829. #u59908.selected {
  5830. }
  5831. #u59908_text {
  5832. border-width:0px;
  5833. word-wrap:break-word;
  5834. text-transform:none;
  5835. visibility:hidden;
  5836. }
  5837. #u59909_div {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:37px;
  5843. height:25px;
  5844. background:inherit;
  5845. background-color:rgba(255, 255, 255, 0);
  5846. border:none;
  5847. border-radius:0px;
  5848. -moz-box-shadow:none;
  5849. -webkit-box-shadow:none;
  5850. box-shadow:none;
  5851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5852. font-weight:400;
  5853. font-style:normal;
  5854. }
  5855. #u59909 {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:1244px;
  5859. top:394px;
  5860. width:37px;
  5861. height:25px;
  5862. display:flex;
  5863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5864. font-weight:400;
  5865. font-style:normal;
  5866. }
  5867. #u59909 .text {
  5868. position:absolute;
  5869. align-self:flex-start;
  5870. padding:0px 0px 0px 0px;
  5871. box-sizing:border-box;
  5872. width:100%;
  5873. }
  5874. #u59909_text {
  5875. border-width:0px;
  5876. white-space:nowrap;
  5877. text-transform:none;
  5878. }
  5879. #u59910_img {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:0px;
  5883. top:0px;
  5884. width:20px;
  5885. height:20px;
  5886. }
  5887. #u59910 {
  5888. border-width:0px;
  5889. position:absolute;
  5890. left:1203px;
  5891. top:397px;
  5892. width:20px;
  5893. height:20px;
  5894. display:flex;
  5895. font-size:12px;
  5896. color:#FFFFFF;
  5897. }
  5898. #u59910 .text {
  5899. position:absolute;
  5900. align-self:center;
  5901. padding:2px 2px 2px 2px;
  5902. box-sizing:border-box;
  5903. width:100%;
  5904. }
  5905. #u59910_text {
  5906. border-width:0px;
  5907. word-wrap:break-word;
  5908. text-transform:none;
  5909. }
  5910. #u59911_div {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:0px;
  5914. top:0px;
  5915. width:23px;
  5916. height:25px;
  5917. background:inherit;
  5918. background-color:rgba(255, 255, 255, 0);
  5919. border:none;
  5920. border-radius:0px;
  5921. -moz-box-shadow:none;
  5922. -webkit-box-shadow:none;
  5923. box-shadow:none;
  5924. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5925. font-weight:500;
  5926. font-style:normal;
  5927. }
  5928. #u59911 {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:1334px;
  5932. top:394px;
  5933. width:23px;
  5934. height:25px;
  5935. display:flex;
  5936. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5937. font-weight:500;
  5938. font-style:normal;
  5939. }
  5940. #u59911 .text {
  5941. position:absolute;
  5942. align-self:flex-start;
  5943. padding:0px 0px 0px 0px;
  5944. box-sizing:border-box;
  5945. width:100%;
  5946. }
  5947. #u59911_text {
  5948. border-width:0px;
  5949. white-space:nowrap;
  5950. text-transform:none;
  5951. }
  5952. #u59912 {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:0px;
  5958. height:0px;
  5959. }
  5960. #u59913_div {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:382px;
  5966. height:50px;
  5967. background:inherit;
  5968. background-color:rgba(255, 255, 255, 1);
  5969. box-sizing:border-box;
  5970. border-width:1px;
  5971. border-style:solid;
  5972. border-color:rgba(215, 215, 215, 1);
  5973. border-left:0px;
  5974. border-right:0px;
  5975. border-radius:0px;
  5976. border-top-left-radius:0px;
  5977. border-top-right-radius:0px;
  5978. border-bottom-right-radius:0px;
  5979. border-bottom-left-radius:0px;
  5980. -moz-box-shadow:none;
  5981. -webkit-box-shadow:none;
  5982. box-shadow:none;
  5983. font-family:'Microsoft YaHei', sans-serif;
  5984. font-weight:400;
  5985. font-style:normal;
  5986. }
  5987. #u59913 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:1186px;
  5991. top:431px;
  5992. width:382px;
  5993. height:50px;
  5994. display:flex;
  5995. font-family:'Microsoft YaHei', sans-serif;
  5996. font-weight:400;
  5997. font-style:normal;
  5998. }
  5999. #u59913 .text {
  6000. position:absolute;
  6001. align-self:center;
  6002. padding:2px 2px 2px 2px;
  6003. box-sizing:border-box;
  6004. width:100%;
  6005. }
  6006. #u59913_div.selected {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:382px;
  6012. height:50px;
  6013. background:inherit;
  6014. background-color:rgba(255, 255, 255, 1);
  6015. box-sizing:border-box;
  6016. border-width:1px;
  6017. border-style:solid;
  6018. border-color:rgba(24, 144, 255, 1);
  6019. border-left:0px;
  6020. border-right:0px;
  6021. border-radius:0px;
  6022. border-top-left-radius:0px;
  6023. border-top-right-radius:0px;
  6024. border-bottom-right-radius:0px;
  6025. border-bottom-left-radius:0px;
  6026. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6027. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6028. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6029. font-family:'Microsoft YaHei', sans-serif;
  6030. font-weight:400;
  6031. font-style:normal;
  6032. }
  6033. #u59913.selected {
  6034. }
  6035. #u59913_text {
  6036. border-width:0px;
  6037. word-wrap:break-word;
  6038. text-transform:none;
  6039. visibility:hidden;
  6040. }
  6041. #u59914_div {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:55px;
  6047. height:25px;
  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. }
  6059. #u59914 {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:1244px;
  6063. top:443px;
  6064. width:55px;
  6065. height:25px;
  6066. display:flex;
  6067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6068. font-weight:400;
  6069. font-style:normal;
  6070. }
  6071. #u59914 .text {
  6072. position:absolute;
  6073. align-self:flex-start;
  6074. padding:0px 0px 0px 0px;
  6075. box-sizing:border-box;
  6076. width:100%;
  6077. }
  6078. #u59914_text {
  6079. border-width:0px;
  6080. white-space:nowrap;
  6081. text-transform:none;
  6082. }
  6083. #u59915_img {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:0px;
  6087. top:0px;
  6088. width:20px;
  6089. height:20px;
  6090. }
  6091. #u59915 {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:1203px;
  6095. top:446px;
  6096. width:20px;
  6097. height:20px;
  6098. display:flex;
  6099. font-size:12px;
  6100. color:#FFFFFF;
  6101. }
  6102. #u59915 .text {
  6103. position:absolute;
  6104. align-self:center;
  6105. padding:2px 2px 2px 2px;
  6106. box-sizing:border-box;
  6107. width:100%;
  6108. }
  6109. #u59915_text {
  6110. border-width:0px;
  6111. word-wrap:break-word;
  6112. text-transform:none;
  6113. }
  6114. #u59916_div {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:19px;
  6120. height:25px;
  6121. background:inherit;
  6122. background-color:rgba(255, 255, 255, 0);
  6123. border:none;
  6124. border-radius:0px;
  6125. -moz-box-shadow:none;
  6126. -webkit-box-shadow:none;
  6127. box-shadow:none;
  6128. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6129. font-weight:500;
  6130. font-style:normal;
  6131. }
  6132. #u59916 {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:1334px;
  6136. top:443px;
  6137. width:19px;
  6138. height:25px;
  6139. display:flex;
  6140. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6141. font-weight:500;
  6142. font-style:normal;
  6143. }
  6144. #u59916 .text {
  6145. position:absolute;
  6146. align-self:flex-start;
  6147. padding:0px 0px 0px 0px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u59916_text {
  6152. border-width:0px;
  6153. white-space:nowrap;
  6154. text-transform:none;
  6155. }
  6156. #u59917 {
  6157. border-width:0px;
  6158. position:absolute;
  6159. left:0px;
  6160. top:0px;
  6161. width:0px;
  6162. height:0px;
  6163. }
  6164. #u59918_div {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:0px;
  6168. top:0px;
  6169. width:382px;
  6170. height:50px;
  6171. background:inherit;
  6172. background-color:rgba(255, 255, 255, 1);
  6173. box-sizing:border-box;
  6174. border-width:1px;
  6175. border-style:solid;
  6176. border-color:rgba(215, 215, 215, 1);
  6177. border-left:0px;
  6178. border-right:0px;
  6179. border-radius:0px;
  6180. border-top-left-radius:0px;
  6181. border-top-right-radius:0px;
  6182. border-bottom-right-radius:0px;
  6183. border-bottom-left-radius:0px;
  6184. -moz-box-shadow:none;
  6185. -webkit-box-shadow:none;
  6186. box-shadow:none;
  6187. font-family:'Microsoft YaHei', sans-serif;
  6188. font-weight:400;
  6189. font-style:normal;
  6190. }
  6191. #u59918 {
  6192. border-width:0px;
  6193. position:absolute;
  6194. left:1186px;
  6195. top:480px;
  6196. width:382px;
  6197. height:50px;
  6198. display:flex;
  6199. font-family:'Microsoft YaHei', sans-serif;
  6200. font-weight:400;
  6201. font-style:normal;
  6202. }
  6203. #u59918 .text {
  6204. position:absolute;
  6205. align-self:center;
  6206. padding:2px 2px 2px 2px;
  6207. box-sizing:border-box;
  6208. width:100%;
  6209. }
  6210. #u59918_div.selected {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:0px;
  6214. top:0px;
  6215. width:382px;
  6216. height:50px;
  6217. background:inherit;
  6218. background-color:rgba(255, 255, 255, 1);
  6219. box-sizing:border-box;
  6220. border-width:1px;
  6221. border-style:solid;
  6222. border-color:rgba(24, 144, 255, 1);
  6223. border-left:0px;
  6224. border-right:0px;
  6225. border-radius:0px;
  6226. border-top-left-radius:0px;
  6227. border-top-right-radius:0px;
  6228. border-bottom-right-radius:0px;
  6229. border-bottom-left-radius:0px;
  6230. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6231. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6232. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6233. font-family:'Microsoft YaHei', sans-serif;
  6234. font-weight:400;
  6235. font-style:normal;
  6236. }
  6237. #u59918.selected {
  6238. }
  6239. #u59918_text {
  6240. border-width:0px;
  6241. word-wrap:break-word;
  6242. text-transform:none;
  6243. visibility:hidden;
  6244. }
  6245. #u59919_div {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:55px;
  6251. height:25px;
  6252. background:inherit;
  6253. background-color:rgba(255, 255, 255, 0);
  6254. border:none;
  6255. border-radius:0px;
  6256. -moz-box-shadow:none;
  6257. -webkit-box-shadow:none;
  6258. box-shadow:none;
  6259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. }
  6263. #u59919 {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:1244px;
  6267. top:492px;
  6268. width:55px;
  6269. height:25px;
  6270. display:flex;
  6271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6272. font-weight:400;
  6273. font-style:normal;
  6274. }
  6275. #u59919 .text {
  6276. position:absolute;
  6277. align-self:flex-start;
  6278. padding:0px 0px 0px 0px;
  6279. box-sizing:border-box;
  6280. width:100%;
  6281. }
  6282. #u59919_text {
  6283. border-width:0px;
  6284. white-space:nowrap;
  6285. text-transform:none;
  6286. }
  6287. #u59920_img {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:0px;
  6291. top:0px;
  6292. width:20px;
  6293. height:20px;
  6294. }
  6295. #u59920 {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:1203px;
  6299. top:495px;
  6300. width:20px;
  6301. height:20px;
  6302. display:flex;
  6303. font-size:12px;
  6304. color:#FFFFFF;
  6305. }
  6306. #u59920 .text {
  6307. position:absolute;
  6308. align-self:center;
  6309. padding:2px 2px 2px 2px;
  6310. box-sizing:border-box;
  6311. width:100%;
  6312. }
  6313. #u59920_text {
  6314. border-width:0px;
  6315. word-wrap:break-word;
  6316. text-transform:none;
  6317. }
  6318. #u59921_div {
  6319. border-width:0px;
  6320. position:absolute;
  6321. left:0px;
  6322. top:0px;
  6323. width:18px;
  6324. height:25px;
  6325. background:inherit;
  6326. background-color:rgba(255, 255, 255, 0);
  6327. border:none;
  6328. border-radius:0px;
  6329. -moz-box-shadow:none;
  6330. -webkit-box-shadow:none;
  6331. box-shadow:none;
  6332. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6333. font-weight:500;
  6334. font-style:normal;
  6335. }
  6336. #u59921 {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:1334px;
  6340. top:492px;
  6341. width:18px;
  6342. height:25px;
  6343. display:flex;
  6344. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6345. font-weight:500;
  6346. font-style:normal;
  6347. }
  6348. #u59921 .text {
  6349. position:absolute;
  6350. align-self:flex-start;
  6351. padding:0px 0px 0px 0px;
  6352. box-sizing:border-box;
  6353. width:100%;
  6354. }
  6355. #u59921_text {
  6356. border-width:0px;
  6357. white-space:nowrap;
  6358. text-transform:none;
  6359. }
  6360. #u59922 {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:0px;
  6364. top:0px;
  6365. width:0px;
  6366. height:0px;
  6367. }
  6368. #u59923_div {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:0px;
  6372. top:0px;
  6373. width:382px;
  6374. height:50px;
  6375. background:inherit;
  6376. background-color:rgba(255, 255, 255, 1);
  6377. box-sizing:border-box;
  6378. border-width:1px;
  6379. border-style:solid;
  6380. border-color:rgba(215, 215, 215, 1);
  6381. border-left:0px;
  6382. border-right:0px;
  6383. border-radius:0px;
  6384. border-top-left-radius:0px;
  6385. border-top-right-radius:0px;
  6386. border-bottom-right-radius:0px;
  6387. border-bottom-left-radius:0px;
  6388. -moz-box-shadow:none;
  6389. -webkit-box-shadow:none;
  6390. box-shadow:none;
  6391. font-family:'Microsoft YaHei', sans-serif;
  6392. font-weight:400;
  6393. font-style:normal;
  6394. }
  6395. #u59923 {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:1186px;
  6399. top:530px;
  6400. width:382px;
  6401. height:50px;
  6402. display:flex;
  6403. font-family:'Microsoft YaHei', sans-serif;
  6404. font-weight:400;
  6405. font-style:normal;
  6406. }
  6407. #u59923 .text {
  6408. position:absolute;
  6409. align-self:center;
  6410. padding:2px 2px 2px 2px;
  6411. box-sizing:border-box;
  6412. width:100%;
  6413. }
  6414. #u59923_div.selected {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:382px;
  6420. height:50px;
  6421. background:inherit;
  6422. background-color:rgba(255, 255, 255, 1);
  6423. box-sizing:border-box;
  6424. border-width:1px;
  6425. border-style:solid;
  6426. border-color:rgba(24, 144, 255, 1);
  6427. border-left:0px;
  6428. border-right:0px;
  6429. border-radius:0px;
  6430. border-top-left-radius:0px;
  6431. border-top-right-radius:0px;
  6432. border-bottom-right-radius:0px;
  6433. border-bottom-left-radius:0px;
  6434. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6435. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6436. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6437. font-family:'Microsoft YaHei', sans-serif;
  6438. font-weight:400;
  6439. font-style:normal;
  6440. }
  6441. #u59923.selected {
  6442. }
  6443. #u59923_text {
  6444. border-width:0px;
  6445. word-wrap:break-word;
  6446. text-transform:none;
  6447. visibility:hidden;
  6448. }
  6449. #u59924_div {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:55px;
  6455. height:25px;
  6456. background:inherit;
  6457. background-color:rgba(255, 255, 255, 0);
  6458. border:none;
  6459. border-radius:0px;
  6460. -moz-box-shadow:none;
  6461. -webkit-box-shadow:none;
  6462. box-shadow:none;
  6463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. }
  6467. #u59924 {
  6468. border-width:0px;
  6469. position:absolute;
  6470. left:1244px;
  6471. top:542px;
  6472. width:55px;
  6473. height:25px;
  6474. display:flex;
  6475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. }
  6479. #u59924 .text {
  6480. position:absolute;
  6481. align-self:flex-start;
  6482. padding:0px 0px 0px 0px;
  6483. box-sizing:border-box;
  6484. width:100%;
  6485. }
  6486. #u59924_text {
  6487. border-width:0px;
  6488. white-space:nowrap;
  6489. text-transform:none;
  6490. }
  6491. #u59925_img {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:0px;
  6495. top:0px;
  6496. width:20px;
  6497. height:20px;
  6498. }
  6499. #u59925 {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:1203px;
  6503. top:545px;
  6504. width:20px;
  6505. height:20px;
  6506. display:flex;
  6507. font-size:12px;
  6508. color:#FFFFFF;
  6509. }
  6510. #u59925 .text {
  6511. position:absolute;
  6512. align-self:center;
  6513. padding:2px 2px 2px 2px;
  6514. box-sizing:border-box;
  6515. width:100%;
  6516. }
  6517. #u59925_text {
  6518. border-width:0px;
  6519. word-wrap:break-word;
  6520. text-transform:none;
  6521. }
  6522. #u59926_div {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:19px;
  6528. height:25px;
  6529. background:inherit;
  6530. background-color:rgba(255, 255, 255, 0);
  6531. border:none;
  6532. border-radius:0px;
  6533. -moz-box-shadow:none;
  6534. -webkit-box-shadow:none;
  6535. box-shadow:none;
  6536. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6537. font-weight:500;
  6538. font-style:normal;
  6539. }
  6540. #u59926 {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:1334px;
  6544. top:542px;
  6545. width:19px;
  6546. height:25px;
  6547. display:flex;
  6548. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6549. font-weight:500;
  6550. font-style:normal;
  6551. }
  6552. #u59926 .text {
  6553. position:absolute;
  6554. align-self:flex-start;
  6555. padding:0px 0px 0px 0px;
  6556. box-sizing:border-box;
  6557. width:100%;
  6558. }
  6559. #u59926_text {
  6560. border-width:0px;
  6561. white-space:nowrap;
  6562. text-transform:none;
  6563. }
  6564. #u59927 {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:0px;
  6568. top:0px;
  6569. width:0px;
  6570. height:0px;
  6571. }
  6572. #u59928_div {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:382px;
  6578. height:50px;
  6579. background:inherit;
  6580. background-color:rgba(255, 255, 255, 1);
  6581. box-sizing:border-box;
  6582. border-width:1px;
  6583. border-style:solid;
  6584. border-color:rgba(215, 215, 215, 1);
  6585. border-left:0px;
  6586. border-right:0px;
  6587. border-radius:0px;
  6588. border-top-left-radius:0px;
  6589. border-top-right-radius:0px;
  6590. border-bottom-right-radius:0px;
  6591. border-bottom-left-radius:0px;
  6592. -moz-box-shadow:none;
  6593. -webkit-box-shadow:none;
  6594. box-shadow:none;
  6595. font-family:'Microsoft YaHei', sans-serif;
  6596. font-weight:400;
  6597. font-style:normal;
  6598. }
  6599. #u59928 {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:1186px;
  6603. top:580px;
  6604. width:382px;
  6605. height:50px;
  6606. display:flex;
  6607. font-family:'Microsoft YaHei', sans-serif;
  6608. font-weight:400;
  6609. font-style:normal;
  6610. }
  6611. #u59928 .text {
  6612. position:absolute;
  6613. align-self:center;
  6614. padding:2px 2px 2px 2px;
  6615. box-sizing:border-box;
  6616. width:100%;
  6617. }
  6618. #u59928_div.selected {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:382px;
  6624. height:50px;
  6625. background:inherit;
  6626. background-color:rgba(255, 255, 255, 1);
  6627. box-sizing:border-box;
  6628. border-width:1px;
  6629. border-style:solid;
  6630. border-color:rgba(24, 144, 255, 1);
  6631. border-left:0px;
  6632. border-right:0px;
  6633. border-radius:0px;
  6634. border-top-left-radius:0px;
  6635. border-top-right-radius:0px;
  6636. border-bottom-right-radius:0px;
  6637. border-bottom-left-radius:0px;
  6638. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6639. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6640. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6641. font-family:'Microsoft YaHei', sans-serif;
  6642. font-weight:400;
  6643. font-style:normal;
  6644. }
  6645. #u59928.selected {
  6646. }
  6647. #u59928_text {
  6648. border-width:0px;
  6649. word-wrap:break-word;
  6650. text-transform:none;
  6651. visibility:hidden;
  6652. }
  6653. #u59929_div {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:37px;
  6659. height:25px;
  6660. background:inherit;
  6661. background-color:rgba(255, 255, 255, 0);
  6662. border:none;
  6663. border-radius:0px;
  6664. -moz-box-shadow:none;
  6665. -webkit-box-shadow:none;
  6666. box-shadow:none;
  6667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6668. font-weight:400;
  6669. font-style:normal;
  6670. }
  6671. #u59929 {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:1244px;
  6675. top:592px;
  6676. width:37px;
  6677. height:25px;
  6678. display:flex;
  6679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6680. font-weight:400;
  6681. font-style:normal;
  6682. }
  6683. #u59929 .text {
  6684. position:absolute;
  6685. align-self:flex-start;
  6686. padding:0px 0px 0px 0px;
  6687. box-sizing:border-box;
  6688. width:100%;
  6689. }
  6690. #u59929_text {
  6691. border-width:0px;
  6692. white-space:nowrap;
  6693. text-transform:none;
  6694. }
  6695. #u59930_img {
  6696. border-width:0px;
  6697. position:absolute;
  6698. left:0px;
  6699. top:0px;
  6700. width:20px;
  6701. height:20px;
  6702. }
  6703. #u59930 {
  6704. border-width:0px;
  6705. position:absolute;
  6706. left:1203px;
  6707. top:595px;
  6708. width:20px;
  6709. height:20px;
  6710. display:flex;
  6711. font-size:12px;
  6712. color:#FFFFFF;
  6713. }
  6714. #u59930 .text {
  6715. position:absolute;
  6716. align-self:center;
  6717. padding:2px 2px 2px 2px;
  6718. box-sizing:border-box;
  6719. width:100%;
  6720. }
  6721. #u59930_text {
  6722. border-width:0px;
  6723. word-wrap:break-word;
  6724. text-transform:none;
  6725. }
  6726. #u59931_div {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:0px;
  6731. width:19px;
  6732. height:25px;
  6733. background:inherit;
  6734. background-color:rgba(255, 255, 255, 0);
  6735. border:none;
  6736. border-radius:0px;
  6737. -moz-box-shadow:none;
  6738. -webkit-box-shadow:none;
  6739. box-shadow:none;
  6740. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6741. font-weight:500;
  6742. font-style:normal;
  6743. }
  6744. #u59931 {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:1334px;
  6748. top:592px;
  6749. width:19px;
  6750. height:25px;
  6751. display:flex;
  6752. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6753. font-weight:500;
  6754. font-style:normal;
  6755. }
  6756. #u59931 .text {
  6757. position:absolute;
  6758. align-self:flex-start;
  6759. padding:0px 0px 0px 0px;
  6760. box-sizing:border-box;
  6761. width:100%;
  6762. }
  6763. #u59931_text {
  6764. border-width:0px;
  6765. white-space:nowrap;
  6766. text-transform:none;
  6767. }
  6768. #u59932 {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:0px;
  6772. top:0px;
  6773. width:0px;
  6774. height:0px;
  6775. }
  6776. #u59933 {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:0px;
  6780. top:0px;
  6781. width:0px;
  6782. height:0px;
  6783. }
  6784. #u59934_div {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:0px;
  6788. top:0px;
  6789. width:31px;
  6790. height:30px;
  6791. background:inherit;
  6792. background-color:rgba(255, 255, 255, 1);
  6793. box-sizing:border-box;
  6794. border-width:1px;
  6795. border-style:solid;
  6796. border-color:rgba(228, 228, 228, 1);
  6797. border-radius:4px;
  6798. -moz-box-shadow:none;
  6799. -webkit-box-shadow:none;
  6800. box-shadow:none;
  6801. font-family:'Microsoft YaHei', sans-serif;
  6802. font-weight:400;
  6803. font-style:normal;
  6804. font-size:12px;
  6805. }
  6806. #u59934 {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:1497px;
  6810. top:645px;
  6811. width:31px;
  6812. height:30px;
  6813. display:flex;
  6814. font-family:'Microsoft YaHei', sans-serif;
  6815. font-weight:400;
  6816. font-style:normal;
  6817. font-size:12px;
  6818. }
  6819. #u59934 .text {
  6820. position:absolute;
  6821. align-self:center;
  6822. padding:2px 2px 2px 2px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u59934_text {
  6827. border-width:0px;
  6828. word-wrap:break-word;
  6829. text-transform:none;
  6830. visibility:hidden;
  6831. }
  6832. #u59935_img {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:0px;
  6836. top:0px;
  6837. width:8px;
  6838. height:14px;
  6839. }
  6840. #u59935 {
  6841. border-width:0px;
  6842. position:absolute;
  6843. left:1509px;
  6844. top:653px;
  6845. width:8px;
  6846. height:14px;
  6847. display:flex;
  6848. font-family:'Microsoft YaHei', sans-serif;
  6849. font-weight:400;
  6850. font-style:normal;
  6851. font-size:12px;
  6852. }
  6853. #u59935 .text {
  6854. position:absolute;
  6855. align-self:center;
  6856. padding:2px 2px 2px 2px;
  6857. box-sizing:border-box;
  6858. width:100%;
  6859. }
  6860. #u59935_text {
  6861. border-width:0px;
  6862. word-wrap:break-word;
  6863. text-transform:none;
  6864. visibility:hidden;
  6865. }
  6866. #u59936 {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:0px;
  6870. top:0px;
  6871. width:0px;
  6872. height:0px;
  6873. }
  6874. #u59937_div {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:31px;
  6880. height:30px;
  6881. background:inherit;
  6882. background-color:rgba(255, 255, 255, 1);
  6883. box-sizing:border-box;
  6884. border-width:1px;
  6885. border-style:solid;
  6886. border-color:rgba(228, 228, 228, 1);
  6887. border-radius:4px;
  6888. -moz-box-shadow:none;
  6889. -webkit-box-shadow:none;
  6890. box-shadow:none;
  6891. font-family:'Microsoft YaHei', sans-serif;
  6892. font-weight:400;
  6893. font-style:normal;
  6894. font-size:12px;
  6895. }
  6896. #u59937 {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:1537px;
  6900. top:645px;
  6901. width:31px;
  6902. height:30px;
  6903. display:flex;
  6904. font-family:'Microsoft YaHei', sans-serif;
  6905. font-weight:400;
  6906. font-style:normal;
  6907. font-size:12px;
  6908. }
  6909. #u59937 .text {
  6910. position:absolute;
  6911. align-self:center;
  6912. padding:2px 2px 2px 2px;
  6913. box-sizing:border-box;
  6914. width:100%;
  6915. }
  6916. #u59937_text {
  6917. border-width:0px;
  6918. word-wrap:break-word;
  6919. text-transform:none;
  6920. visibility:hidden;
  6921. }
  6922. #u59938_img {
  6923. border-width:0px;
  6924. position:absolute;
  6925. left:0px;
  6926. top:0px;
  6927. width:8px;
  6928. height:14px;
  6929. }
  6930. #u59938 {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:1550px;
  6934. top:653px;
  6935. width:8px;
  6936. height:14px;
  6937. display:flex;
  6938. font-family:'Microsoft YaHei', sans-serif;
  6939. font-weight:400;
  6940. font-style:normal;
  6941. font-size:12px;
  6942. }
  6943. #u59938 .text {
  6944. position:absolute;
  6945. align-self:center;
  6946. padding:2px 2px 2px 2px;
  6947. box-sizing:border-box;
  6948. width:100%;
  6949. }
  6950. #u59938_text {
  6951. border-width:0px;
  6952. word-wrap:break-word;
  6953. text-transform:none;
  6954. visibility:hidden;
  6955. }
  6956. #u59939_img {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:596px;
  6962. height:413px;
  6963. }
  6964. #u59939 {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:354px;
  6968. top:727px;
  6969. width:596px;
  6970. height:413px;
  6971. display:flex;
  6972. }
  6973. #u59939 .text {
  6974. position:absolute;
  6975. align-self:center;
  6976. padding:0px 0px 0px 0px;
  6977. box-sizing:border-box;
  6978. width:100%;
  6979. }
  6980. #u59939_text {
  6981. border-width:0px;
  6982. word-wrap:break-word;
  6983. text-transform:none;
  6984. visibility:hidden;
  6985. }
  6986. #u59940_div {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:0px;
  6990. top:0px;
  6991. width:163px;
  6992. height:25px;
  6993. background:inherit;
  6994. background-color:rgba(255, 255, 255, 0);
  6995. border:none;
  6996. border-radius:0px;
  6997. -moz-box-shadow:none;
  6998. -webkit-box-shadow:none;
  6999. box-shadow:none;
  7000. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7001. font-weight:650;
  7002. font-style:normal;
  7003. }
  7004. #u59940 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:380px;
  7008. top:750px;
  7009. width:163px;
  7010. height:25px;
  7011. display:flex;
  7012. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7013. font-weight:650;
  7014. font-style:normal;
  7015. }
  7016. #u59940 .text {
  7017. position:absolute;
  7018. align-self:flex-start;
  7019. padding:0px 0px 0px 0px;
  7020. box-sizing:border-box;
  7021. width:100%;
  7022. }
  7023. #u59940_text {
  7024. border-width:0px;
  7025. white-space:nowrap;
  7026. text-transform:none;
  7027. }
  7028. #u59941 {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:380px;
  7032. top:795px;
  7033. width:544px;
  7034. height:300px;
  7035. }
  7036. #u59942_img {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:0px;
  7040. top:0px;
  7041. width:124px;
  7042. height:50px;
  7043. }
  7044. #u59942 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:0px;
  7048. top:0px;
  7049. width:124px;
  7050. height:50px;
  7051. display:flex;
  7052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7053. font-weight:400;
  7054. font-style:normal;
  7055. font-size:18px;
  7056. color:#FFFFFF;
  7057. }
  7058. #u59942 .text {
  7059. position:absolute;
  7060. align-self:center;
  7061. padding:2px 2px 2px 2px;
  7062. box-sizing:border-box;
  7063. width:100%;
  7064. }
  7065. #u59942_text {
  7066. border-width:0px;
  7067. word-wrap:break-word;
  7068. text-transform:none;
  7069. }
  7070. #u59943_img {
  7071. border-width:0px;
  7072. position:absolute;
  7073. left:0px;
  7074. top:0px;
  7075. width:231px;
  7076. height:50px;
  7077. }
  7078. #u59943 {
  7079. border-width:0px;
  7080. position:absolute;
  7081. left:124px;
  7082. top:0px;
  7083. width:231px;
  7084. height:50px;
  7085. display:flex;
  7086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7087. font-weight:400;
  7088. font-style:normal;
  7089. font-size:18px;
  7090. color:#FFFFFF;
  7091. }
  7092. #u59943 .text {
  7093. position:absolute;
  7094. align-self:center;
  7095. padding:2px 2px 2px 2px;
  7096. box-sizing:border-box;
  7097. width:100%;
  7098. }
  7099. #u59943_text {
  7100. border-width:0px;
  7101. word-wrap:break-word;
  7102. text-transform:none;
  7103. }
  7104. #u59944_img {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:0px;
  7108. top:0px;
  7109. width:189px;
  7110. height:50px;
  7111. }
  7112. #u59944 {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:355px;
  7116. top:0px;
  7117. width:189px;
  7118. height:50px;
  7119. display:flex;
  7120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7121. font-weight:400;
  7122. font-style:normal;
  7123. font-size:18px;
  7124. color:#FFFFFF;
  7125. }
  7126. #u59944 .text {
  7127. position:absolute;
  7128. align-self:center;
  7129. padding:2px 2px 2px 2px;
  7130. box-sizing:border-box;
  7131. width:100%;
  7132. }
  7133. #u59944_text {
  7134. border-width:0px;
  7135. word-wrap:break-word;
  7136. text-transform:none;
  7137. }
  7138. #u59945_img {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:0px;
  7142. top:0px;
  7143. width:124px;
  7144. height:50px;
  7145. }
  7146. #u59945 {
  7147. border-width:0px;
  7148. position:absolute;
  7149. left:0px;
  7150. top:50px;
  7151. width:124px;
  7152. height:50px;
  7153. display:flex;
  7154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7155. font-weight:400;
  7156. font-style:normal;
  7157. font-size:18px;
  7158. }
  7159. #u59945 .text {
  7160. position:absolute;
  7161. align-self:center;
  7162. padding:2px 2px 2px 2px;
  7163. box-sizing:border-box;
  7164. width:100%;
  7165. }
  7166. #u59945_text {
  7167. border-width:0px;
  7168. word-wrap:break-word;
  7169. text-transform:none;
  7170. visibility:hidden;
  7171. }
  7172. #u59946_img {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:0px;
  7176. top:0px;
  7177. width:231px;
  7178. height:50px;
  7179. }
  7180. #u59946 {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:124px;
  7184. top:50px;
  7185. width:231px;
  7186. height:50px;
  7187. display:flex;
  7188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7189. font-weight:400;
  7190. font-style:normal;
  7191. font-size:18px;
  7192. }
  7193. #u59946 .text {
  7194. position:absolute;
  7195. align-self:center;
  7196. padding:2px 2px 2px 2px;
  7197. box-sizing:border-box;
  7198. width:100%;
  7199. }
  7200. #u59946_text {
  7201. border-width:0px;
  7202. word-wrap:break-word;
  7203. text-transform:none;
  7204. visibility:hidden;
  7205. }
  7206. #u59947_img {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:0px;
  7210. top:0px;
  7211. width:189px;
  7212. height:50px;
  7213. }
  7214. #u59947 {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:355px;
  7218. top:50px;
  7219. width:189px;
  7220. height:50px;
  7221. display:flex;
  7222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7223. font-weight:400;
  7224. font-style:normal;
  7225. font-size:18px;
  7226. }
  7227. #u59947 .text {
  7228. position:absolute;
  7229. align-self:center;
  7230. padding:2px 2px 2px 2px;
  7231. box-sizing:border-box;
  7232. width:100%;
  7233. }
  7234. #u59947_text {
  7235. border-width:0px;
  7236. word-wrap:break-word;
  7237. text-transform:none;
  7238. visibility:hidden;
  7239. }
  7240. #u59948_img {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:0px;
  7244. top:0px;
  7245. width:124px;
  7246. height:50px;
  7247. }
  7248. #u59948 {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:0px;
  7252. top:100px;
  7253. width:124px;
  7254. height:50px;
  7255. display:flex;
  7256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7257. font-weight:400;
  7258. font-style:normal;
  7259. font-size:18px;
  7260. }
  7261. #u59948 .text {
  7262. position:absolute;
  7263. align-self:center;
  7264. padding:2px 2px 2px 2px;
  7265. box-sizing:border-box;
  7266. width:100%;
  7267. }
  7268. #u59948_text {
  7269. border-width:0px;
  7270. word-wrap:break-word;
  7271. text-transform:none;
  7272. visibility:hidden;
  7273. }
  7274. #u59949_img {
  7275. border-width:0px;
  7276. position:absolute;
  7277. left:0px;
  7278. top:0px;
  7279. width:231px;
  7280. height:50px;
  7281. }
  7282. #u59949 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:124px;
  7286. top:100px;
  7287. width:231px;
  7288. height:50px;
  7289. display:flex;
  7290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7291. font-weight:400;
  7292. font-style:normal;
  7293. font-size:18px;
  7294. }
  7295. #u59949 .text {
  7296. position:absolute;
  7297. align-self:center;
  7298. padding:2px 2px 2px 2px;
  7299. box-sizing:border-box;
  7300. width:100%;
  7301. }
  7302. #u59949_text {
  7303. border-width:0px;
  7304. word-wrap:break-word;
  7305. text-transform:none;
  7306. visibility:hidden;
  7307. }
  7308. #u59950_img {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:189px;
  7314. height:50px;
  7315. }
  7316. #u59950 {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:355px;
  7320. top:100px;
  7321. width:189px;
  7322. height:50px;
  7323. display:flex;
  7324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7325. font-weight:400;
  7326. font-style:normal;
  7327. font-size:18px;
  7328. }
  7329. #u59950 .text {
  7330. position:absolute;
  7331. align-self:center;
  7332. padding:2px 2px 2px 2px;
  7333. box-sizing:border-box;
  7334. width:100%;
  7335. }
  7336. #u59950_text {
  7337. border-width:0px;
  7338. word-wrap:break-word;
  7339. text-transform:none;
  7340. visibility:hidden;
  7341. }
  7342. #u59951_img {
  7343. border-width:0px;
  7344. position:absolute;
  7345. left:0px;
  7346. top:0px;
  7347. width:124px;
  7348. height:50px;
  7349. }
  7350. #u59951 {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:0px;
  7354. top:150px;
  7355. width:124px;
  7356. height:50px;
  7357. display:flex;
  7358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7359. font-weight:400;
  7360. font-style:normal;
  7361. font-size:18px;
  7362. }
  7363. #u59951 .text {
  7364. position:absolute;
  7365. align-self:center;
  7366. padding:2px 2px 2px 2px;
  7367. box-sizing:border-box;
  7368. width:100%;
  7369. }
  7370. #u59951_text {
  7371. border-width:0px;
  7372. word-wrap:break-word;
  7373. text-transform:none;
  7374. visibility:hidden;
  7375. }
  7376. #u59952_img {
  7377. border-width:0px;
  7378. position:absolute;
  7379. left:0px;
  7380. top:0px;
  7381. width:231px;
  7382. height:50px;
  7383. }
  7384. #u59952 {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:124px;
  7388. top:150px;
  7389. width:231px;
  7390. height:50px;
  7391. display:flex;
  7392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7393. font-weight:400;
  7394. font-style:normal;
  7395. font-size:18px;
  7396. }
  7397. #u59952 .text {
  7398. position:absolute;
  7399. align-self:center;
  7400. padding:2px 2px 2px 2px;
  7401. box-sizing:border-box;
  7402. width:100%;
  7403. }
  7404. #u59952_text {
  7405. border-width:0px;
  7406. word-wrap:break-word;
  7407. text-transform:none;
  7408. visibility:hidden;
  7409. }
  7410. #u59953_img {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:0px;
  7414. top:0px;
  7415. width:189px;
  7416. height:50px;
  7417. }
  7418. #u59953 {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:355px;
  7422. top:150px;
  7423. width:189px;
  7424. height:50px;
  7425. display:flex;
  7426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7427. font-weight:400;
  7428. font-style:normal;
  7429. font-size:18px;
  7430. }
  7431. #u59953 .text {
  7432. position:absolute;
  7433. align-self:center;
  7434. padding:2px 2px 2px 2px;
  7435. box-sizing:border-box;
  7436. width:100%;
  7437. }
  7438. #u59953_text {
  7439. border-width:0px;
  7440. word-wrap:break-word;
  7441. text-transform:none;
  7442. visibility:hidden;
  7443. }
  7444. #u59954_img {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:0px;
  7448. top:0px;
  7449. width:124px;
  7450. height:50px;
  7451. }
  7452. #u59954 {
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:0px;
  7456. top:200px;
  7457. width:124px;
  7458. height:50px;
  7459. display:flex;
  7460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7461. font-weight:400;
  7462. font-style:normal;
  7463. font-size:18px;
  7464. }
  7465. #u59954 .text {
  7466. position:absolute;
  7467. align-self:center;
  7468. padding:2px 2px 2px 2px;
  7469. box-sizing:border-box;
  7470. width:100%;
  7471. }
  7472. #u59954_text {
  7473. border-width:0px;
  7474. word-wrap:break-word;
  7475. text-transform:none;
  7476. visibility:hidden;
  7477. }
  7478. #u59955_img {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:0px;
  7482. top:0px;
  7483. width:231px;
  7484. height:50px;
  7485. }
  7486. #u59955 {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:124px;
  7490. top:200px;
  7491. width:231px;
  7492. height:50px;
  7493. display:flex;
  7494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7495. font-weight:400;
  7496. font-style:normal;
  7497. font-size:18px;
  7498. }
  7499. #u59955 .text {
  7500. position:absolute;
  7501. align-self:center;
  7502. padding:2px 2px 2px 2px;
  7503. box-sizing:border-box;
  7504. width:100%;
  7505. }
  7506. #u59955_text {
  7507. border-width:0px;
  7508. word-wrap:break-word;
  7509. text-transform:none;
  7510. visibility:hidden;
  7511. }
  7512. #u59956_img {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:0px;
  7516. top:0px;
  7517. width:189px;
  7518. height:50px;
  7519. }
  7520. #u59956 {
  7521. border-width:0px;
  7522. position:absolute;
  7523. left:355px;
  7524. top:200px;
  7525. width:189px;
  7526. height:50px;
  7527. display:flex;
  7528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7529. font-weight:400;
  7530. font-style:normal;
  7531. font-size:18px;
  7532. }
  7533. #u59956 .text {
  7534. position:absolute;
  7535. align-self:center;
  7536. padding:2px 2px 2px 2px;
  7537. box-sizing:border-box;
  7538. width:100%;
  7539. }
  7540. #u59956_text {
  7541. border-width:0px;
  7542. word-wrap:break-word;
  7543. text-transform:none;
  7544. visibility:hidden;
  7545. }
  7546. #u59957_img {
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:0px;
  7550. top:0px;
  7551. width:124px;
  7552. height:50px;
  7553. }
  7554. #u59957 {
  7555. border-width:0px;
  7556. position:absolute;
  7557. left:0px;
  7558. top:250px;
  7559. width:124px;
  7560. height:50px;
  7561. display:flex;
  7562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7563. font-weight:400;
  7564. font-style:normal;
  7565. font-size:18px;
  7566. }
  7567. #u59957 .text {
  7568. position:absolute;
  7569. align-self:center;
  7570. padding:2px 2px 2px 2px;
  7571. box-sizing:border-box;
  7572. width:100%;
  7573. }
  7574. #u59957_text {
  7575. border-width:0px;
  7576. word-wrap:break-word;
  7577. text-transform:none;
  7578. visibility:hidden;
  7579. }
  7580. #u59958_img {
  7581. border-width:0px;
  7582. position:absolute;
  7583. left:0px;
  7584. top:0px;
  7585. width:231px;
  7586. height:50px;
  7587. }
  7588. #u59958 {
  7589. border-width:0px;
  7590. position:absolute;
  7591. left:124px;
  7592. top:250px;
  7593. width:231px;
  7594. height:50px;
  7595. display:flex;
  7596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7597. font-weight:400;
  7598. font-style:normal;
  7599. font-size:18px;
  7600. }
  7601. #u59958 .text {
  7602. position:absolute;
  7603. align-self:center;
  7604. padding:2px 2px 2px 2px;
  7605. box-sizing:border-box;
  7606. width:100%;
  7607. }
  7608. #u59958_text {
  7609. border-width:0px;
  7610. word-wrap:break-word;
  7611. text-transform:none;
  7612. visibility:hidden;
  7613. }
  7614. #u59959_img {
  7615. border-width:0px;
  7616. position:absolute;
  7617. left:0px;
  7618. top:0px;
  7619. width:189px;
  7620. height:50px;
  7621. }
  7622. #u59959 {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:355px;
  7626. top:250px;
  7627. width:189px;
  7628. height:50px;
  7629. display:flex;
  7630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7631. font-weight:400;
  7632. font-style:normal;
  7633. font-size:18px;
  7634. }
  7635. #u59959 .text {
  7636. position:absolute;
  7637. align-self:center;
  7638. padding:2px 2px 2px 2px;
  7639. box-sizing:border-box;
  7640. width:100%;
  7641. }
  7642. #u59959_text {
  7643. border-width:0px;
  7644. word-wrap:break-word;
  7645. text-transform:none;
  7646. visibility:hidden;
  7647. }
  7648. #u59960 {
  7649. border-width:0px;
  7650. position:absolute;
  7651. left:0px;
  7652. top:0px;
  7653. width:0px;
  7654. height:0px;
  7655. }
  7656. #u59961_div {
  7657. border-width:0px;
  7658. position:absolute;
  7659. left:0px;
  7660. top:0px;
  7661. width:200px;
  7662. height:1188px;
  7663. background:inherit;
  7664. background-color:rgba(255, 255, 255, 1);
  7665. border:none;
  7666. border-radius:0px;
  7667. -moz-box-shadow:none;
  7668. -webkit-box-shadow:none;
  7669. box-shadow:none;
  7670. }
  7671. #u59961 {
  7672. border-width:0px;
  7673. position:absolute;
  7674. left:120px;
  7675. top:50px;
  7676. width:200px;
  7677. height:1188px;
  7678. display:flex;
  7679. }
  7680. #u59961 .text {
  7681. position:absolute;
  7682. align-self:center;
  7683. padding:2px 2px 2px 2px;
  7684. box-sizing:border-box;
  7685. width:100%;
  7686. }
  7687. #u59961_text {
  7688. border-width:0px;
  7689. word-wrap:break-word;
  7690. text-transform:none;
  7691. visibility:hidden;
  7692. }
  7693. #u59962_div {
  7694. border-width:0px;
  7695. position:absolute;
  7696. left:0px;
  7697. top:0px;
  7698. width:200px;
  7699. height:60px;
  7700. background:inherit;
  7701. background-color:rgba(224, 231, 247, 1);
  7702. border:none;
  7703. border-radius:0px;
  7704. -moz-box-shadow:none;
  7705. -webkit-box-shadow:none;
  7706. box-shadow:none;
  7707. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7708. font-weight:500;
  7709. font-style:normal;
  7710. font-size:18px;
  7711. }
  7712. #u59962 {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:120px;
  7716. top:50px;
  7717. width:200px;
  7718. height:60px;
  7719. display:flex;
  7720. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7721. font-weight:500;
  7722. font-style:normal;
  7723. font-size:18px;
  7724. }
  7725. #u59962 .text {
  7726. position:absolute;
  7727. align-self:center;
  7728. padding:0px 0px 0px 20px;
  7729. box-sizing:border-box;
  7730. width:100%;
  7731. }
  7732. #u59962_text {
  7733. border-width:0px;
  7734. word-wrap:break-word;
  7735. text-transform:none;
  7736. }
  7737. #u59963_div {
  7738. border-width:0px;
  7739. position:absolute;
  7740. left:0px;
  7741. top:0px;
  7742. width:65px;
  7743. height:22px;
  7744. background:inherit;
  7745. background-color:rgba(255, 255, 255, 0);
  7746. border:none;
  7747. border-radius:0px;
  7748. -moz-box-shadow:none;
  7749. -webkit-box-shadow:none;
  7750. box-shadow:none;
  7751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7752. font-weight:400;
  7753. font-style:normal;
  7754. font-size:16px;
  7755. }
  7756. #u59963 {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:147px;
  7760. top:346px;
  7761. width:65px;
  7762. height:22px;
  7763. display:flex;
  7764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7765. font-weight:400;
  7766. font-style:normal;
  7767. font-size:16px;
  7768. }
  7769. #u59963 .text {
  7770. position:absolute;
  7771. align-self:flex-start;
  7772. padding:0px 0px 0px 0px;
  7773. box-sizing:border-box;
  7774. width:100%;
  7775. }
  7776. #u59963_text {
  7777. border-width:0px;
  7778. white-space:nowrap;
  7779. text-transform:none;
  7780. }
  7781. #u59964_div {
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:0px;
  7785. top:0px;
  7786. width:65px;
  7787. height:22px;
  7788. background:inherit;
  7789. background-color:rgba(255, 255, 255, 0);
  7790. border:none;
  7791. border-radius:0px;
  7792. -moz-box-shadow:none;
  7793. -webkit-box-shadow:none;
  7794. box-shadow:none;
  7795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7796. font-weight:400;
  7797. font-style:normal;
  7798. font-size:16px;
  7799. }
  7800. #u59964 {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:147px;
  7804. top:388px;
  7805. width:65px;
  7806. height:22px;
  7807. display:flex;
  7808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7809. font-weight:400;
  7810. font-style:normal;
  7811. font-size:16px;
  7812. }
  7813. #u59964 .text {
  7814. position:absolute;
  7815. align-self:flex-start;
  7816. padding:0px 0px 0px 0px;
  7817. box-sizing:border-box;
  7818. width:100%;
  7819. }
  7820. #u59964_text {
  7821. border-width:0px;
  7822. white-space:nowrap;
  7823. text-transform:none;
  7824. }
  7825. #u59965_div {
  7826. border-width:0px;
  7827. position:absolute;
  7828. left:0px;
  7829. top:0px;
  7830. width:81px;
  7831. height:22px;
  7832. background:inherit;
  7833. background-color:rgba(255, 255, 255, 0);
  7834. border:none;
  7835. border-radius:0px;
  7836. -moz-box-shadow:none;
  7837. -webkit-box-shadow:none;
  7838. box-shadow:none;
  7839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7840. font-weight:400;
  7841. font-style:normal;
  7842. font-size:16px;
  7843. }
  7844. #u59965 {
  7845. border-width:0px;
  7846. position:absolute;
  7847. left:147px;
  7848. top:430px;
  7849. width:81px;
  7850. height:22px;
  7851. display:flex;
  7852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7853. font-weight:400;
  7854. font-style:normal;
  7855. font-size:16px;
  7856. }
  7857. #u59965 .text {
  7858. position:absolute;
  7859. align-self:flex-start;
  7860. padding:0px 0px 0px 0px;
  7861. box-sizing:border-box;
  7862. width:100%;
  7863. }
  7864. #u59965_text {
  7865. border-width:0px;
  7866. white-space:nowrap;
  7867. text-transform:none;
  7868. }
  7869. #u59966_div {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:0px;
  7873. top:0px;
  7874. width:81px;
  7875. height:22px;
  7876. background:inherit;
  7877. background-color:rgba(255, 255, 255, 0);
  7878. border:none;
  7879. border-radius:0px;
  7880. -moz-box-shadow:none;
  7881. -webkit-box-shadow:none;
  7882. box-shadow:none;
  7883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7884. font-weight:400;
  7885. font-style:normal;
  7886. font-size:16px;
  7887. }
  7888. #u59966 {
  7889. border-width:0px;
  7890. position:absolute;
  7891. left:147px;
  7892. top:472px;
  7893. width:81px;
  7894. height:22px;
  7895. display:flex;
  7896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7897. font-weight:400;
  7898. font-style:normal;
  7899. font-size:16px;
  7900. }
  7901. #u59966 .text {
  7902. position:absolute;
  7903. align-self:flex-start;
  7904. padding:0px 0px 0px 0px;
  7905. box-sizing:border-box;
  7906. width:100%;
  7907. }
  7908. #u59966_text {
  7909. border-width:0px;
  7910. white-space:nowrap;
  7911. text-transform:none;
  7912. }
  7913. #u59967_div {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:0px;
  7917. top:0px;
  7918. width:49px;
  7919. height:17px;
  7920. background:inherit;
  7921. background-color:rgba(255, 255, 255, 0);
  7922. border:none;
  7923. border-radius:0px;
  7924. -moz-box-shadow:none;
  7925. -webkit-box-shadow:none;
  7926. box-shadow:none;
  7927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7928. font-weight:400;
  7929. font-style:normal;
  7930. font-size:12px;
  7931. color:#AAAAAA;
  7932. }
  7933. #u59967 {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:147px;
  7937. top:310px;
  7938. width:49px;
  7939. height:17px;
  7940. display:flex;
  7941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7942. font-weight:400;
  7943. font-style:normal;
  7944. font-size:12px;
  7945. color:#AAAAAA;
  7946. }
  7947. #u59967 .text {
  7948. position:absolute;
  7949. align-self:flex-start;
  7950. padding:0px 0px 0px 0px;
  7951. box-sizing:border-box;
  7952. width:100%;
  7953. }
  7954. #u59967_text {
  7955. border-width:0px;
  7956. white-space:nowrap;
  7957. text-transform:none;
  7958. }
  7959. #u59968_img {
  7960. border-width:0px;
  7961. position:absolute;
  7962. left:0px;
  7963. top:0px;
  7964. width:201px;
  7965. height:2px;
  7966. }
  7967. #u59968 {
  7968. border-width:0px;
  7969. position:absolute;
  7970. left:120px;
  7971. top:598px;
  7972. width:200px;
  7973. height:1px;
  7974. display:flex;
  7975. }
  7976. #u59968 .text {
  7977. position:absolute;
  7978. align-self:center;
  7979. padding:2px 2px 2px 2px;
  7980. box-sizing:border-box;
  7981. width:100%;
  7982. }
  7983. #u59968_text {
  7984. border-width:0px;
  7985. word-wrap:break-word;
  7986. text-transform:none;
  7987. visibility:hidden;
  7988. }
  7989. #u59969_div {
  7990. border-width:0px;
  7991. position:absolute;
  7992. left:0px;
  7993. top:0px;
  7994. width:65px;
  7995. height:22px;
  7996. background:inherit;
  7997. background-color:rgba(255, 255, 255, 0);
  7998. border:none;
  7999. border-radius:0px;
  8000. -moz-box-shadow:none;
  8001. -webkit-box-shadow:none;
  8002. box-shadow:none;
  8003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8004. font-weight:400;
  8005. font-style:normal;
  8006. font-size:16px;
  8007. }
  8008. #u59969 {
  8009. border-width:0px;
  8010. position:absolute;
  8011. left:147px;
  8012. top:514px;
  8013. width:65px;
  8014. height:22px;
  8015. display:flex;
  8016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8017. font-weight:400;
  8018. font-style:normal;
  8019. font-size:16px;
  8020. }
  8021. #u59969 .text {
  8022. position:absolute;
  8023. align-self:flex-start;
  8024. padding:0px 0px 0px 0px;
  8025. box-sizing:border-box;
  8026. width:100%;
  8027. }
  8028. #u59969_text {
  8029. border-width:0px;
  8030. white-space:nowrap;
  8031. text-transform:none;
  8032. }
  8033. #u59970_div {
  8034. border-width:0px;
  8035. position:absolute;
  8036. left:0px;
  8037. top:0px;
  8038. width:65px;
  8039. height:22px;
  8040. background:inherit;
  8041. background-color:rgba(255, 255, 255, 0);
  8042. border:none;
  8043. border-radius:0px;
  8044. -moz-box-shadow:none;
  8045. -webkit-box-shadow:none;
  8046. box-shadow:none;
  8047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8048. font-weight:400;
  8049. font-style:normal;
  8050. font-size:16px;
  8051. }
  8052. #u59970 {
  8053. border-width:0px;
  8054. position:absolute;
  8055. left:147px;
  8056. top:556px;
  8057. width:65px;
  8058. height:22px;
  8059. display:flex;
  8060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8061. font-weight:400;
  8062. font-style:normal;
  8063. font-size:16px;
  8064. }
  8065. #u59970 .text {
  8066. position:absolute;
  8067. align-self:flex-start;
  8068. padding:0px 0px 0px 0px;
  8069. box-sizing:border-box;
  8070. width:100%;
  8071. }
  8072. #u59970_text {
  8073. border-width:0px;
  8074. white-space:nowrap;
  8075. text-transform:none;
  8076. }
  8077. #u59971_div {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:0px;
  8081. top:0px;
  8082. width:65px;
  8083. height:22px;
  8084. background:inherit;
  8085. background-color:rgba(255, 255, 255, 0);
  8086. border:none;
  8087. border-radius:0px;
  8088. -moz-box-shadow:none;
  8089. -webkit-box-shadow:none;
  8090. box-shadow:none;
  8091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8092. font-weight:400;
  8093. font-style:normal;
  8094. font-size:16px;
  8095. }
  8096. #u59971 {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:147px;
  8100. top:656px;
  8101. width:65px;
  8102. height:22px;
  8103. display:flex;
  8104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8105. font-weight:400;
  8106. font-style:normal;
  8107. font-size:16px;
  8108. }
  8109. #u59971 .text {
  8110. position:absolute;
  8111. align-self:flex-start;
  8112. padding:0px 0px 0px 0px;
  8113. box-sizing:border-box;
  8114. width:100%;
  8115. }
  8116. #u59971_text {
  8117. border-width:0px;
  8118. white-space:nowrap;
  8119. text-transform:none;
  8120. }
  8121. #u59972_div {
  8122. border-width:0px;
  8123. position:absolute;
  8124. left:0px;
  8125. top:0px;
  8126. width:49px;
  8127. height:17px;
  8128. background:inherit;
  8129. background-color:rgba(255, 255, 255, 0);
  8130. border:none;
  8131. border-radius:0px;
  8132. -moz-box-shadow:none;
  8133. -webkit-box-shadow:none;
  8134. box-shadow:none;
  8135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8136. font-weight:400;
  8137. font-style:normal;
  8138. font-size:12px;
  8139. color:#AAAAAA;
  8140. }
  8141. #u59972 {
  8142. border-width:0px;
  8143. position:absolute;
  8144. left:147px;
  8145. top:620px;
  8146. width:49px;
  8147. height:17px;
  8148. display:flex;
  8149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8150. font-weight:400;
  8151. font-style:normal;
  8152. font-size:12px;
  8153. color:#AAAAAA;
  8154. }
  8155. #u59972 .text {
  8156. position:absolute;
  8157. align-self:flex-start;
  8158. padding:0px 0px 0px 0px;
  8159. box-sizing:border-box;
  8160. width:100%;
  8161. }
  8162. #u59972_text {
  8163. border-width:0px;
  8164. white-space:nowrap;
  8165. text-transform:none;
  8166. }
  8167. #u59973_div {
  8168. border-width:0px;
  8169. position:absolute;
  8170. left:0px;
  8171. top:0px;
  8172. width:65px;
  8173. height:22px;
  8174. background:inherit;
  8175. background-color:rgba(255, 255, 255, 0);
  8176. border:none;
  8177. border-radius:0px;
  8178. -moz-box-shadow:none;
  8179. -webkit-box-shadow:none;
  8180. box-shadow:none;
  8181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8182. font-weight:400;
  8183. font-style:normal;
  8184. font-size:16px;
  8185. }
  8186. #u59973 {
  8187. border-width:0px;
  8188. position:absolute;
  8189. left:147px;
  8190. top:166px;
  8191. width:65px;
  8192. height:22px;
  8193. display:flex;
  8194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8195. font-weight:400;
  8196. font-style:normal;
  8197. font-size:16px;
  8198. }
  8199. #u59973 .text {
  8200. position:absolute;
  8201. align-self:flex-start;
  8202. padding:0px 0px 0px 0px;
  8203. box-sizing:border-box;
  8204. width:100%;
  8205. }
  8206. #u59973_text {
  8207. border-width:0px;
  8208. white-space:nowrap;
  8209. text-transform:none;
  8210. }
  8211. #u59974_div {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:0px;
  8215. top:0px;
  8216. width:65px;
  8217. height:22px;
  8218. background:inherit;
  8219. background-color:rgba(255, 255, 255, 0);
  8220. border:none;
  8221. border-radius:0px;
  8222. -moz-box-shadow:none;
  8223. -webkit-box-shadow:none;
  8224. box-shadow:none;
  8225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8226. font-weight:400;
  8227. font-style:normal;
  8228. font-size:16px;
  8229. }
  8230. #u59974 {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:147px;
  8234. top:248px;
  8235. width:65px;
  8236. height:22px;
  8237. display:flex;
  8238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8239. font-weight:400;
  8240. font-style:normal;
  8241. font-size:16px;
  8242. }
  8243. #u59974 .text {
  8244. position:absolute;
  8245. align-self:flex-start;
  8246. padding:0px 0px 0px 0px;
  8247. box-sizing:border-box;
  8248. width:100%;
  8249. }
  8250. #u59974_text {
  8251. border-width:0px;
  8252. white-space:nowrap;
  8253. text-transform:none;
  8254. }
  8255. #u59975_div {
  8256. border-width:0px;
  8257. position:absolute;
  8258. left:0px;
  8259. top:0px;
  8260. width:49px;
  8261. height:17px;
  8262. background:inherit;
  8263. background-color:rgba(255, 255, 255, 0);
  8264. border:none;
  8265. border-radius:0px;
  8266. -moz-box-shadow:none;
  8267. -webkit-box-shadow:none;
  8268. box-shadow:none;
  8269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8270. font-weight:400;
  8271. font-style:normal;
  8272. font-size:12px;
  8273. color:#AAAAAA;
  8274. }
  8275. #u59975 {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:147px;
  8279. top:130px;
  8280. width:49px;
  8281. height:17px;
  8282. display:flex;
  8283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8284. font-weight:400;
  8285. font-style:normal;
  8286. font-size:12px;
  8287. color:#AAAAAA;
  8288. }
  8289. #u59975 .text {
  8290. position:absolute;
  8291. align-self:flex-start;
  8292. padding:0px 0px 0px 0px;
  8293. box-sizing:border-box;
  8294. width:100%;
  8295. }
  8296. #u59975_text {
  8297. border-width:0px;
  8298. white-space:nowrap;
  8299. text-transform:none;
  8300. }
  8301. #u59976_img {
  8302. border-width:0px;
  8303. position:absolute;
  8304. left:0px;
  8305. top:0px;
  8306. width:201px;
  8307. height:2px;
  8308. }
  8309. #u59976 {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:120px;
  8313. top:289px;
  8314. width:200px;
  8315. height:1px;
  8316. display:flex;
  8317. }
  8318. #u59976 .text {
  8319. position:absolute;
  8320. align-self:center;
  8321. padding:2px 2px 2px 2px;
  8322. box-sizing:border-box;
  8323. width:100%;
  8324. }
  8325. #u59976_text {
  8326. border-width:0px;
  8327. word-wrap:break-word;
  8328. text-transform:none;
  8329. visibility:hidden;
  8330. }
  8331. #u59977_div {
  8332. border-width:0px;
  8333. position:absolute;
  8334. left:0px;
  8335. top:0px;
  8336. width:65px;
  8337. height:22px;
  8338. background:inherit;
  8339. background-color:rgba(255, 255, 255, 0);
  8340. border:none;
  8341. border-radius:0px;
  8342. -moz-box-shadow:none;
  8343. -webkit-box-shadow:none;
  8344. box-shadow:none;
  8345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8346. font-weight:400;
  8347. font-style:normal;
  8348. font-size:16px;
  8349. }
  8350. #u59977 {
  8351. border-width:0px;
  8352. position:absolute;
  8353. left:147px;
  8354. top:206px;
  8355. width:65px;
  8356. height:22px;
  8357. display:flex;
  8358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8359. font-weight:400;
  8360. font-style:normal;
  8361. font-size:16px;
  8362. }
  8363. #u59977 .text {
  8364. position:absolute;
  8365. align-self:flex-start;
  8366. padding:0px 0px 0px 0px;
  8367. box-sizing:border-box;
  8368. width:100%;
  8369. }
  8370. #u59977_text {
  8371. border-width:0px;
  8372. white-space:nowrap;
  8373. text-transform:none;
  8374. }
  8375. #u59978 {
  8376. border-width:0px;
  8377. position:absolute;
  8378. left:0px;
  8379. top:0px;
  8380. width:0px;
  8381. height:0px;
  8382. }
  8383. #u59979_div {
  8384. border-width:0px;
  8385. position:absolute;
  8386. left:0px;
  8387. top:0px;
  8388. width:140px;
  8389. height:30px;
  8390. background:inherit;
  8391. background-color:rgba(255, 255, 255, 1);
  8392. box-sizing:border-box;
  8393. border-width:1px;
  8394. border-style:solid;
  8395. border-color:rgba(201, 201, 201, 1);
  8396. border-radius:0px;
  8397. -moz-box-shadow:none;
  8398. -webkit-box-shadow:none;
  8399. box-shadow:none;
  8400. font-family:'Microsoft YaHei', sans-serif;
  8401. font-weight:400;
  8402. font-style:normal;
  8403. font-size:14px;
  8404. color:#CCCCCC;
  8405. text-align:left;
  8406. }
  8407. #u59979 {
  8408. border-width:0px;
  8409. position:absolute;
  8410. left:1407px;
  8411. top:750px;
  8412. width:140px;
  8413. height:30px;
  8414. display:flex;
  8415. font-family:'Microsoft YaHei', sans-serif;
  8416. font-weight:400;
  8417. font-style:normal;
  8418. font-size:14px;
  8419. color:#CCCCCC;
  8420. text-align:left;
  8421. }
  8422. #u59979 .text {
  8423. position:absolute;
  8424. align-self:center;
  8425. padding:2px 8px 2px 8px;
  8426. box-sizing:border-box;
  8427. width:100%;
  8428. }
  8429. #u59979_text {
  8430. border-width:0px;
  8431. word-wrap:break-word;
  8432. text-transform:none;
  8433. visibility:hidden;
  8434. }
  8435. #u59980_input {
  8436. position:absolute;
  8437. left:0px;
  8438. top:0px;
  8439. width:113px;
  8440. height:27px;
  8441. padding:2px 2px 2px 2px;
  8442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8443. font-weight:400;
  8444. font-style:normal;
  8445. font-size:12px;
  8446. letter-spacing:normal;
  8447. color:#000000;
  8448. vertical-align:none;
  8449. text-align:left;
  8450. text-transform:none;
  8451. background-color:transparent;
  8452. border-color:transparent;
  8453. }
  8454. #u59980_input.disabled {
  8455. position:absolute;
  8456. left:0px;
  8457. top:0px;
  8458. width:113px;
  8459. height:27px;
  8460. padding:2px 2px 2px 2px;
  8461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8462. font-weight:400;
  8463. font-style:normal;
  8464. font-size:12px;
  8465. letter-spacing:normal;
  8466. color:#000000;
  8467. vertical-align:none;
  8468. text-align:left;
  8469. text-transform:none;
  8470. background-color:transparent;
  8471. border-color:transparent;
  8472. }
  8473. #u59980_div {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:0px;
  8477. top:0px;
  8478. width:113px;
  8479. height:27px;
  8480. background:inherit;
  8481. background-color:rgba(255, 255, 255, 1);
  8482. border:none;
  8483. border-radius:0px;
  8484. -moz-box-shadow:none;
  8485. -webkit-box-shadow:none;
  8486. box-shadow:none;
  8487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8488. font-weight:400;
  8489. font-style:normal;
  8490. font-size:12px;
  8491. }
  8492. #u59980 {
  8493. border-width:0px;
  8494. position:absolute;
  8495. left:1412px;
  8496. top:751px;
  8497. width:113px;
  8498. height:27px;
  8499. display:flex;
  8500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8501. font-weight:400;
  8502. font-style:normal;
  8503. font-size:12px;
  8504. }
  8505. #u59980 .text {
  8506. position:absolute;
  8507. align-self:center;
  8508. padding:2px 2px 2px 2px;
  8509. box-sizing:border-box;
  8510. width:100%;
  8511. }
  8512. #u59980_div.disabled {
  8513. border-width:0px;
  8514. position:absolute;
  8515. left:0px;
  8516. top:0px;
  8517. width:113px;
  8518. height:27px;
  8519. background:inherit;
  8520. background-color:rgba(240, 240, 240, 1);
  8521. border:none;
  8522. border-radius:0px;
  8523. -moz-box-shadow:none;
  8524. -webkit-box-shadow:none;
  8525. box-shadow:none;
  8526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8527. font-weight:400;
  8528. font-style:normal;
  8529. font-size:12px;
  8530. }
  8531. #u59980.disabled {
  8532. }
  8533. #u59981_img {
  8534. border-width:0px;
  8535. position:absolute;
  8536. left:0px;
  8537. top:0px;
  8538. width:13px;
  8539. height:13px;
  8540. }
  8541. #u59981 {
  8542. border-width:0px;
  8543. position:absolute;
  8544. left:1528px;
  8545. top:759px;
  8546. width:13px;
  8547. height:13px;
  8548. display:flex;
  8549. }
  8550. #u59981 .text {
  8551. position:absolute;
  8552. align-self:center;
  8553. padding:2px 2px 2px 2px;
  8554. box-sizing:border-box;
  8555. width:100%;
  8556. }
  8557. #u59981_text {
  8558. border-width:0px;
  8559. word-wrap:break-word;
  8560. text-transform:none;
  8561. visibility:hidden;
  8562. }