styles.css 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817
  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. #u23744_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. #u23744 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u23744 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u23744_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u23745_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. #u23745 {
  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. #u23745 .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. #u23745_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u23746_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. #u23746 {
  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. #u23746 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u23746_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u23747 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u23748_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u23748 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u23748 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u23748_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u23749_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. #u23749 {
  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. #u23749 .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. #u23749_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u23750_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. #u23750 {
  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. #u23750 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u23750_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u23751 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u23752_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u23752 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u23752 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u23752_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u23753_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u23753 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u23753 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u23753_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u23754 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u23755_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u23755 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u23755 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u23755_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u23756_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u23756 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u23756 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u23756_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u23757 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u23758_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u23758 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u23758 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u23758_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u23759_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u23759 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u23759 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u23759_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u23760 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u23761_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u23761 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u23761 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u23761_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u23762_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u23762 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u23762 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u23762_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u23763 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u23764_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u23764 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u23764 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u23764_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u23765_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u23765 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u23765 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u23765_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u23766 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u23767_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u23767 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u23767 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u23767_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u23768_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u23768 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u23768 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u23768_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u23769 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u23770_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u23770 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u23770 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u23770_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u23771_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u23771 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u23771 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u23771_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u23772 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u23773_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u23773 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u23773 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u23773_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u23774_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u23774 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u23774 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u23774_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u23775 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u23776_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u23776 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u23776 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u23776_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u23777_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u23777 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u23777 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u23777_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u23778 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u23779_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u23779 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u23779 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u23779_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u23780_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u23780 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u23780 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u23780_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u23781 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u23782_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u23782 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u23782 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u23782_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u23783_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u23783 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u23783 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u23783_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u23784 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u23785_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u23785_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u23785_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u23785 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u23785 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u23785_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u23785.disabled {
  1276. }
  1277. .u23785_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u23786_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u23786 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u23786 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u23786_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u23787_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u23787 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u23787 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u23787_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u23788_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u23788 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u23788 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u23788_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u23789 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u23790_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u23790 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u23790 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u23790_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u23791_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u23791 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u23791 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u23791_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u23792_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u23792 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u23792 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u23792_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u23793_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u23793 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u23793 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u23793_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u23794_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u23794 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u23794 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u23794_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u23795 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u23796_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u23796 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u23796 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u23796_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u23797_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u23797 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u23797 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u23797_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u23798_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1260px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. box-sizing:border-box;
  1652. border-width:1px;
  1653. border-style:solid;
  1654. border-color:rgba(242, 242, 242, 1);
  1655. border-radius:0px;
  1656. -moz-box-shadow:none;
  1657. -webkit-box-shadow:none;
  1658. box-shadow:none;
  1659. }
  1660. #u23798 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:333px;
  1664. top:50px;
  1665. width:1260px;
  1666. height:1180px;
  1667. display:flex;
  1668. }
  1669. #u23798 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:2px 2px 2px 2px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u23798_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. visibility:hidden;
  1681. }
  1682. #u23799_img {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:0px;
  1686. top:0px;
  1687. width:577px;
  1688. height:413px;
  1689. }
  1690. #u23799 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:995px;
  1694. top:727px;
  1695. width:577px;
  1696. height:413px;
  1697. display:flex;
  1698. }
  1699. #u23799 .text {
  1700. position:absolute;
  1701. align-self:center;
  1702. padding:0px 0px 0px 0px;
  1703. box-sizing:border-box;
  1704. width:100%;
  1705. }
  1706. #u23799_text {
  1707. border-width:0px;
  1708. word-wrap:break-word;
  1709. text-transform:none;
  1710. visibility:hidden;
  1711. }
  1712. #u23800_div {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:145px;
  1718. height:25px;
  1719. background:inherit;
  1720. background-color:rgba(255, 255, 255, 0);
  1721. border:none;
  1722. border-radius:0px;
  1723. -moz-box-shadow:none;
  1724. -webkit-box-shadow:none;
  1725. box-shadow:none;
  1726. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1727. font-weight:650;
  1728. font-style:normal;
  1729. }
  1730. #u23800 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:1021px;
  1734. top:750px;
  1735. width:145px;
  1736. height:25px;
  1737. display:flex;
  1738. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1739. font-weight:650;
  1740. font-style:normal;
  1741. }
  1742. #u23800 .text {
  1743. position:absolute;
  1744. align-self:flex-start;
  1745. padding:0px 0px 0px 0px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u23800_text {
  1750. border-width:0px;
  1751. white-space:nowrap;
  1752. text-transform:none;
  1753. }
  1754. #u23801_div {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:53px;
  1760. height:18px;
  1761. background:inherit;
  1762. background-color:rgba(255, 255, 255, 0);
  1763. border:none;
  1764. border-radius:0px;
  1765. -moz-box-shadow:none;
  1766. -webkit-box-shadow:none;
  1767. box-shadow:none;
  1768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1769. font-weight:400;
  1770. font-style:normal;
  1771. font-size:12px;
  1772. color:#555555;
  1773. }
  1774. #u23801 {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:1397px;
  1778. top:889px;
  1779. width:53px;
  1780. height:18px;
  1781. display:flex;
  1782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1783. font-weight:400;
  1784. font-style:normal;
  1785. font-size:12px;
  1786. color:#555555;
  1787. }
  1788. #u23801 .text {
  1789. position:absolute;
  1790. align-self:flex-start;
  1791. padding:0px 0px 0px 0px;
  1792. box-sizing:border-box;
  1793. width:100%;
  1794. }
  1795. #u23801_text {
  1796. border-width:0px;
  1797. word-wrap:break-word;
  1798. text-transform:none;
  1799. }
  1800. #u23802_div {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:56px;
  1806. height:17px;
  1807. background:inherit;
  1808. background-color:rgba(255, 255, 255, 0);
  1809. border:none;
  1810. border-radius:0px;
  1811. -moz-box-shadow:none;
  1812. -webkit-box-shadow:none;
  1813. box-shadow:none;
  1814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1815. font-weight:400;
  1816. font-style:normal;
  1817. font-size:12px;
  1818. color:#555555;
  1819. }
  1820. #u23802 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:1397px;
  1824. top:925px;
  1825. width:56px;
  1826. height:17px;
  1827. display:flex;
  1828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1829. font-weight:400;
  1830. font-style:normal;
  1831. font-size:12px;
  1832. color:#555555;
  1833. }
  1834. #u23802 .text {
  1835. position:absolute;
  1836. align-self:flex-start;
  1837. padding:0px 0px 0px 0px;
  1838. box-sizing:border-box;
  1839. width:100%;
  1840. }
  1841. #u23802_text {
  1842. border-width:0px;
  1843. white-space:nowrap;
  1844. text-transform:none;
  1845. }
  1846. #u23803_div {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:0px;
  1850. top:0px;
  1851. width:66px;
  1852. height:18px;
  1853. background:inherit;
  1854. background-color:rgba(255, 255, 255, 0);
  1855. border:none;
  1856. border-radius:0px;
  1857. -moz-box-shadow:none;
  1858. -webkit-box-shadow:none;
  1859. box-shadow:none;
  1860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1861. font-weight:400;
  1862. font-style:normal;
  1863. font-size:12px;
  1864. color:#555555;
  1865. }
  1866. #u23803 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:1397px;
  1870. top:960px;
  1871. width:66px;
  1872. height:18px;
  1873. display:flex;
  1874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1875. font-weight:400;
  1876. font-style:normal;
  1877. font-size:12px;
  1878. color:#555555;
  1879. }
  1880. #u23803 .text {
  1881. position:absolute;
  1882. align-self:flex-start;
  1883. padding:0px 0px 0px 0px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u23803_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. }
  1892. #u23804_img {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:9px;
  1898. height:9px;
  1899. }
  1900. #u23804 {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:1382px;
  1904. top:893px;
  1905. width:9px;
  1906. height:9px;
  1907. display:flex;
  1908. }
  1909. #u23804 .text {
  1910. position:absolute;
  1911. align-self:center;
  1912. padding:0px 0px 0px 0px;
  1913. box-sizing:border-box;
  1914. width:100%;
  1915. }
  1916. #u23804_text {
  1917. border-width:0px;
  1918. word-wrap:break-word;
  1919. text-transform:none;
  1920. visibility:hidden;
  1921. }
  1922. #u23805_img {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:0px;
  1926. top:0px;
  1927. width:9px;
  1928. height:9px;
  1929. }
  1930. #u23805 {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:1382px;
  1934. top:928px;
  1935. width:9px;
  1936. height:9px;
  1937. display:flex;
  1938. }
  1939. #u23805 .text {
  1940. position:absolute;
  1941. align-self:center;
  1942. padding:0px 0px 0px 0px;
  1943. box-sizing:border-box;
  1944. width:100%;
  1945. }
  1946. #u23805_text {
  1947. border-width:0px;
  1948. word-wrap:break-word;
  1949. text-transform:none;
  1950. visibility:hidden;
  1951. }
  1952. #u23806_img {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:9px;
  1958. height:9px;
  1959. }
  1960. #u23806 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:1382px;
  1964. top:963px;
  1965. width:9px;
  1966. height:9px;
  1967. display:flex;
  1968. }
  1969. #u23806 .text {
  1970. position:absolute;
  1971. align-self:center;
  1972. padding:0px 0px 0px 0px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u23806_text {
  1977. border-width:0px;
  1978. word-wrap:break-word;
  1979. text-transform:none;
  1980. visibility:hidden;
  1981. }
  1982. #u23807_div {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:73px;
  1988. height:30px;
  1989. background:inherit;
  1990. background-color:rgba(255, 255, 255, 0);
  1991. border:none;
  1992. border-radius:0px;
  1993. -moz-box-shadow:none;
  1994. -webkit-box-shadow:none;
  1995. box-shadow:none;
  1996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1997. font-weight:400;
  1998. font-style:normal;
  1999. font-size:18px;
  2000. color:#000000;
  2001. line-height:30px;
  2002. }
  2003. #u23807 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:355px;
  2007. top:62px;
  2008. width:73px;
  2009. height:30px;
  2010. display:flex;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:18px;
  2015. color:#000000;
  2016. line-height:30px;
  2017. }
  2018. #u23807 .text {
  2019. position:absolute;
  2020. align-self:flex-start;
  2021. padding:0px 0px 0px 0px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u23807_text {
  2026. border-width:0px;
  2027. white-space:nowrap;
  2028. text-transform:none;
  2029. }
  2030. #u23808 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:0px;
  2034. top:0px;
  2035. width:0px;
  2036. height:0px;
  2037. }
  2038. #u23809_div {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:29px;
  2044. height:30px;
  2045. background:inherit;
  2046. background-color:rgba(255, 255, 255, 0);
  2047. border:none;
  2048. border-radius:0px;
  2049. -moz-box-shadow:none;
  2050. -webkit-box-shadow:none;
  2051. box-shadow:none;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:14px;
  2056. color:#1890FF;
  2057. line-height:30px;
  2058. }
  2059. #u23809 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:460px;
  2063. top:59px;
  2064. width:29px;
  2065. height:30px;
  2066. display:flex;
  2067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:14px;
  2071. color:#1890FF;
  2072. line-height:30px;
  2073. }
  2074. #u23809 .text {
  2075. position:absolute;
  2076. align-self:flex-start;
  2077. padding:0px 0px 0px 0px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u23809_text {
  2082. border-width:0px;
  2083. white-space:nowrap;
  2084. text-transform:none;
  2085. }
  2086. #u23810_img {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:14px;
  2092. height:14px;
  2093. }
  2094. #u23810 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:441px;
  2098. top:67px;
  2099. width:14px;
  2100. height:14px;
  2101. display:flex;
  2102. }
  2103. #u23810 .text {
  2104. position:absolute;
  2105. align-self:center;
  2106. padding:2px 2px 2px 2px;
  2107. box-sizing:border-box;
  2108. width:100%;
  2109. }
  2110. #u23810_text {
  2111. border-width:0px;
  2112. word-wrap:break-word;
  2113. text-transform:none;
  2114. visibility:hidden;
  2115. }
  2116. #u23811_img {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:0px;
  2120. top:0px;
  2121. width:214px;
  2122. height:214px;
  2123. }
  2124. #u23811 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:1062px;
  2128. top:829px;
  2129. width:214px;
  2130. height:214px;
  2131. display:flex;
  2132. }
  2133. #u23811 .text {
  2134. position:absolute;
  2135. align-self:center;
  2136. padding:55.5px 15.0742521562354px 2px 2px;
  2137. box-sizing:border-box;
  2138. width:100%;
  2139. }
  2140. #u23811_text {
  2141. border-width:0px;
  2142. word-wrap:break-word;
  2143. text-transform:none;
  2144. visibility:hidden;
  2145. }
  2146. #u23812_img {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:214px;
  2152. height:214px;
  2153. }
  2154. #u23812 {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:1062px;
  2158. top:829px;
  2159. width:214px;
  2160. height:214px;
  2161. display:flex;
  2162. }
  2163. #u23812 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 11.1633340121802px 109px 16.1837336290937px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u23812_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. visibility:hidden;
  2175. }
  2176. #u23813_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:214px;
  2182. height:214px;
  2183. }
  2184. #u23813 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:1062px;
  2188. top:829px;
  2189. width:214px;
  2190. height:214px;
  2191. display:flex;
  2192. }
  2193. #u23813 .text {
  2194. position:absolute;
  2195. align-self:center;
  2196. padding:65.3267632681052px 2px 57.1893885853986px 109px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u23813_text {
  2201. border-width:0px;
  2202. word-wrap:break-word;
  2203. text-transform:none;
  2204. visibility:hidden;
  2205. }
  2206. #u23814_img {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:137px;
  2212. height:137px;
  2213. }
  2214. #u23814 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:1101px;
  2218. top:868px;
  2219. width:137px;
  2220. height:137px;
  2221. display:flex;
  2222. }
  2223. #u23814 .text {
  2224. position:absolute;
  2225. align-self:center;
  2226. padding:2px 2px 2px 2px;
  2227. box-sizing:border-box;
  2228. width:100%;
  2229. }
  2230. #u23814_text {
  2231. border-width:0px;
  2232. word-wrap:break-word;
  2233. text-transform:none;
  2234. }
  2235. #u23815 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:0px;
  2241. height:0px;
  2242. }
  2243. #u23816_div {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:750px;
  2249. height:120px;
  2250. background:inherit;
  2251. background-color:rgba(255, 255, 255, 1);
  2252. border:none;
  2253. border-radius:0px;
  2254. -moz-box-shadow:none;
  2255. -webkit-box-shadow:none;
  2256. box-shadow:none;
  2257. font-family:'Microsoft YaHei', sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. }
  2261. #u23816 {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:345px;
  2265. top:107px;
  2266. width:750px;
  2267. height:120px;
  2268. display:flex;
  2269. font-family:'Microsoft YaHei', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. }
  2273. #u23816 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 2px 2px 2px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u23816_div.selected {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:0px;
  2284. top:0px;
  2285. width:750px;
  2286. height:120px;
  2287. background:inherit;
  2288. background-color:rgba(255, 255, 255, 1);
  2289. border:none;
  2290. border-radius:0px;
  2291. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2292. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2293. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2294. font-family:'Microsoft YaHei', sans-serif;
  2295. font-weight:400;
  2296. font-style:normal;
  2297. }
  2298. #u23816.selected {
  2299. }
  2300. #u23816_text {
  2301. border-width:0px;
  2302. word-wrap:break-word;
  2303. text-transform:none;
  2304. visibility:hidden;
  2305. }
  2306. #u23817_div {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:85px;
  2312. height:17px;
  2313. background:inherit;
  2314. background-color:rgba(255, 255, 255, 0);
  2315. border:none;
  2316. border-radius:0px;
  2317. -moz-box-shadow:none;
  2318. -webkit-box-shadow:none;
  2319. box-shadow:none;
  2320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2321. font-weight:400;
  2322. font-style:normal;
  2323. font-size:12px;
  2324. color:rgba(51, 51, 51, 0.996078431372549);
  2325. }
  2326. #u23817 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:365px;
  2330. top:117px;
  2331. width:85px;
  2332. height:17px;
  2333. display:flex;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:12px;
  2338. color:rgba(51, 51, 51, 0.996078431372549);
  2339. }
  2340. #u23817 .text {
  2341. position:absolute;
  2342. align-self:flex-start;
  2343. padding:0px 0px 0px 0px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u23817_text {
  2348. border-width:0px;
  2349. word-wrap:break-word;
  2350. text-transform:none;
  2351. }
  2352. #u23818_div {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:19px;
  2358. height:34px;
  2359. background:inherit;
  2360. background-color:rgba(255, 255, 255, 0);
  2361. border:none;
  2362. border-radius:0px;
  2363. -moz-box-shadow:none;
  2364. -webkit-box-shadow:none;
  2365. box-shadow:none;
  2366. font-size:30px;
  2367. color:rgba(51, 51, 51, 0.996078431372549);
  2368. }
  2369. #u23818 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:371px;
  2373. top:147px;
  2374. width:19px;
  2375. height:34px;
  2376. display:flex;
  2377. font-size:30px;
  2378. color:rgba(51, 51, 51, 0.996078431372549);
  2379. }
  2380. #u23818 .text {
  2381. position:absolute;
  2382. align-self:flex-start;
  2383. padding:0px 0px 0px 0px;
  2384. box-sizing:border-box;
  2385. width:100%;
  2386. }
  2387. #u23818_text {
  2388. border-width:0px;
  2389. word-wrap:break-word;
  2390. text-transform:none;
  2391. }
  2392. #u23819_img {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:10px;
  2398. height:10px;
  2399. }
  2400. #u23819 {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:444px;
  2404. top:121px;
  2405. width:10px;
  2406. height:10px;
  2407. display:flex;
  2408. }
  2409. #u23819 .text {
  2410. position:absolute;
  2411. align-self:center;
  2412. padding:2px 2px 2px 2px;
  2413. box-sizing:border-box;
  2414. width:100%;
  2415. }
  2416. #u23819_text {
  2417. border-width:0px;
  2418. word-wrap:break-word;
  2419. text-transform:none;
  2420. visibility:hidden;
  2421. }
  2422. #u23820_div {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:0px;
  2426. top:0px;
  2427. width:43px;
  2428. height:20px;
  2429. background:inherit;
  2430. background-color:rgba(255, 255, 255, 0);
  2431. border:none;
  2432. border-radius:0px;
  2433. -moz-box-shadow:none;
  2434. -webkit-box-shadow:none;
  2435. box-shadow:none;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. color:rgba(51, 51, 51, 0.996078431372549);
  2440. }
  2441. #u23820 {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:537px;
  2445. top:137px;
  2446. width:43px;
  2447. height:20px;
  2448. display:flex;
  2449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2450. font-weight:400;
  2451. font-style:normal;
  2452. color:rgba(51, 51, 51, 0.996078431372549);
  2453. }
  2454. #u23820 .text {
  2455. position:absolute;
  2456. align-self:flex-start;
  2457. padding:0px 0px 0px 0px;
  2458. box-sizing:border-box;
  2459. width:100%;
  2460. }
  2461. #u23820_text {
  2462. border-width:0px;
  2463. white-space:nowrap;
  2464. text-transform:none;
  2465. }
  2466. #u23821_div {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:43px;
  2472. height:20px;
  2473. background:inherit;
  2474. background-color:rgba(255, 255, 255, 0);
  2475. border:none;
  2476. border-radius:0px;
  2477. -moz-box-shadow:none;
  2478. -webkit-box-shadow:none;
  2479. box-shadow:none;
  2480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2481. font-weight:400;
  2482. font-style:normal;
  2483. color:rgba(51, 51, 51, 0.996078431372549);
  2484. }
  2485. #u23821 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:537px;
  2489. top:177px;
  2490. width:43px;
  2491. height:20px;
  2492. display:flex;
  2493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2494. font-weight:400;
  2495. font-style:normal;
  2496. color:rgba(51, 51, 51, 0.996078431372549);
  2497. }
  2498. #u23821 .text {
  2499. position:absolute;
  2500. align-self:flex-start;
  2501. padding:0px 0px 0px 0px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u23821_text {
  2506. border-width:0px;
  2507. white-space:nowrap;
  2508. text-transform:none;
  2509. }
  2510. #u23822_div {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:43px;
  2516. height:20px;
  2517. background:inherit;
  2518. background-color:rgba(255, 255, 255, 0);
  2519. border:none;
  2520. border-radius:0px;
  2521. -moz-box-shadow:none;
  2522. -webkit-box-shadow:none;
  2523. box-shadow:none;
  2524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2525. font-weight:400;
  2526. font-style:normal;
  2527. color:rgba(51, 51, 51, 0.996078431372549);
  2528. }
  2529. #u23822 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:666px;
  2533. top:137px;
  2534. width:43px;
  2535. height:20px;
  2536. display:flex;
  2537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2538. font-weight:400;
  2539. font-style:normal;
  2540. color:rgba(51, 51, 51, 0.996078431372549);
  2541. }
  2542. #u23822 .text {
  2543. position:absolute;
  2544. align-self:flex-start;
  2545. padding:0px 0px 0px 0px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u23822_text {
  2550. border-width:0px;
  2551. white-space:nowrap;
  2552. text-transform:none;
  2553. }
  2554. #u23823_div {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:43px;
  2560. height:20px;
  2561. background:inherit;
  2562. background-color:rgba(255, 255, 255, 0);
  2563. border:none;
  2564. border-radius:0px;
  2565. -moz-box-shadow:none;
  2566. -webkit-box-shadow:none;
  2567. box-shadow:none;
  2568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2569. font-weight:400;
  2570. font-style:normal;
  2571. color:rgba(51, 51, 51, 0.996078431372549);
  2572. }
  2573. #u23823 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:666px;
  2577. top:177px;
  2578. width:43px;
  2579. height:20px;
  2580. display:flex;
  2581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2582. font-weight:400;
  2583. font-style:normal;
  2584. color:rgba(51, 51, 51, 0.996078431372549);
  2585. }
  2586. #u23823 .text {
  2587. position:absolute;
  2588. align-self:flex-start;
  2589. padding:0px 0px 0px 0px;
  2590. box-sizing:border-box;
  2591. width:100%;
  2592. }
  2593. #u23823_text {
  2594. border-width:0px;
  2595. white-space:nowrap;
  2596. text-transform:none;
  2597. }
  2598. #u23824_div {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:43px;
  2604. height:20px;
  2605. background:inherit;
  2606. background-color:rgba(255, 255, 255, 0);
  2607. border:none;
  2608. border-radius:0px;
  2609. -moz-box-shadow:none;
  2610. -webkit-box-shadow:none;
  2611. box-shadow:none;
  2612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. color:rgba(51, 51, 51, 0.996078431372549);
  2616. }
  2617. #u23824 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:795px;
  2621. top:137px;
  2622. width:43px;
  2623. height:20px;
  2624. display:flex;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. color:rgba(51, 51, 51, 0.996078431372549);
  2629. }
  2630. #u23824 .text {
  2631. position:absolute;
  2632. align-self:flex-start;
  2633. padding:0px 0px 0px 0px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u23824_text {
  2638. border-width:0px;
  2639. white-space:nowrap;
  2640. text-transform:none;
  2641. }
  2642. #u23825_div {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:43px;
  2648. height:20px;
  2649. background:inherit;
  2650. background-color:rgba(255, 255, 255, 0);
  2651. border:none;
  2652. border-radius:0px;
  2653. -moz-box-shadow:none;
  2654. -webkit-box-shadow:none;
  2655. box-shadow:none;
  2656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2657. font-weight:400;
  2658. font-style:normal;
  2659. color:rgba(51, 51, 51, 0.996078431372549);
  2660. }
  2661. #u23825 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:795px;
  2665. top:177px;
  2666. width:43px;
  2667. height:20px;
  2668. display:flex;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. color:rgba(51, 51, 51, 0.996078431372549);
  2673. }
  2674. #u23825 .text {
  2675. position:absolute;
  2676. align-self:flex-start;
  2677. padding:0px 0px 0px 0px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u23825_text {
  2682. border-width:0px;
  2683. white-space:nowrap;
  2684. text-transform:none;
  2685. }
  2686. #u23826_div {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:43px;
  2692. height:20px;
  2693. background:inherit;
  2694. background-color:rgba(255, 255, 255, 0);
  2695. border:none;
  2696. border-radius:0px;
  2697. -moz-box-shadow:none;
  2698. -webkit-box-shadow:none;
  2699. box-shadow:none;
  2700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2701. font-weight:400;
  2702. font-style:normal;
  2703. color:rgba(51, 51, 51, 0.996078431372549);
  2704. }
  2705. #u23826 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:924px;
  2709. top:137px;
  2710. width:43px;
  2711. height:20px;
  2712. display:flex;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. color:rgba(51, 51, 51, 0.996078431372549);
  2717. }
  2718. #u23826 .text {
  2719. position:absolute;
  2720. align-self:flex-start;
  2721. padding:0px 0px 0px 0px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u23826_text {
  2726. border-width:0px;
  2727. white-space:nowrap;
  2728. text-transform:none;
  2729. }
  2730. #u23827_div {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:43px;
  2736. height:20px;
  2737. background:inherit;
  2738. background-color:rgba(255, 255, 255, 0);
  2739. border:none;
  2740. border-radius:0px;
  2741. -moz-box-shadow:none;
  2742. -webkit-box-shadow:none;
  2743. box-shadow:none;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. color:rgba(51, 51, 51, 0.996078431372549);
  2748. }
  2749. #u23827 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:924px;
  2753. top:177px;
  2754. width:43px;
  2755. height:20px;
  2756. display:flex;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. color:rgba(51, 51, 51, 0.996078431372549);
  2761. }
  2762. #u23827 .text {
  2763. position:absolute;
  2764. align-self:flex-start;
  2765. padding:0px 0px 0px 0px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u23827_text {
  2770. border-width:0px;
  2771. white-space:nowrap;
  2772. text-transform:none;
  2773. }
  2774. #u23828_div {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:12px;
  2780. height:25px;
  2781. background:inherit;
  2782. background-color:rgba(255, 255, 255, 0);
  2783. border:none;
  2784. border-radius:0px;
  2785. -moz-box-shadow:none;
  2786. -webkit-box-shadow:none;
  2787. box-shadow:none;
  2788. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2789. font-weight:500;
  2790. font-style:normal;
  2791. font-size:18px;
  2792. color:rgba(51, 51, 51, 0.996078431372549);
  2793. }
  2794. #u23828 {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:594px;
  2798. top:133px;
  2799. width:12px;
  2800. height:25px;
  2801. display:flex;
  2802. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2803. font-weight:500;
  2804. font-style:normal;
  2805. font-size:18px;
  2806. color:rgba(51, 51, 51, 0.996078431372549);
  2807. }
  2808. #u23828 .text {
  2809. position:absolute;
  2810. align-self:flex-start;
  2811. padding:0px 0px 0px 0px;
  2812. box-sizing:border-box;
  2813. width:100%;
  2814. }
  2815. #u23828_text {
  2816. border-width:0px;
  2817. white-space:nowrap;
  2818. text-transform:none;
  2819. }
  2820. #u23829_div {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:12px;
  2826. height:25px;
  2827. background:inherit;
  2828. background-color:rgba(255, 255, 255, 0);
  2829. border:none;
  2830. border-radius:0px;
  2831. -moz-box-shadow:none;
  2832. -webkit-box-shadow:none;
  2833. box-shadow:none;
  2834. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2835. font-weight:500;
  2836. font-style:normal;
  2837. font-size:18px;
  2838. color:rgba(51, 51, 51, 0.996078431372549);
  2839. }
  2840. #u23829 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:594px;
  2844. top:173px;
  2845. width:12px;
  2846. height:25px;
  2847. display:flex;
  2848. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2849. font-weight:500;
  2850. font-style:normal;
  2851. font-size:18px;
  2852. color:rgba(51, 51, 51, 0.996078431372549);
  2853. }
  2854. #u23829 .text {
  2855. position:absolute;
  2856. align-self:flex-start;
  2857. padding:0px 0px 0px 0px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u23829_text {
  2862. border-width:0px;
  2863. white-space:nowrap;
  2864. text-transform:none;
  2865. }
  2866. #u23830_div {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:0px;
  2870. top:0px;
  2871. width:12px;
  2872. height:25px;
  2873. background:inherit;
  2874. background-color:rgba(255, 255, 255, 0);
  2875. border:none;
  2876. border-radius:0px;
  2877. -moz-box-shadow:none;
  2878. -webkit-box-shadow:none;
  2879. box-shadow:none;
  2880. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2881. font-weight:500;
  2882. font-style:normal;
  2883. font-size:18px;
  2884. color:rgba(51, 51, 51, 0.996078431372549);
  2885. }
  2886. #u23830 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:723px;
  2890. top:133px;
  2891. width:12px;
  2892. height:25px;
  2893. display:flex;
  2894. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2895. font-weight:500;
  2896. font-style:normal;
  2897. font-size:18px;
  2898. color:rgba(51, 51, 51, 0.996078431372549);
  2899. }
  2900. #u23830 .text {
  2901. position:absolute;
  2902. align-self:flex-start;
  2903. padding:0px 0px 0px 0px;
  2904. box-sizing:border-box;
  2905. width:100%;
  2906. }
  2907. #u23830_text {
  2908. border-width:0px;
  2909. white-space:nowrap;
  2910. text-transform:none;
  2911. }
  2912. #u23831_div {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:0px;
  2916. top:0px;
  2917. width:12px;
  2918. height:25px;
  2919. background:inherit;
  2920. background-color:rgba(255, 255, 255, 0);
  2921. border:none;
  2922. border-radius:0px;
  2923. -moz-box-shadow:none;
  2924. -webkit-box-shadow:none;
  2925. box-shadow:none;
  2926. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2927. font-weight:500;
  2928. font-style:normal;
  2929. font-size:18px;
  2930. color:rgba(51, 51, 51, 0.996078431372549);
  2931. }
  2932. #u23831 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:723px;
  2936. top:173px;
  2937. width:12px;
  2938. height:25px;
  2939. display:flex;
  2940. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2941. font-weight:500;
  2942. font-style:normal;
  2943. font-size:18px;
  2944. color:rgba(51, 51, 51, 0.996078431372549);
  2945. }
  2946. #u23831 .text {
  2947. position:absolute;
  2948. align-self:flex-start;
  2949. padding:0px 0px 0px 0px;
  2950. box-sizing:border-box;
  2951. width:100%;
  2952. }
  2953. #u23831_text {
  2954. border-width:0px;
  2955. white-space:nowrap;
  2956. text-transform:none;
  2957. }
  2958. #u23832_div {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:0px;
  2962. top:0px;
  2963. width:12px;
  2964. height:25px;
  2965. background:inherit;
  2966. background-color:rgba(255, 255, 255, 0);
  2967. border:none;
  2968. border-radius:0px;
  2969. -moz-box-shadow:none;
  2970. -webkit-box-shadow:none;
  2971. box-shadow:none;
  2972. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2973. font-weight:500;
  2974. font-style:normal;
  2975. font-size:18px;
  2976. color:rgba(51, 51, 51, 0.996078431372549);
  2977. }
  2978. #u23832 {
  2979. border-width:0px;
  2980. position:absolute;
  2981. left:852px;
  2982. top:133px;
  2983. width:12px;
  2984. height:25px;
  2985. display:flex;
  2986. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2987. font-weight:500;
  2988. font-style:normal;
  2989. font-size:18px;
  2990. color:rgba(51, 51, 51, 0.996078431372549);
  2991. }
  2992. #u23832 .text {
  2993. position:absolute;
  2994. align-self:flex-start;
  2995. padding:0px 0px 0px 0px;
  2996. box-sizing:border-box;
  2997. width:100%;
  2998. }
  2999. #u23832_text {
  3000. border-width:0px;
  3001. white-space:nowrap;
  3002. text-transform:none;
  3003. }
  3004. #u23833_div {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:12px;
  3010. height:25px;
  3011. background:inherit;
  3012. background-color:rgba(255, 255, 255, 0);
  3013. border:none;
  3014. border-radius:0px;
  3015. -moz-box-shadow:none;
  3016. -webkit-box-shadow:none;
  3017. box-shadow:none;
  3018. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3019. font-weight:500;
  3020. font-style:normal;
  3021. font-size:18px;
  3022. color:rgba(51, 51, 51, 0.996078431372549);
  3023. }
  3024. #u23833 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:852px;
  3028. top:173px;
  3029. width:12px;
  3030. height:25px;
  3031. display:flex;
  3032. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3033. font-weight:500;
  3034. font-style:normal;
  3035. font-size:18px;
  3036. color:rgba(51, 51, 51, 0.996078431372549);
  3037. }
  3038. #u23833 .text {
  3039. position:absolute;
  3040. align-self:flex-start;
  3041. padding:0px 0px 0px 0px;
  3042. box-sizing:border-box;
  3043. width:100%;
  3044. }
  3045. #u23833_text {
  3046. border-width:0px;
  3047. white-space:nowrap;
  3048. text-transform:none;
  3049. }
  3050. #u23834_div {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:0px;
  3054. top:0px;
  3055. width:12px;
  3056. height:25px;
  3057. background:inherit;
  3058. background-color:rgba(255, 255, 255, 0);
  3059. border:none;
  3060. border-radius:0px;
  3061. -moz-box-shadow:none;
  3062. -webkit-box-shadow:none;
  3063. box-shadow:none;
  3064. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3065. font-weight:500;
  3066. font-style:normal;
  3067. font-size:18px;
  3068. color:rgba(51, 51, 51, 0.996078431372549);
  3069. }
  3070. #u23834 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:981px;
  3074. top:133px;
  3075. width:12px;
  3076. height:25px;
  3077. display:flex;
  3078. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3079. font-weight:500;
  3080. font-style:normal;
  3081. font-size:18px;
  3082. color:rgba(51, 51, 51, 0.996078431372549);
  3083. }
  3084. #u23834 .text {
  3085. position:absolute;
  3086. align-self:flex-start;
  3087. padding:0px 0px 0px 0px;
  3088. box-sizing:border-box;
  3089. width:100%;
  3090. }
  3091. #u23834_text {
  3092. border-width:0px;
  3093. white-space:nowrap;
  3094. text-transform:none;
  3095. }
  3096. #u23835_div {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:12px;
  3102. height:25px;
  3103. background:inherit;
  3104. background-color:rgba(255, 255, 255, 0);
  3105. border:none;
  3106. border-radius:0px;
  3107. -moz-box-shadow:none;
  3108. -webkit-box-shadow:none;
  3109. box-shadow:none;
  3110. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3111. font-weight:500;
  3112. font-style:normal;
  3113. font-size:18px;
  3114. color:rgba(51, 51, 51, 0.996078431372549);
  3115. }
  3116. #u23835 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:981px;
  3120. top:173px;
  3121. width:12px;
  3122. height:25px;
  3123. display:flex;
  3124. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3125. font-weight:500;
  3126. font-style:normal;
  3127. font-size:18px;
  3128. color:rgba(51, 51, 51, 0.996078431372549);
  3129. }
  3130. #u23835 .text {
  3131. position:absolute;
  3132. align-self:flex-start;
  3133. padding:0px 0px 0px 0px;
  3134. box-sizing:border-box;
  3135. width:100%;
  3136. }
  3137. #u23835_text {
  3138. border-width:0px;
  3139. white-space:nowrap;
  3140. text-transform:none;
  3141. }
  3142. #u23836 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:0px;
  3147. width:0px;
  3148. height:0px;
  3149. }
  3150. #u23837_div {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:228px;
  3156. height:120px;
  3157. background:inherit;
  3158. background-color:rgba(255, 255, 255, 1);
  3159. border:none;
  3160. border-radius:0px;
  3161. -moz-box-shadow:none;
  3162. -webkit-box-shadow:none;
  3163. box-shadow:none;
  3164. font-family:'Microsoft YaHei', sans-serif;
  3165. font-weight:400;
  3166. font-style:normal;
  3167. }
  3168. #u23837 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:1110px;
  3172. top:107px;
  3173. width:228px;
  3174. height:120px;
  3175. display:flex;
  3176. font-family:'Microsoft YaHei', sans-serif;
  3177. font-weight:400;
  3178. font-style:normal;
  3179. }
  3180. #u23837 .text {
  3181. position:absolute;
  3182. align-self:center;
  3183. padding:2px 2px 2px 2px;
  3184. box-sizing:border-box;
  3185. width:100%;
  3186. }
  3187. #u23837_div.selected {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:228px;
  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:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3199. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3200. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3201. font-family:'Microsoft YaHei', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. }
  3205. #u23837.selected {
  3206. }
  3207. #u23837_text {
  3208. border-width:0px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. visibility:hidden;
  3212. }
  3213. #u23838_div {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:85px;
  3219. height:17px;
  3220. background:inherit;
  3221. background-color:rgba(255, 255, 255, 0);
  3222. border:none;
  3223. border-radius:0px;
  3224. -moz-box-shadow:none;
  3225. -webkit-box-shadow:none;
  3226. box-shadow:none;
  3227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3228. font-weight:400;
  3229. font-style:normal;
  3230. font-size:12px;
  3231. color:rgba(51, 51, 51, 0.996078431372549);
  3232. }
  3233. #u23838 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:1130px;
  3237. top:117px;
  3238. width:85px;
  3239. height:17px;
  3240. display:flex;
  3241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:12px;
  3245. color:rgba(51, 51, 51, 0.996078431372549);
  3246. }
  3247. #u23838 .text {
  3248. position:absolute;
  3249. align-self:flex-start;
  3250. padding:0px 0px 0px 0px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u23838_text {
  3255. border-width:0px;
  3256. word-wrap:break-word;
  3257. text-transform:none;
  3258. }
  3259. #u23839_div {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:44px;
  3265. height:34px;
  3266. background:inherit;
  3267. background-color:rgba(255, 255, 255, 0);
  3268. border:none;
  3269. border-radius:0px;
  3270. -moz-box-shadow:none;
  3271. -webkit-box-shadow:none;
  3272. box-shadow:none;
  3273. font-size:30px;
  3274. color:rgba(51, 51, 51, 0.996078431372549);
  3275. }
  3276. #u23839 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:1130px;
  3280. top:139px;
  3281. width:44px;
  3282. height:34px;
  3283. display:flex;
  3284. font-size:30px;
  3285. color:rgba(51, 51, 51, 0.996078431372549);
  3286. }
  3287. #u23839 .text {
  3288. position:absolute;
  3289. align-self:flex-start;
  3290. padding:0px 0px 0px 0px;
  3291. box-sizing:border-box;
  3292. width:100%;
  3293. }
  3294. #u23839_text {
  3295. border-width:0px;
  3296. word-wrap:break-word;
  3297. text-transform:none;
  3298. }
  3299. #u23840_img {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:10px;
  3305. height:10px;
  3306. }
  3307. #u23840 {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:1317px;
  3311. top:121px;
  3312. width:10px;
  3313. height:10px;
  3314. display:flex;
  3315. }
  3316. #u23840 .text {
  3317. position:absolute;
  3318. align-self:center;
  3319. padding:2px 2px 2px 2px;
  3320. box-sizing:border-box;
  3321. width:100%;
  3322. }
  3323. #u23840_text {
  3324. border-width:0px;
  3325. word-wrap:break-word;
  3326. text-transform:none;
  3327. visibility:hidden;
  3328. }
  3329. #u23841_img {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:0px;
  3333. top:0px;
  3334. width:200px;
  3335. height:2px;
  3336. }
  3337. #u23841 {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:1126px;
  3341. top:196px;
  3342. width:199px;
  3343. height:1px;
  3344. display:flex;
  3345. }
  3346. #u23841 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:2px 2px 2px 2px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u23841_text {
  3354. border-width:0px;
  3355. word-wrap:break-word;
  3356. text-transform:none;
  3357. visibility:hidden;
  3358. }
  3359. #u23842_div {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:68px;
  3365. height:17px;
  3366. background:inherit;
  3367. background-color:rgba(255, 255, 255, 0);
  3368. border:none;
  3369. border-radius:0px;
  3370. -moz-box-shadow:none;
  3371. -webkit-box-shadow:none;
  3372. box-shadow:none;
  3373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3374. font-weight:400;
  3375. font-style:normal;
  3376. font-size:12px;
  3377. color:rgba(127, 127, 127, 0.996078431372549);
  3378. }
  3379. #u23842 {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:1135px;
  3383. top:204px;
  3384. width:68px;
  3385. height:17px;
  3386. display:flex;
  3387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3388. font-weight:400;
  3389. font-style:normal;
  3390. font-size:12px;
  3391. color:rgba(127, 127, 127, 0.996078431372549);
  3392. }
  3393. #u23842 .text {
  3394. position:absolute;
  3395. align-self:flex-start;
  3396. padding:0px 0px 0px 0px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u23842_text {
  3401. border-width:0px;
  3402. word-wrap:break-word;
  3403. text-transform:none;
  3404. }
  3405. #u23843_div {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:0px;
  3409. top:0px;
  3410. width:68px;
  3411. height:17px;
  3412. background:inherit;
  3413. background-color:rgba(255, 255, 255, 0);
  3414. border:none;
  3415. border-radius:0px;
  3416. -moz-box-shadow:none;
  3417. -webkit-box-shadow:none;
  3418. box-shadow:none;
  3419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3420. font-weight:400;
  3421. font-style:normal;
  3422. font-size:12px;
  3423. }
  3424. #u23843 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:1251px;
  3428. top:204px;
  3429. width:68px;
  3430. height:17px;
  3431. display:flex;
  3432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3433. font-weight:400;
  3434. font-style:normal;
  3435. font-size:12px;
  3436. }
  3437. #u23843 .text {
  3438. position:absolute;
  3439. align-self:flex-start;
  3440. padding:0px 0px 0px 0px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u23843_text {
  3445. border-width:0px;
  3446. word-wrap:break-word;
  3447. text-transform:none;
  3448. }
  3449. #u23844_img {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:1235px;
  3455. height:460px;
  3456. }
  3457. #u23844 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:345px;
  3461. top:247px;
  3462. width:1235px;
  3463. height:460px;
  3464. display:flex;
  3465. }
  3466. #u23844 .text {
  3467. position:absolute;
  3468. align-self:center;
  3469. padding:0px 0px 0px 0px;
  3470. box-sizing:border-box;
  3471. width:100%;
  3472. }
  3473. #u23844_text {
  3474. border-width:0px;
  3475. word-wrap:break-word;
  3476. text-transform:none;
  3477. visibility:hidden;
  3478. }
  3479. #u23845 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:0px;
  3485. height:0px;
  3486. }
  3487. #u23846_img {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:0px;
  3491. top:0px;
  3492. width:308px;
  3493. height:6px;
  3494. }
  3495. #u23846p000 {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:-6px;
  3499. top:-1px;
  3500. width:12px;
  3501. height:6px;
  3502. -webkit-transform:rotate(90deg);
  3503. -moz-transform:rotate(90deg);
  3504. -ms-transform:rotate(90deg);
  3505. transform:rotate(90deg);
  3506. }
  3507. #u23846p000_img {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:0px;
  3511. top:0px;
  3512. width:12px;
  3513. height:6px;
  3514. }
  3515. #u23846p001 {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:56px;
  3519. top:-1px;
  3520. width:12px;
  3521. height:6px;
  3522. -webkit-transform:rotate(90deg);
  3523. -moz-transform:rotate(90deg);
  3524. -ms-transform:rotate(90deg);
  3525. transform:rotate(90deg);
  3526. }
  3527. #u23846p001_img {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:12px;
  3533. height:6px;
  3534. }
  3535. #u23846p002 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:118px;
  3539. top:-1px;
  3540. width:10px;
  3541. height:6px;
  3542. -webkit-transform:rotate(90deg);
  3543. -moz-transform:rotate(90deg);
  3544. -ms-transform:rotate(90deg);
  3545. transform:rotate(90deg);
  3546. }
  3547. #u23846p002_img {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:10px;
  3553. height:6px;
  3554. }
  3555. #u23846p003 {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:178px;
  3559. top:-1px;
  3560. width:12px;
  3561. height:6px;
  3562. -webkit-transform:rotate(90deg);
  3563. -moz-transform:rotate(90deg);
  3564. -ms-transform:rotate(90deg);
  3565. transform:rotate(90deg);
  3566. }
  3567. #u23846p003_img {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:12px;
  3573. height:6px;
  3574. }
  3575. #u23846p004 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:240px;
  3579. top:-1px;
  3580. width:10px;
  3581. height:6px;
  3582. -webkit-transform:rotate(90deg);
  3583. -moz-transform:rotate(90deg);
  3584. -ms-transform:rotate(90deg);
  3585. transform:rotate(90deg);
  3586. }
  3587. #u23846p004_img {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:10px;
  3593. height:6px;
  3594. }
  3595. #u23846p005 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:302px;
  3599. top:-1px;
  3600. width:10px;
  3601. height:6px;
  3602. -webkit-transform:rotate(90deg);
  3603. -moz-transform:rotate(90deg);
  3604. -ms-transform:rotate(90deg);
  3605. transform:rotate(90deg);
  3606. }
  3607. #u23846p005_img {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:0px;
  3611. top:0px;
  3612. width:10px;
  3613. height:6px;
  3614. }
  3615. #u23846.compound {
  3616. width:0px;
  3617. height:0px;
  3618. }
  3619. #u23846 {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:418px;
  3623. top:639px;
  3624. width:307px;
  3625. height:5px;
  3626. display:flex;
  3627. opacity:0.619607843137255;
  3628. }
  3629. #u23846 .text {
  3630. position:absolute;
  3631. align-self:center;
  3632. padding:0px 0px 0px 0px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u23846_text {
  3637. border-width:0px;
  3638. word-wrap:break-word;
  3639. text-transform:none;
  3640. visibility:hidden;
  3641. }
  3642. #u23847_div {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:29px;
  3648. height:16px;
  3649. background:inherit;
  3650. background-color:rgba(255, 255, 255, 0);
  3651. border:none;
  3652. border-radius:0px;
  3653. -moz-box-shadow:none;
  3654. -webkit-box-shadow:none;
  3655. box-shadow:none;
  3656. font-family:'Helvetica', sans-serif;
  3657. font-weight:400;
  3658. font-style:normal;
  3659. font-size:12px;
  3660. color:rgba(0, 0, 0, 0.996078431372549);
  3661. text-align:left;
  3662. }
  3663. #u23847 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:412px;
  3667. top:650px;
  3668. width:29px;
  3669. height:16px;
  3670. display:flex;
  3671. font-family:'Helvetica', sans-serif;
  3672. font-weight:400;
  3673. font-style:normal;
  3674. font-size:12px;
  3675. color:rgba(0, 0, 0, 0.996078431372549);
  3676. text-align:left;
  3677. }
  3678. #u23847 .text {
  3679. position:absolute;
  3680. align-self:flex-start;
  3681. padding:0px 0px 0px 0px;
  3682. box-sizing:border-box;
  3683. width:100%;
  3684. }
  3685. #u23847_text {
  3686. border-width:0px;
  3687. word-wrap:break-word;
  3688. text-transform:none;
  3689. }
  3690. #u23848_div {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:0px;
  3695. width:29px;
  3696. height:16px;
  3697. background:inherit;
  3698. background-color:rgba(255, 255, 255, 0);
  3699. border:none;
  3700. border-radius:0px;
  3701. -moz-box-shadow:none;
  3702. -webkit-box-shadow:none;
  3703. box-shadow:none;
  3704. font-family:'Helvetica', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:12px;
  3708. color:rgba(0, 0, 0, 0.996078431372549);
  3709. text-align:left;
  3710. }
  3711. #u23848 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:474px;
  3715. top:650px;
  3716. width:29px;
  3717. height:16px;
  3718. display:flex;
  3719. font-family:'Helvetica', sans-serif;
  3720. font-weight:400;
  3721. font-style:normal;
  3722. font-size:12px;
  3723. color:rgba(0, 0, 0, 0.996078431372549);
  3724. text-align:left;
  3725. }
  3726. #u23848 .text {
  3727. position:absolute;
  3728. align-self:flex-start;
  3729. padding:0px 0px 0px 0px;
  3730. box-sizing:border-box;
  3731. width:100%;
  3732. }
  3733. #u23848_text {
  3734. border-width:0px;
  3735. word-wrap:break-word;
  3736. text-transform:none;
  3737. }
  3738. #u23849_div {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:29px;
  3744. height:16px;
  3745. background:inherit;
  3746. background-color:rgba(255, 255, 255, 0);
  3747. border:none;
  3748. border-radius:0px;
  3749. -moz-box-shadow:none;
  3750. -webkit-box-shadow:none;
  3751. box-shadow:none;
  3752. font-family:'Helvetica', sans-serif;
  3753. font-weight:400;
  3754. font-style:normal;
  3755. font-size:12px;
  3756. color:rgba(0, 0, 0, 0.996078431372549);
  3757. text-align:left;
  3758. }
  3759. #u23849 {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:537px;
  3763. top:650px;
  3764. width:29px;
  3765. height:16px;
  3766. display:flex;
  3767. font-family:'Helvetica', sans-serif;
  3768. font-weight:400;
  3769. font-style:normal;
  3770. font-size:12px;
  3771. color:rgba(0, 0, 0, 0.996078431372549);
  3772. text-align:left;
  3773. }
  3774. #u23849 .text {
  3775. position:absolute;
  3776. align-self:flex-start;
  3777. padding:0px 0px 0px 0px;
  3778. box-sizing:border-box;
  3779. width:100%;
  3780. }
  3781. #u23849_text {
  3782. border-width:0px;
  3783. word-wrap:break-word;
  3784. text-transform:none;
  3785. }
  3786. #u23850_div {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:29px;
  3792. height:16px;
  3793. background:inherit;
  3794. background-color:rgba(255, 255, 255, 0);
  3795. border:none;
  3796. border-radius:0px;
  3797. -moz-box-shadow:none;
  3798. -webkit-box-shadow:none;
  3799. box-shadow:none;
  3800. font-family:'Helvetica', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. font-size:12px;
  3804. color:rgba(0, 0, 0, 0.996078431372549);
  3805. text-align:left;
  3806. }
  3807. #u23850 {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:599px;
  3811. top:650px;
  3812. width:29px;
  3813. height:16px;
  3814. display:flex;
  3815. font-family:'Helvetica', sans-serif;
  3816. font-weight:400;
  3817. font-style:normal;
  3818. font-size:12px;
  3819. color:rgba(0, 0, 0, 0.996078431372549);
  3820. text-align:left;
  3821. }
  3822. #u23850 .text {
  3823. position:absolute;
  3824. align-self:flex-start;
  3825. padding:0px 0px 0px 0px;
  3826. box-sizing:border-box;
  3827. width:100%;
  3828. }
  3829. #u23850_text {
  3830. border-width:0px;
  3831. word-wrap:break-word;
  3832. text-transform:none;
  3833. }
  3834. #u23851_div {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:29px;
  3840. height:16px;
  3841. background:inherit;
  3842. background-color:rgba(255, 255, 255, 0);
  3843. border:none;
  3844. border-radius:0px;
  3845. -moz-box-shadow:none;
  3846. -webkit-box-shadow:none;
  3847. box-shadow:none;
  3848. font-family:'Helvetica', sans-serif;
  3849. font-weight:400;
  3850. font-style:normal;
  3851. font-size:12px;
  3852. color:rgba(0, 0, 0, 0.996078431372549);
  3853. text-align:left;
  3854. }
  3855. #u23851 {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:662px;
  3859. top:650px;
  3860. width:29px;
  3861. height:16px;
  3862. display:flex;
  3863. font-family:'Helvetica', sans-serif;
  3864. font-weight:400;
  3865. font-style:normal;
  3866. font-size:12px;
  3867. color:rgba(0, 0, 0, 0.996078431372549);
  3868. text-align:left;
  3869. }
  3870. #u23851 .text {
  3871. position:absolute;
  3872. align-self:flex-start;
  3873. padding:0px 0px 0px 0px;
  3874. box-sizing:border-box;
  3875. width:100%;
  3876. }
  3877. #u23851_text {
  3878. border-width:0px;
  3879. word-wrap:break-word;
  3880. text-transform:none;
  3881. }
  3882. #u23852_div {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:29px;
  3888. height:16px;
  3889. background:inherit;
  3890. background-color:rgba(255, 255, 255, 0);
  3891. border:none;
  3892. border-radius:0px;
  3893. -moz-box-shadow:none;
  3894. -webkit-box-shadow:none;
  3895. box-shadow:none;
  3896. font-family:'Helvetica', sans-serif;
  3897. font-weight:400;
  3898. font-style:normal;
  3899. font-size:12px;
  3900. color:rgba(0, 0, 0, 0.996078431372549);
  3901. text-align:left;
  3902. }
  3903. #u23852 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:724px;
  3907. top:650px;
  3908. width:29px;
  3909. height:16px;
  3910. display:flex;
  3911. font-family:'Helvetica', sans-serif;
  3912. font-weight:400;
  3913. font-style:normal;
  3914. font-size:12px;
  3915. color:rgba(0, 0, 0, 0.996078431372549);
  3916. text-align:left;
  3917. }
  3918. #u23852 .text {
  3919. position:absolute;
  3920. align-self:flex-start;
  3921. padding:0px 0px 0px 0px;
  3922. box-sizing:border-box;
  3923. width:100%;
  3924. }
  3925. #u23852_text {
  3926. border-width:0px;
  3927. word-wrap:break-word;
  3928. text-transform:none;
  3929. }
  3930. #u23853_img {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:729px;
  3936. height:2px;
  3937. }
  3938. #u23853 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:393px;
  3942. top:638px;
  3943. width:728px;
  3944. height:1px;
  3945. display:flex;
  3946. }
  3947. #u23853 .text {
  3948. position:absolute;
  3949. align-self:center;
  3950. padding:0px 0px 0px 0px;
  3951. box-sizing:border-box;
  3952. width:100%;
  3953. }
  3954. #u23853_text {
  3955. border-width:0px;
  3956. word-wrap:break-word;
  3957. text-transform:none;
  3958. visibility:hidden;
  3959. }
  3960. #u23854_img {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:729px;
  3966. height:2px;
  3967. }
  3968. #u23854 {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:393px;
  3972. top:578px;
  3973. width:728px;
  3974. height:1px;
  3975. display:flex;
  3976. }
  3977. #u23854 .text {
  3978. position:absolute;
  3979. align-self:center;
  3980. padding:0px 0px 0px 0px;
  3981. box-sizing:border-box;
  3982. width:100%;
  3983. }
  3984. #u23854_text {
  3985. border-width:0px;
  3986. word-wrap:break-word;
  3987. text-transform:none;
  3988. visibility:hidden;
  3989. }
  3990. #u23855_img {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:0px;
  3994. top:0px;
  3995. width:729px;
  3996. height:2px;
  3997. }
  3998. #u23855 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:393px;
  4002. top:516px;
  4003. width:728px;
  4004. height:1px;
  4005. display:flex;
  4006. }
  4007. #u23855 .text {
  4008. position:absolute;
  4009. align-self:center;
  4010. padding:0px 0px 0px 0px;
  4011. box-sizing:border-box;
  4012. width:100%;
  4013. }
  4014. #u23855_text {
  4015. border-width:0px;
  4016. word-wrap:break-word;
  4017. text-transform:none;
  4018. visibility:hidden;
  4019. }
  4020. #u23856_img {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:0px;
  4024. top:0px;
  4025. width:729px;
  4026. height:2px;
  4027. }
  4028. #u23856 {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:393px;
  4032. top:456px;
  4033. width:728px;
  4034. height:1px;
  4035. display:flex;
  4036. }
  4037. #u23856 .text {
  4038. position:absolute;
  4039. align-self:center;
  4040. padding:0px 0px 0px 0px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u23856_text {
  4045. border-width:0px;
  4046. word-wrap:break-word;
  4047. text-transform:none;
  4048. visibility:hidden;
  4049. }
  4050. #u23857_img {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:0px;
  4054. top:0px;
  4055. width:729px;
  4056. height:2px;
  4057. }
  4058. #u23857 {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:393px;
  4062. top:396px;
  4063. width:728px;
  4064. height:1px;
  4065. display:flex;
  4066. }
  4067. #u23857 .text {
  4068. position:absolute;
  4069. align-self:center;
  4070. padding:0px 0px 0px 0px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u23857_text {
  4075. border-width:0px;
  4076. word-wrap:break-word;
  4077. text-transform:none;
  4078. visibility:hidden;
  4079. }
  4080. #u23858_div {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:5px;
  4086. height:16px;
  4087. background:inherit;
  4088. background-color:rgba(255, 255, 255, 0);
  4089. border:none;
  4090. border-radius:0px;
  4091. -moz-box-shadow:none;
  4092. -webkit-box-shadow:none;
  4093. box-shadow:none;
  4094. font-family:'Helvetica', sans-serif;
  4095. font-weight:400;
  4096. font-style:normal;
  4097. font-size:12px;
  4098. color:rgba(0, 0, 0, 0.988235294117647);
  4099. text-align:left;
  4100. }
  4101. #u23858 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:383px;
  4105. top:632px;
  4106. width:5px;
  4107. height:16px;
  4108. display:flex;
  4109. font-family:'Helvetica', sans-serif;
  4110. font-weight:400;
  4111. font-style:normal;
  4112. font-size:12px;
  4113. color:rgba(0, 0, 0, 0.988235294117647);
  4114. text-align:left;
  4115. }
  4116. #u23858 .text {
  4117. position:absolute;
  4118. align-self:flex-start;
  4119. padding:0px 0px 0px 0px;
  4120. box-sizing:border-box;
  4121. width:100%;
  4122. }
  4123. #u23858_text {
  4124. border-width:0px;
  4125. word-wrap:break-word;
  4126. text-transform:none;
  4127. }
  4128. #u23859_div {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:0px;
  4132. top:0px;
  4133. width:14px;
  4134. height:16px;
  4135. background:inherit;
  4136. background-color:rgba(255, 255, 255, 0);
  4137. border:none;
  4138. border-radius:0px;
  4139. -moz-box-shadow:none;
  4140. -webkit-box-shadow:none;
  4141. box-shadow:none;
  4142. font-family:'Helvetica', sans-serif;
  4143. font-weight:400;
  4144. font-style:normal;
  4145. font-size:12px;
  4146. color:rgba(0, 0, 0, 0.988235294117647);
  4147. text-align:left;
  4148. }
  4149. #u23859 {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:374px;
  4153. top:571px;
  4154. width:14px;
  4155. height:16px;
  4156. display:flex;
  4157. font-family:'Helvetica', sans-serif;
  4158. font-weight:400;
  4159. font-style:normal;
  4160. font-size:12px;
  4161. color:rgba(0, 0, 0, 0.988235294117647);
  4162. text-align:left;
  4163. }
  4164. #u23859 .text {
  4165. position:absolute;
  4166. align-self:flex-start;
  4167. padding:0px 0px 0px 0px;
  4168. box-sizing:border-box;
  4169. width:100%;
  4170. }
  4171. #u23859_text {
  4172. border-width:0px;
  4173. white-space:nowrap;
  4174. text-transform:none;
  4175. }
  4176. #u23860_div {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:21px;
  4182. height:16px;
  4183. background:inherit;
  4184. background-color:rgba(255, 255, 255, 0);
  4185. border:none;
  4186. border-radius:0px;
  4187. -moz-box-shadow:none;
  4188. -webkit-box-shadow:none;
  4189. box-shadow:none;
  4190. font-family:'Helvetica', sans-serif;
  4191. font-weight:400;
  4192. font-style:normal;
  4193. font-size:12px;
  4194. color:rgba(0, 0, 0, 0.988235294117647);
  4195. text-align:left;
  4196. }
  4197. #u23860 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:374px;
  4201. top:511px;
  4202. width:21px;
  4203. height:16px;
  4204. display:flex;
  4205. font-family:'Helvetica', sans-serif;
  4206. font-weight:400;
  4207. font-style:normal;
  4208. font-size:12px;
  4209. color:rgba(0, 0, 0, 0.988235294117647);
  4210. text-align:left;
  4211. }
  4212. #u23860 .text {
  4213. position:absolute;
  4214. align-self:flex-start;
  4215. padding:0px 0px 0px 0px;
  4216. box-sizing:border-box;
  4217. width:100%;
  4218. }
  4219. #u23860_text {
  4220. border-width:0px;
  4221. white-space:nowrap;
  4222. text-transform:none;
  4223. }
  4224. #u23861_div {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:21px;
  4230. height:16px;
  4231. background:inherit;
  4232. background-color:rgba(255, 255, 255, 0);
  4233. border:none;
  4234. border-radius:0px;
  4235. -moz-box-shadow:none;
  4236. -webkit-box-shadow:none;
  4237. box-shadow:none;
  4238. font-family:'Helvetica', sans-serif;
  4239. font-weight:400;
  4240. font-style:normal;
  4241. font-size:12px;
  4242. color:rgba(0, 0, 0, 0.988235294117647);
  4243. text-align:left;
  4244. }
  4245. #u23861 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:374px;
  4249. top:449px;
  4250. width:21px;
  4251. height:16px;
  4252. display:flex;
  4253. font-family:'Helvetica', sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. font-size:12px;
  4257. color:rgba(0, 0, 0, 0.988235294117647);
  4258. text-align:left;
  4259. }
  4260. #u23861 .text {
  4261. position:absolute;
  4262. align-self:flex-start;
  4263. padding:0px 0px 0px 0px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u23861_text {
  4268. border-width:0px;
  4269. white-space:nowrap;
  4270. text-transform:none;
  4271. }
  4272. #u23862_div {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:0px;
  4276. top:0px;
  4277. width:21px;
  4278. height:16px;
  4279. background:inherit;
  4280. background-color:rgba(255, 255, 255, 0);
  4281. border:none;
  4282. border-radius:0px;
  4283. -moz-box-shadow:none;
  4284. -webkit-box-shadow:none;
  4285. box-shadow:none;
  4286. font-family:'Helvetica', sans-serif;
  4287. font-weight:400;
  4288. font-style:normal;
  4289. font-size:12px;
  4290. color:rgba(0, 0, 0, 0.988235294117647);
  4291. text-align:left;
  4292. }
  4293. #u23862 {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:370px;
  4297. top:389px;
  4298. width:21px;
  4299. height:16px;
  4300. display:flex;
  4301. font-family:'Helvetica', sans-serif;
  4302. font-weight:400;
  4303. font-style:normal;
  4304. font-size:12px;
  4305. color:rgba(0, 0, 0, 0.988235294117647);
  4306. text-align:left;
  4307. }
  4308. #u23862 .text {
  4309. position:absolute;
  4310. align-self:flex-start;
  4311. padding:0px 0px 0px 0px;
  4312. box-sizing:border-box;
  4313. width:100%;
  4314. }
  4315. #u23862_text {
  4316. border-width:0px;
  4317. white-space:nowrap;
  4318. text-transform:none;
  4319. }
  4320. #u23863_img {
  4321. border-width:0px;
  4322. position:absolute;
  4323. left:0px;
  4324. top:0px;
  4325. width:353px;
  4326. height:7px;
  4327. }
  4328. #u23863p000 {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:-5px;
  4332. top:0px;
  4333. width:12px;
  4334. height:6px;
  4335. -webkit-transform:rotate(90deg);
  4336. -moz-transform:rotate(90deg);
  4337. -ms-transform:rotate(90deg);
  4338. transform:rotate(90deg);
  4339. }
  4340. #u23863p000_img {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:12px;
  4346. height:6px;
  4347. }
  4348. #u23863p001 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:65px;
  4352. top:0px;
  4353. width:12px;
  4354. height:6px;
  4355. -webkit-transform:rotate(90deg);
  4356. -moz-transform:rotate(90deg);
  4357. -ms-transform:rotate(90deg);
  4358. transform:rotate(90deg);
  4359. }
  4360. #u23863p001_img {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:12px;
  4366. height:6px;
  4367. }
  4368. #u23863p002 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:135px;
  4372. top:0px;
  4373. width:12px;
  4374. height:6px;
  4375. -webkit-transform:rotate(90deg);
  4376. -moz-transform:rotate(90deg);
  4377. -ms-transform:rotate(90deg);
  4378. transform:rotate(90deg);
  4379. }
  4380. #u23863p002_img {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:0px;
  4384. top:0px;
  4385. width:12px;
  4386. height:6px;
  4387. }
  4388. #u23863p003 {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:205px;
  4392. top:0px;
  4393. width:12px;
  4394. height:6px;
  4395. -webkit-transform:rotate(90deg);
  4396. -moz-transform:rotate(90deg);
  4397. -ms-transform:rotate(90deg);
  4398. transform:rotate(90deg);
  4399. }
  4400. #u23863p003_img {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:0px;
  4404. top:0px;
  4405. width:12px;
  4406. height:6px;
  4407. }
  4408. #u23863p004 {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:275px;
  4412. top:0px;
  4413. width:12px;
  4414. height:6px;
  4415. -webkit-transform:rotate(90deg);
  4416. -moz-transform:rotate(90deg);
  4417. -ms-transform:rotate(90deg);
  4418. transform:rotate(90deg);
  4419. }
  4420. #u23863p004_img {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:0px;
  4424. top:0px;
  4425. width:12px;
  4426. height:6px;
  4427. }
  4428. #u23863p005 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:345px;
  4432. top:0px;
  4433. width:12px;
  4434. height:6px;
  4435. -webkit-transform:rotate(90deg);
  4436. -moz-transform:rotate(90deg);
  4437. -ms-transform:rotate(90deg);
  4438. transform:rotate(90deg);
  4439. }
  4440. #u23863p005_img {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:0px;
  4444. top:0px;
  4445. width:12px;
  4446. height:6px;
  4447. }
  4448. #u23863.compound {
  4449. width:0px;
  4450. height:0px;
  4451. }
  4452. #u23863 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:765px;
  4456. top:638px;
  4457. width:352px;
  4458. height:6px;
  4459. display:flex;
  4460. opacity:0.2;
  4461. }
  4462. #u23863 .text {
  4463. position:absolute;
  4464. align-self:center;
  4465. padding:0px 0px 0px 0px;
  4466. box-sizing:border-box;
  4467. width:100%;
  4468. }
  4469. #u23863_text {
  4470. border-width:0px;
  4471. word-wrap:break-word;
  4472. text-transform:none;
  4473. visibility:hidden;
  4474. }
  4475. #u23864_div {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:29px;
  4481. height:16px;
  4482. background:inherit;
  4483. background-color:rgba(255, 255, 255, 0);
  4484. border:none;
  4485. border-radius:0px;
  4486. -moz-box-shadow:none;
  4487. -webkit-box-shadow:none;
  4488. box-shadow:none;
  4489. font-family:'Helvetica', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:12px;
  4493. color:rgba(0, 0, 0, 0.996078431372549);
  4494. text-align:left;
  4495. }
  4496. #u23864 {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:787px;
  4500. top:650px;
  4501. width:29px;
  4502. height:16px;
  4503. display:flex;
  4504. font-family:'Helvetica', sans-serif;
  4505. font-weight:400;
  4506. font-style:normal;
  4507. font-size:12px;
  4508. color:rgba(0, 0, 0, 0.996078431372549);
  4509. text-align:left;
  4510. }
  4511. #u23864 .text {
  4512. position:absolute;
  4513. align-self:flex-start;
  4514. padding:0px 0px 0px 0px;
  4515. box-sizing:border-box;
  4516. width:100%;
  4517. }
  4518. #u23864_text {
  4519. border-width:0px;
  4520. word-wrap:break-word;
  4521. text-transform:none;
  4522. }
  4523. #u23865_div {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:0px;
  4527. top:0px;
  4528. width:29px;
  4529. height:16px;
  4530. background:inherit;
  4531. background-color:rgba(255, 255, 255, 0);
  4532. border:none;
  4533. border-radius:0px;
  4534. -moz-box-shadow:none;
  4535. -webkit-box-shadow:none;
  4536. box-shadow:none;
  4537. font-family:'Helvetica', sans-serif;
  4538. font-weight:400;
  4539. font-style:normal;
  4540. font-size:12px;
  4541. color:rgba(0, 0, 0, 0.996078431372549);
  4542. text-align:left;
  4543. }
  4544. #u23865 {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:849px;
  4548. top:650px;
  4549. width:29px;
  4550. height:16px;
  4551. display:flex;
  4552. font-family:'Helvetica', sans-serif;
  4553. font-weight:400;
  4554. font-style:normal;
  4555. font-size:12px;
  4556. color:rgba(0, 0, 0, 0.996078431372549);
  4557. text-align:left;
  4558. }
  4559. #u23865 .text {
  4560. position:absolute;
  4561. align-self:flex-start;
  4562. padding:0px 0px 0px 0px;
  4563. box-sizing:border-box;
  4564. width:100%;
  4565. }
  4566. #u23865_text {
  4567. border-width:0px;
  4568. word-wrap:break-word;
  4569. text-transform:none;
  4570. }
  4571. #u23866_div {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:0px;
  4575. top:0px;
  4576. width:29px;
  4577. height:16px;
  4578. background:inherit;
  4579. background-color:rgba(255, 255, 255, 0);
  4580. border:none;
  4581. border-radius:0px;
  4582. -moz-box-shadow:none;
  4583. -webkit-box-shadow:none;
  4584. box-shadow:none;
  4585. font-family:'Helvetica', sans-serif;
  4586. font-weight:400;
  4587. font-style:normal;
  4588. font-size:12px;
  4589. color:rgba(0, 0, 0, 0.996078431372549);
  4590. text-align:left;
  4591. }
  4592. #u23866 {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:912px;
  4596. top:650px;
  4597. width:29px;
  4598. height:16px;
  4599. display:flex;
  4600. font-family:'Helvetica', sans-serif;
  4601. font-weight:400;
  4602. font-style:normal;
  4603. font-size:12px;
  4604. color:rgba(0, 0, 0, 0.996078431372549);
  4605. text-align:left;
  4606. }
  4607. #u23866 .text {
  4608. position:absolute;
  4609. align-self:flex-start;
  4610. padding:0px 0px 0px 0px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u23866_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. }
  4619. #u23867_div {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:29px;
  4625. height:16px;
  4626. background:inherit;
  4627. background-color:rgba(255, 255, 255, 0);
  4628. border:none;
  4629. border-radius:0px;
  4630. -moz-box-shadow:none;
  4631. -webkit-box-shadow:none;
  4632. box-shadow:none;
  4633. font-family:'Helvetica', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:12px;
  4637. color:rgba(0, 0, 0, 0.996078431372549);
  4638. text-align:left;
  4639. }
  4640. #u23867 {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:974px;
  4644. top:650px;
  4645. width:29px;
  4646. height:16px;
  4647. display:flex;
  4648. font-family:'Helvetica', sans-serif;
  4649. font-weight:400;
  4650. font-style:normal;
  4651. font-size:12px;
  4652. color:rgba(0, 0, 0, 0.996078431372549);
  4653. text-align:left;
  4654. }
  4655. #u23867 .text {
  4656. position:absolute;
  4657. align-self:flex-start;
  4658. padding:0px 0px 0px 0px;
  4659. box-sizing:border-box;
  4660. width:100%;
  4661. }
  4662. #u23867_text {
  4663. border-width:0px;
  4664. word-wrap:break-word;
  4665. text-transform:none;
  4666. }
  4667. #u23868_div {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:0px;
  4671. top:0px;
  4672. width:29px;
  4673. height:16px;
  4674. background:inherit;
  4675. background-color:rgba(255, 255, 255, 0);
  4676. border:none;
  4677. border-radius:0px;
  4678. -moz-box-shadow:none;
  4679. -webkit-box-shadow:none;
  4680. box-shadow:none;
  4681. font-family:'Helvetica', sans-serif;
  4682. font-weight:400;
  4683. font-style:normal;
  4684. font-size:12px;
  4685. color:rgba(0, 0, 0, 0.996078431372549);
  4686. text-align:left;
  4687. }
  4688. #u23868 {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:1037px;
  4692. top:650px;
  4693. width:29px;
  4694. height:16px;
  4695. display:flex;
  4696. font-family:'Helvetica', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:12px;
  4700. color:rgba(0, 0, 0, 0.996078431372549);
  4701. text-align:left;
  4702. }
  4703. #u23868 .text {
  4704. position:absolute;
  4705. align-self:flex-start;
  4706. padding:0px 0px 0px 0px;
  4707. box-sizing:border-box;
  4708. width:100%;
  4709. }
  4710. #u23868_text {
  4711. border-width:0px;
  4712. word-wrap:break-word;
  4713. text-transform:none;
  4714. }
  4715. #u23869_div {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:0px;
  4719. top:0px;
  4720. width:29px;
  4721. height:16px;
  4722. background:inherit;
  4723. background-color:rgba(255, 255, 255, 0);
  4724. border:none;
  4725. border-radius:0px;
  4726. -moz-box-shadow:none;
  4727. -webkit-box-shadow:none;
  4728. box-shadow:none;
  4729. font-family:'Helvetica', sans-serif;
  4730. font-weight:400;
  4731. font-style:normal;
  4732. font-size:12px;
  4733. color:rgba(0, 0, 0, 0.996078431372549);
  4734. text-align:left;
  4735. }
  4736. #u23869 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:1099px;
  4740. top:650px;
  4741. width:29px;
  4742. height:16px;
  4743. display:flex;
  4744. font-family:'Helvetica', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:12px;
  4748. color:rgba(0, 0, 0, 0.996078431372549);
  4749. text-align:left;
  4750. }
  4751. #u23869 .text {
  4752. position:absolute;
  4753. align-self:flex-start;
  4754. padding:0px 0px 0px 0px;
  4755. box-sizing:border-box;
  4756. width:100%;
  4757. }
  4758. #u23869_text {
  4759. border-width:0px;
  4760. word-wrap:break-word;
  4761. text-transform:none;
  4762. }
  4763. #u23870 {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:0px;
  4769. height:0px;
  4770. }
  4771. #u23871_img {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:2px;
  4777. height:254px;
  4778. }
  4779. #u23871 {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:664px;
  4783. top:381px;
  4784. width:1px;
  4785. height:253px;
  4786. display:flex;
  4787. }
  4788. #u23871 .text {
  4789. position:absolute;
  4790. align-self:center;
  4791. padding:2px 2px 2px 2px;
  4792. box-sizing:border-box;
  4793. width:100%;
  4794. }
  4795. #u23871_text {
  4796. border-width:0px;
  4797. word-wrap:break-word;
  4798. text-transform:none;
  4799. visibility:hidden;
  4800. }
  4801. #u23872_img {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:0px;
  4805. top:0px;
  4806. width:7px;
  4807. height:13px;
  4808. }
  4809. #u23872 {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:661px;
  4813. top:624px;
  4814. width:7px;
  4815. height:13px;
  4816. display:flex;
  4817. }
  4818. #u23872 .text {
  4819. position:absolute;
  4820. align-self:center;
  4821. padding:2px 2px 2px 2px;
  4822. box-sizing:border-box;
  4823. width:100%;
  4824. }
  4825. #u23872_text {
  4826. border-width:0px;
  4827. word-wrap:break-word;
  4828. text-transform:none;
  4829. visibility:hidden;
  4830. }
  4831. #u23873_div {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:0px;
  4835. top:0px;
  4836. width:73px;
  4837. height:20px;
  4838. background:inherit;
  4839. background-color:rgba(255, 255, 255, 0);
  4840. border:none;
  4841. border-radius:0px;
  4842. -moz-box-shadow:none;
  4843. -webkit-box-shadow:none;
  4844. box-shadow:none;
  4845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4846. font-weight:400;
  4847. font-style:normal;
  4848. font-size:12px;
  4849. color:#555555;
  4850. text-align:left;
  4851. }
  4852. #u23873 {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:365px;
  4856. top:335px;
  4857. width:73px;
  4858. height:20px;
  4859. display:flex;
  4860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4861. font-weight:400;
  4862. font-style:normal;
  4863. font-size:12px;
  4864. color:#555555;
  4865. text-align:left;
  4866. }
  4867. #u23873 .text {
  4868. position:absolute;
  4869. align-self:flex-start;
  4870. padding:0px 0px 0px 0px;
  4871. box-sizing:border-box;
  4872. width:100%;
  4873. }
  4874. #u23873_text {
  4875. border-width:0px;
  4876. white-space:nowrap;
  4877. text-transform:none;
  4878. }
  4879. #u23874_img {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:-1px;
  4883. top:-1px;
  4884. width:558px;
  4885. height:107px;
  4886. }
  4887. #u23874 {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:418px;
  4891. top:434px;
  4892. width:555px;
  4893. height:104px;
  4894. display:flex;
  4895. color:#F59A23;
  4896. }
  4897. #u23874 .text {
  4898. position:absolute;
  4899. align-self:center;
  4900. padding:2px 2px 2px 2px;
  4901. box-sizing:border-box;
  4902. width:100%;
  4903. }
  4904. #u23874_text {
  4905. border-width:0px;
  4906. word-wrap:break-word;
  4907. text-transform:none;
  4908. visibility:hidden;
  4909. }
  4910. #u23875 {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:0px;
  4914. top:0px;
  4915. width:0px;
  4916. height:0px;
  4917. }
  4918. #u23876_img {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:-2px;
  4922. top:-2px;
  4923. width:81px;
  4924. height:54px;
  4925. }
  4926. #u23876 {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:660px;
  4930. top:481px;
  4931. width:71px;
  4932. height:44px;
  4933. display:flex;
  4934. font-family:'微软雅黑', sans-serif;
  4935. font-weight:400;
  4936. font-style:normal;
  4937. font-size:12px;
  4938. color:#4B4D53;
  4939. }
  4940. #u23876 .text {
  4941. position:absolute;
  4942. align-self:center;
  4943. padding:2px 2px 2px 2px;
  4944. box-sizing:border-box;
  4945. width:100%;
  4946. }
  4947. #u23876_text {
  4948. border-width:0px;
  4949. word-wrap:break-word;
  4950. text-transform:none;
  4951. visibility:hidden;
  4952. }
  4953. #u23877_div {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:0px;
  4957. top:0px;
  4958. width:52px;
  4959. height:20px;
  4960. background:inherit;
  4961. background-color:rgba(255, 255, 255, 0);
  4962. border:none;
  4963. border-radius:0px;
  4964. -moz-box-shadow:none;
  4965. -webkit-box-shadow:none;
  4966. box-shadow:none;
  4967. font-size:12px;
  4968. color:#4B4D53;
  4969. }
  4970. #u23877 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:669px;
  4974. top:492px;
  4975. width:52px;
  4976. height:20px;
  4977. display:flex;
  4978. font-size:12px;
  4979. color:#4B4D53;
  4980. }
  4981. #u23877 .text {
  4982. position:absolute;
  4983. align-self:flex-start;
  4984. padding:0px 0px 0px 0px;
  4985. box-sizing:border-box;
  4986. width:100%;
  4987. }
  4988. #u23877_text {
  4989. border-width:0px;
  4990. white-space:nowrap;
  4991. text-transform:none;
  4992. }
  4993. #u23878 {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:0px;
  4997. top:0px;
  4998. width:0px;
  4999. height:0px;
  5000. }
  5001. #u23879_img {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:0px;
  5005. top:0px;
  5006. width:10px;
  5007. height:10px;
  5008. }
  5009. #u23879 {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:795px;
  5013. top:356px;
  5014. width:10px;
  5015. height:10px;
  5016. display:flex;
  5017. }
  5018. #u23879 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 2px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u23879_text {
  5026. border-width:0px;
  5027. word-wrap:break-word;
  5028. text-transform:none;
  5029. visibility:hidden;
  5030. }
  5031. #u23880_div {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:0px;
  5035. top:0px;
  5036. width:61px;
  5037. height:20px;
  5038. background:inherit;
  5039. background-color:rgba(255, 255, 255, 0);
  5040. border:none;
  5041. border-radius:0px;
  5042. -moz-box-shadow:none;
  5043. -webkit-box-shadow:none;
  5044. box-shadow:none;
  5045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5046. font-weight:400;
  5047. font-style:normal;
  5048. font-size:12px;
  5049. color:#4B4D53;
  5050. }
  5051. #u23880 {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:813px;
  5055. top:351px;
  5056. width:61px;
  5057. height:20px;
  5058. display:flex;
  5059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5060. font-weight:400;
  5061. font-style:normal;
  5062. font-size:12px;
  5063. color:#4B4D53;
  5064. }
  5065. #u23880 .text {
  5066. position:absolute;
  5067. align-self:flex-start;
  5068. padding:0px 0px 0px 0px;
  5069. box-sizing:border-box;
  5070. width:100%;
  5071. }
  5072. #u23880_text {
  5073. border-width:0px;
  5074. white-space:nowrap;
  5075. text-transform:none;
  5076. }
  5077. #u23881 {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:0px;
  5081. top:0px;
  5082. width:0px;
  5083. height:0px;
  5084. }
  5085. #u23882_img {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:10px;
  5091. height:10px;
  5092. }
  5093. #u23882 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:894px;
  5097. top:356px;
  5098. width:10px;
  5099. height:10px;
  5100. display:flex;
  5101. }
  5102. #u23882 .text {
  5103. position:absolute;
  5104. align-self:center;
  5105. padding:2px 2px 2px 2px;
  5106. box-sizing:border-box;
  5107. width:100%;
  5108. }
  5109. #u23882_text {
  5110. border-width:0px;
  5111. word-wrap:break-word;
  5112. text-transform:none;
  5113. visibility:hidden;
  5114. }
  5115. #u23883_div {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:49px;
  5121. height:20px;
  5122. background:inherit;
  5123. background-color:rgba(255, 255, 255, 0);
  5124. border:none;
  5125. border-radius:0px;
  5126. -moz-box-shadow:none;
  5127. -webkit-box-shadow:none;
  5128. box-shadow:none;
  5129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. font-size:12px;
  5133. color:#4B4D53;
  5134. }
  5135. #u23883 {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:912px;
  5139. top:351px;
  5140. width:49px;
  5141. height:20px;
  5142. display:flex;
  5143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5144. font-weight:400;
  5145. font-style:normal;
  5146. font-size:12px;
  5147. color:#4B4D53;
  5148. }
  5149. #u23883 .text {
  5150. position:absolute;
  5151. align-self:flex-start;
  5152. padding:0px 0px 0px 0px;
  5153. box-sizing:border-box;
  5154. width:100%;
  5155. }
  5156. #u23883_text {
  5157. border-width:0px;
  5158. white-space:nowrap;
  5159. text-transform:none;
  5160. }
  5161. #u23884 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:0px;
  5167. height:0px;
  5168. }
  5169. #u23885_img {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:0px;
  5173. top:0px;
  5174. width:10px;
  5175. height:10px;
  5176. }
  5177. #u23885 {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:981px;
  5181. top:356px;
  5182. width:10px;
  5183. height:10px;
  5184. display:flex;
  5185. }
  5186. #u23885 .text {
  5187. position:absolute;
  5188. align-self:center;
  5189. padding:2px 2px 2px 2px;
  5190. box-sizing:border-box;
  5191. width:100%;
  5192. }
  5193. #u23885_text {
  5194. border-width:0px;
  5195. word-wrap:break-word;
  5196. text-transform:none;
  5197. visibility:hidden;
  5198. }
  5199. #u23886_div {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:49px;
  5205. height:20px;
  5206. background:inherit;
  5207. background-color:rgba(255, 255, 255, 0);
  5208. border:none;
  5209. border-radius:0px;
  5210. -moz-box-shadow:none;
  5211. -webkit-box-shadow:none;
  5212. box-shadow:none;
  5213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5214. font-weight:400;
  5215. font-style:normal;
  5216. font-size:12px;
  5217. color:#4B4D53;
  5218. }
  5219. #u23886 {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:999px;
  5223. top:351px;
  5224. width:49px;
  5225. height:20px;
  5226. display:flex;
  5227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5228. font-weight:400;
  5229. font-style:normal;
  5230. font-size:12px;
  5231. color:#4B4D53;
  5232. }
  5233. #u23886 .text {
  5234. position:absolute;
  5235. align-self:flex-start;
  5236. padding:0px 0px 0px 0px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u23886_text {
  5241. border-width:0px;
  5242. white-space:nowrap;
  5243. text-transform:none;
  5244. }
  5245. #u23887 {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:0px;
  5249. top:0px;
  5250. width:0px;
  5251. height:0px;
  5252. }
  5253. #u23888_img {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:0px;
  5257. top:0px;
  5258. width:10px;
  5259. height:10px;
  5260. }
  5261. #u23888 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:1068px;
  5265. top:356px;
  5266. width:10px;
  5267. height:10px;
  5268. display:flex;
  5269. }
  5270. #u23888 .text {
  5271. position:absolute;
  5272. align-self:center;
  5273. padding:2px 2px 2px 2px;
  5274. box-sizing:border-box;
  5275. width:100%;
  5276. }
  5277. #u23888_text {
  5278. border-width:0px;
  5279. word-wrap:break-word;
  5280. text-transform:none;
  5281. visibility:hidden;
  5282. }
  5283. #u23889_div {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:0px;
  5287. top:0px;
  5288. width:37px;
  5289. height:20px;
  5290. background:inherit;
  5291. background-color:rgba(255, 255, 255, 0);
  5292. border:none;
  5293. border-radius:0px;
  5294. -moz-box-shadow:none;
  5295. -webkit-box-shadow:none;
  5296. box-shadow:none;
  5297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5298. font-weight:400;
  5299. font-style:normal;
  5300. font-size:12px;
  5301. color:#4B4D53;
  5302. }
  5303. #u23889 {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:1086px;
  5307. top:351px;
  5308. width:37px;
  5309. height:20px;
  5310. display:flex;
  5311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5312. font-weight:400;
  5313. font-style:normal;
  5314. font-size:12px;
  5315. color:#4B4D53;
  5316. }
  5317. #u23889 .text {
  5318. position:absolute;
  5319. align-self:flex-start;
  5320. padding:0px 0px 0px 0px;
  5321. box-sizing:border-box;
  5322. width:100%;
  5323. }
  5324. #u23889_text {
  5325. border-width:0px;
  5326. white-space:nowrap;
  5327. text-transform:none;
  5328. }
  5329. #u23890_div {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:109px;
  5335. height:25px;
  5336. background:inherit;
  5337. background-color:rgba(255, 255, 255, 0);
  5338. border:none;
  5339. border-radius:0px;
  5340. -moz-box-shadow:none;
  5341. -webkit-box-shadow:none;
  5342. box-shadow:none;
  5343. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5344. font-weight:650;
  5345. font-style:normal;
  5346. }
  5347. #u23890 {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:371px;
  5351. top:268px;
  5352. width:109px;
  5353. height:25px;
  5354. display:flex;
  5355. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5356. font-weight:650;
  5357. font-style:normal;
  5358. }
  5359. #u23890 .text {
  5360. position:absolute;
  5361. align-self:flex-start;
  5362. padding:0px 0px 0px 0px;
  5363. box-sizing:border-box;
  5364. width:100%;
  5365. }
  5366. #u23890_text {
  5367. border-width:0px;
  5368. white-space:nowrap;
  5369. text-transform:none;
  5370. }
  5371. #u23891_img {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:1228px;
  5377. height:2px;
  5378. }
  5379. #u23891 {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:345px;
  5383. top:308px;
  5384. width:1227px;
  5385. height:1px;
  5386. display:flex;
  5387. }
  5388. #u23891 .text {
  5389. position:absolute;
  5390. align-self:center;
  5391. padding:2px 2px 2px 2px;
  5392. box-sizing:border-box;
  5393. width:100%;
  5394. }
  5395. #u23891_text {
  5396. border-width:0px;
  5397. word-wrap:break-word;
  5398. text-transform:none;
  5399. visibility:hidden;
  5400. }
  5401. #u23892_div {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:0px;
  5405. top:0px;
  5406. width:145px;
  5407. height:25px;
  5408. background:inherit;
  5409. background-color:rgba(255, 255, 255, 0);
  5410. border:none;
  5411. border-radius:0px;
  5412. -moz-box-shadow:none;
  5413. -webkit-box-shadow:none;
  5414. box-shadow:none;
  5415. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5416. font-weight:650;
  5417. font-style:normal;
  5418. }
  5419. #u23892 {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:1186px;
  5423. top:345px;
  5424. width:145px;
  5425. height:25px;
  5426. display:flex;
  5427. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5428. font-weight:650;
  5429. font-style:normal;
  5430. }
  5431. #u23892 .text {
  5432. position:absolute;
  5433. align-self:flex-start;
  5434. padding:0px 0px 0px 0px;
  5435. box-sizing:border-box;
  5436. width:100%;
  5437. }
  5438. #u23892_text {
  5439. border-width:0px;
  5440. white-space:nowrap;
  5441. text-transform:none;
  5442. }
  5443. #u23893 {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:0px;
  5447. top:0px;
  5448. width:0px;
  5449. height:0px;
  5450. }
  5451. #u23894_div {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:382px;
  5457. height:50px;
  5458. background:inherit;
  5459. background-color:rgba(255, 255, 255, 1);
  5460. box-sizing:border-box;
  5461. border-width:1px;
  5462. border-style:solid;
  5463. border-color:rgba(215, 215, 215, 1);
  5464. border-left:0px;
  5465. border-right:0px;
  5466. border-radius:0px;
  5467. border-top-left-radius:0px;
  5468. border-top-right-radius:0px;
  5469. border-bottom-right-radius:0px;
  5470. border-bottom-left-radius:0px;
  5471. -moz-box-shadow:none;
  5472. -webkit-box-shadow:none;
  5473. box-shadow:none;
  5474. font-family:'Microsoft YaHei', sans-serif;
  5475. font-weight:400;
  5476. font-style:normal;
  5477. }
  5478. #u23894 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:1190px;
  5482. top:382px;
  5483. width:382px;
  5484. height:50px;
  5485. display:flex;
  5486. font-family:'Microsoft YaHei', sans-serif;
  5487. font-weight:400;
  5488. font-style:normal;
  5489. }
  5490. #u23894 .text {
  5491. position:absolute;
  5492. align-self:center;
  5493. padding:2px 2px 2px 2px;
  5494. box-sizing:border-box;
  5495. width:100%;
  5496. }
  5497. #u23894_div.selected {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:0px;
  5501. top:0px;
  5502. width:382px;
  5503. height:50px;
  5504. background:inherit;
  5505. background-color:rgba(255, 255, 255, 1);
  5506. box-sizing:border-box;
  5507. border-width:1px;
  5508. border-style:solid;
  5509. border-color:rgba(24, 144, 255, 1);
  5510. border-left:0px;
  5511. border-right:0px;
  5512. border-radius:0px;
  5513. border-top-left-radius:0px;
  5514. border-top-right-radius:0px;
  5515. border-bottom-right-radius:0px;
  5516. border-bottom-left-radius:0px;
  5517. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5518. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5519. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5520. font-family:'Microsoft YaHei', sans-serif;
  5521. font-weight:400;
  5522. font-style:normal;
  5523. }
  5524. #u23894.selected {
  5525. }
  5526. #u23894_text {
  5527. border-width:0px;
  5528. word-wrap:break-word;
  5529. text-transform:none;
  5530. visibility:hidden;
  5531. }
  5532. #u23895_div {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:0px;
  5536. top:0px;
  5537. width:37px;
  5538. height:25px;
  5539. background:inherit;
  5540. background-color:rgba(255, 255, 255, 0);
  5541. border:none;
  5542. border-radius:0px;
  5543. -moz-box-shadow:none;
  5544. -webkit-box-shadow:none;
  5545. box-shadow:none;
  5546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5547. font-weight:400;
  5548. font-style:normal;
  5549. }
  5550. #u23895 {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:1248px;
  5554. top:394px;
  5555. width:37px;
  5556. height:25px;
  5557. display:flex;
  5558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5559. font-weight:400;
  5560. font-style:normal;
  5561. }
  5562. #u23895 .text {
  5563. position:absolute;
  5564. align-self:flex-start;
  5565. padding:0px 0px 0px 0px;
  5566. box-sizing:border-box;
  5567. width:100%;
  5568. }
  5569. #u23895_text {
  5570. border-width:0px;
  5571. white-space:nowrap;
  5572. text-transform:none;
  5573. }
  5574. #u23896_img {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:0px;
  5579. width:20px;
  5580. height:20px;
  5581. }
  5582. #u23896 {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:1207px;
  5586. top:397px;
  5587. width:20px;
  5588. height:20px;
  5589. display:flex;
  5590. font-size:12px;
  5591. color:#FFFFFF;
  5592. }
  5593. #u23896 .text {
  5594. position:absolute;
  5595. align-self:center;
  5596. padding:2px 2px 2px 2px;
  5597. box-sizing:border-box;
  5598. width:100%;
  5599. }
  5600. #u23896_text {
  5601. border-width:0px;
  5602. word-wrap:break-word;
  5603. text-transform:none;
  5604. }
  5605. #u23897_div {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:23px;
  5611. height:25px;
  5612. background:inherit;
  5613. background-color:rgba(255, 255, 255, 0);
  5614. border:none;
  5615. border-radius:0px;
  5616. -moz-box-shadow:none;
  5617. -webkit-box-shadow:none;
  5618. box-shadow:none;
  5619. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5620. font-weight:500;
  5621. font-style:normal;
  5622. }
  5623. #u23897 {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:1338px;
  5627. top:394px;
  5628. width:23px;
  5629. height:25px;
  5630. display:flex;
  5631. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5632. font-weight:500;
  5633. font-style:normal;
  5634. }
  5635. #u23897 .text {
  5636. position:absolute;
  5637. align-self:flex-start;
  5638. padding:0px 0px 0px 0px;
  5639. box-sizing:border-box;
  5640. width:100%;
  5641. }
  5642. #u23897_text {
  5643. border-width:0px;
  5644. white-space:nowrap;
  5645. text-transform:none;
  5646. }
  5647. #u23898 {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:0px;
  5651. top:0px;
  5652. width:0px;
  5653. height:0px;
  5654. }
  5655. #u23899_div {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:382px;
  5661. height:50px;
  5662. background:inherit;
  5663. background-color:rgba(255, 255, 255, 1);
  5664. box-sizing:border-box;
  5665. border-width:1px;
  5666. border-style:solid;
  5667. border-color:rgba(215, 215, 215, 1);
  5668. border-left:0px;
  5669. border-right:0px;
  5670. border-radius:0px;
  5671. border-top-left-radius:0px;
  5672. border-top-right-radius:0px;
  5673. border-bottom-right-radius:0px;
  5674. border-bottom-left-radius:0px;
  5675. -moz-box-shadow:none;
  5676. -webkit-box-shadow:none;
  5677. box-shadow:none;
  5678. font-family:'Microsoft YaHei', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. }
  5682. #u23899 {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:1190px;
  5686. top:431px;
  5687. width:382px;
  5688. height:50px;
  5689. display:flex;
  5690. font-family:'Microsoft YaHei', sans-serif;
  5691. font-weight:400;
  5692. font-style:normal;
  5693. }
  5694. #u23899 .text {
  5695. position:absolute;
  5696. align-self:center;
  5697. padding:2px 2px 2px 2px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u23899_div.selected {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:0px;
  5705. top:0px;
  5706. width:382px;
  5707. height:50px;
  5708. background:inherit;
  5709. background-color:rgba(255, 255, 255, 1);
  5710. box-sizing:border-box;
  5711. border-width:1px;
  5712. border-style:solid;
  5713. border-color:rgba(24, 144, 255, 1);
  5714. border-left:0px;
  5715. border-right:0px;
  5716. border-radius:0px;
  5717. border-top-left-radius:0px;
  5718. border-top-right-radius:0px;
  5719. border-bottom-right-radius:0px;
  5720. border-bottom-left-radius:0px;
  5721. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5722. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5723. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5724. font-family:'Microsoft YaHei', sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. }
  5728. #u23899.selected {
  5729. }
  5730. #u23899_text {
  5731. border-width:0px;
  5732. word-wrap:break-word;
  5733. text-transform:none;
  5734. visibility:hidden;
  5735. }
  5736. #u23900_div {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:55px;
  5742. height:25px;
  5743. background:inherit;
  5744. background-color:rgba(255, 255, 255, 0);
  5745. border:none;
  5746. border-radius:0px;
  5747. -moz-box-shadow:none;
  5748. -webkit-box-shadow:none;
  5749. box-shadow:none;
  5750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5751. font-weight:400;
  5752. font-style:normal;
  5753. }
  5754. #u23900 {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:1248px;
  5758. top:443px;
  5759. width:55px;
  5760. height:25px;
  5761. display:flex;
  5762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5763. font-weight:400;
  5764. font-style:normal;
  5765. }
  5766. #u23900 .text {
  5767. position:absolute;
  5768. align-self:flex-start;
  5769. padding:0px 0px 0px 0px;
  5770. box-sizing:border-box;
  5771. width:100%;
  5772. }
  5773. #u23900_text {
  5774. border-width:0px;
  5775. white-space:nowrap;
  5776. text-transform:none;
  5777. }
  5778. #u23901_img {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:20px;
  5784. height:20px;
  5785. }
  5786. #u23901 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:1207px;
  5790. top:446px;
  5791. width:20px;
  5792. height:20px;
  5793. display:flex;
  5794. font-size:12px;
  5795. color:#FFFFFF;
  5796. }
  5797. #u23901 .text {
  5798. position:absolute;
  5799. align-self:center;
  5800. padding:2px 2px 2px 2px;
  5801. box-sizing:border-box;
  5802. width:100%;
  5803. }
  5804. #u23901_text {
  5805. border-width:0px;
  5806. word-wrap:break-word;
  5807. text-transform:none;
  5808. }
  5809. #u23902_div {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:0px;
  5813. top:0px;
  5814. width:19px;
  5815. height:25px;
  5816. background:inherit;
  5817. background-color:rgba(255, 255, 255, 0);
  5818. border:none;
  5819. border-radius:0px;
  5820. -moz-box-shadow:none;
  5821. -webkit-box-shadow:none;
  5822. box-shadow:none;
  5823. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5824. font-weight:500;
  5825. font-style:normal;
  5826. }
  5827. #u23902 {
  5828. border-width:0px;
  5829. position:absolute;
  5830. left:1338px;
  5831. top:443px;
  5832. width:19px;
  5833. height:25px;
  5834. display:flex;
  5835. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5836. font-weight:500;
  5837. font-style:normal;
  5838. }
  5839. #u23902 .text {
  5840. position:absolute;
  5841. align-self:flex-start;
  5842. padding:0px 0px 0px 0px;
  5843. box-sizing:border-box;
  5844. width:100%;
  5845. }
  5846. #u23902_text {
  5847. border-width:0px;
  5848. white-space:nowrap;
  5849. text-transform:none;
  5850. }
  5851. #u23903 {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:0px;
  5855. top:0px;
  5856. width:0px;
  5857. height:0px;
  5858. }
  5859. #u23904_div {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:0px;
  5863. top:0px;
  5864. width:382px;
  5865. height:50px;
  5866. background:inherit;
  5867. background-color:rgba(255, 255, 255, 1);
  5868. box-sizing:border-box;
  5869. border-width:1px;
  5870. border-style:solid;
  5871. border-color:rgba(215, 215, 215, 1);
  5872. border-left:0px;
  5873. border-right:0px;
  5874. border-radius:0px;
  5875. border-top-left-radius:0px;
  5876. border-top-right-radius:0px;
  5877. border-bottom-right-radius:0px;
  5878. border-bottom-left-radius:0px;
  5879. -moz-box-shadow:none;
  5880. -webkit-box-shadow:none;
  5881. box-shadow:none;
  5882. font-family:'Microsoft YaHei', sans-serif;
  5883. font-weight:400;
  5884. font-style:normal;
  5885. }
  5886. #u23904 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:1190px;
  5890. top:480px;
  5891. width:382px;
  5892. height:50px;
  5893. display:flex;
  5894. font-family:'Microsoft YaHei', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. }
  5898. #u23904 .text {
  5899. position:absolute;
  5900. align-self:center;
  5901. padding:2px 2px 2px 2px;
  5902. box-sizing:border-box;
  5903. width:100%;
  5904. }
  5905. #u23904_div.selected {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:382px;
  5911. height:50px;
  5912. background:inherit;
  5913. background-color:rgba(255, 255, 255, 1);
  5914. box-sizing:border-box;
  5915. border-width:1px;
  5916. border-style:solid;
  5917. border-color:rgba(24, 144, 255, 1);
  5918. border-left:0px;
  5919. border-right:0px;
  5920. border-radius:0px;
  5921. border-top-left-radius:0px;
  5922. border-top-right-radius:0px;
  5923. border-bottom-right-radius:0px;
  5924. border-bottom-left-radius:0px;
  5925. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5926. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5927. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5928. font-family:'Microsoft YaHei', sans-serif;
  5929. font-weight:400;
  5930. font-style:normal;
  5931. }
  5932. #u23904.selected {
  5933. }
  5934. #u23904_text {
  5935. border-width:0px;
  5936. word-wrap:break-word;
  5937. text-transform:none;
  5938. visibility:hidden;
  5939. }
  5940. #u23905_div {
  5941. border-width:0px;
  5942. position:absolute;
  5943. left:0px;
  5944. top:0px;
  5945. width:55px;
  5946. height:25px;
  5947. background:inherit;
  5948. background-color:rgba(255, 255, 255, 0);
  5949. border:none;
  5950. border-radius:0px;
  5951. -moz-box-shadow:none;
  5952. -webkit-box-shadow:none;
  5953. box-shadow:none;
  5954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5955. font-weight:400;
  5956. font-style:normal;
  5957. }
  5958. #u23905 {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:1248px;
  5962. top:492px;
  5963. width:55px;
  5964. height:25px;
  5965. display:flex;
  5966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5967. font-weight:400;
  5968. font-style:normal;
  5969. }
  5970. #u23905 .text {
  5971. position:absolute;
  5972. align-self:flex-start;
  5973. padding:0px 0px 0px 0px;
  5974. box-sizing:border-box;
  5975. width:100%;
  5976. }
  5977. #u23905_text {
  5978. border-width:0px;
  5979. white-space:nowrap;
  5980. text-transform:none;
  5981. }
  5982. #u23906_img {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:20px;
  5988. height:20px;
  5989. }
  5990. #u23906 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:1207px;
  5994. top:495px;
  5995. width:20px;
  5996. height:20px;
  5997. display:flex;
  5998. font-size:12px;
  5999. color:#FFFFFF;
  6000. }
  6001. #u23906 .text {
  6002. position:absolute;
  6003. align-self:center;
  6004. padding:2px 2px 2px 2px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u23906_text {
  6009. border-width:0px;
  6010. word-wrap:break-word;
  6011. text-transform:none;
  6012. }
  6013. #u23907_div {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:0px;
  6017. top:0px;
  6018. width:18px;
  6019. height:25px;
  6020. background:inherit;
  6021. background-color:rgba(255, 255, 255, 0);
  6022. border:none;
  6023. border-radius:0px;
  6024. -moz-box-shadow:none;
  6025. -webkit-box-shadow:none;
  6026. box-shadow:none;
  6027. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6028. font-weight:500;
  6029. font-style:normal;
  6030. }
  6031. #u23907 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:1338px;
  6035. top:492px;
  6036. width:18px;
  6037. height:25px;
  6038. display:flex;
  6039. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6040. font-weight:500;
  6041. font-style:normal;
  6042. }
  6043. #u23907 .text {
  6044. position:absolute;
  6045. align-self:flex-start;
  6046. padding:0px 0px 0px 0px;
  6047. box-sizing:border-box;
  6048. width:100%;
  6049. }
  6050. #u23907_text {
  6051. border-width:0px;
  6052. white-space:nowrap;
  6053. text-transform:none;
  6054. }
  6055. #u23908 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:0px;
  6059. top:0px;
  6060. width:0px;
  6061. height:0px;
  6062. }
  6063. #u23909_div {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:0px;
  6067. top:0px;
  6068. width:382px;
  6069. height:50px;
  6070. background:inherit;
  6071. background-color:rgba(255, 255, 255, 1);
  6072. box-sizing:border-box;
  6073. border-width:1px;
  6074. border-style:solid;
  6075. border-color:rgba(215, 215, 215, 1);
  6076. border-left:0px;
  6077. border-right:0px;
  6078. border-radius:0px;
  6079. border-top-left-radius:0px;
  6080. border-top-right-radius:0px;
  6081. border-bottom-right-radius:0px;
  6082. border-bottom-left-radius:0px;
  6083. -moz-box-shadow:none;
  6084. -webkit-box-shadow:none;
  6085. box-shadow:none;
  6086. font-family:'Microsoft YaHei', sans-serif;
  6087. font-weight:400;
  6088. font-style:normal;
  6089. }
  6090. #u23909 {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:1190px;
  6094. top:530px;
  6095. width:382px;
  6096. height:50px;
  6097. display:flex;
  6098. font-family:'Microsoft YaHei', sans-serif;
  6099. font-weight:400;
  6100. font-style:normal;
  6101. }
  6102. #u23909 .text {
  6103. position:absolute;
  6104. align-self:center;
  6105. padding:2px 2px 2px 2px;
  6106. box-sizing:border-box;
  6107. width:100%;
  6108. }
  6109. #u23909_div.selected {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:0px;
  6113. top:0px;
  6114. width:382px;
  6115. height:50px;
  6116. background:inherit;
  6117. background-color:rgba(255, 255, 255, 1);
  6118. box-sizing:border-box;
  6119. border-width:1px;
  6120. border-style:solid;
  6121. border-color:rgba(24, 144, 255, 1);
  6122. border-left:0px;
  6123. border-right:0px;
  6124. border-radius:0px;
  6125. border-top-left-radius:0px;
  6126. border-top-right-radius:0px;
  6127. border-bottom-right-radius:0px;
  6128. border-bottom-left-radius:0px;
  6129. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6130. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6131. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6132. font-family:'Microsoft YaHei', sans-serif;
  6133. font-weight:400;
  6134. font-style:normal;
  6135. }
  6136. #u23909.selected {
  6137. }
  6138. #u23909_text {
  6139. border-width:0px;
  6140. word-wrap:break-word;
  6141. text-transform:none;
  6142. visibility:hidden;
  6143. }
  6144. #u23910_div {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:55px;
  6150. height:25px;
  6151. background:inherit;
  6152. background-color:rgba(255, 255, 255, 0);
  6153. border:none;
  6154. border-radius:0px;
  6155. -moz-box-shadow:none;
  6156. -webkit-box-shadow:none;
  6157. box-shadow:none;
  6158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6159. font-weight:400;
  6160. font-style:normal;
  6161. }
  6162. #u23910 {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:1248px;
  6166. top:542px;
  6167. width:55px;
  6168. height:25px;
  6169. display:flex;
  6170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. }
  6174. #u23910 .text {
  6175. position:absolute;
  6176. align-self:flex-start;
  6177. padding:0px 0px 0px 0px;
  6178. box-sizing:border-box;
  6179. width:100%;
  6180. }
  6181. #u23910_text {
  6182. border-width:0px;
  6183. white-space:nowrap;
  6184. text-transform:none;
  6185. }
  6186. #u23911_img {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:0px;
  6190. top:0px;
  6191. width:20px;
  6192. height:20px;
  6193. }
  6194. #u23911 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:1207px;
  6198. top:545px;
  6199. width:20px;
  6200. height:20px;
  6201. display:flex;
  6202. font-size:12px;
  6203. color:#FFFFFF;
  6204. }
  6205. #u23911 .text {
  6206. position:absolute;
  6207. align-self:center;
  6208. padding:2px 2px 2px 2px;
  6209. box-sizing:border-box;
  6210. width:100%;
  6211. }
  6212. #u23911_text {
  6213. border-width:0px;
  6214. word-wrap:break-word;
  6215. text-transform:none;
  6216. }
  6217. #u23912_div {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:0px;
  6221. top:0px;
  6222. width:19px;
  6223. height:25px;
  6224. background:inherit;
  6225. background-color:rgba(255, 255, 255, 0);
  6226. border:none;
  6227. border-radius:0px;
  6228. -moz-box-shadow:none;
  6229. -webkit-box-shadow:none;
  6230. box-shadow:none;
  6231. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6232. font-weight:500;
  6233. font-style:normal;
  6234. }
  6235. #u23912 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:1338px;
  6239. top:542px;
  6240. width:19px;
  6241. height:25px;
  6242. display:flex;
  6243. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6244. font-weight:500;
  6245. font-style:normal;
  6246. }
  6247. #u23912 .text {
  6248. position:absolute;
  6249. align-self:flex-start;
  6250. padding:0px 0px 0px 0px;
  6251. box-sizing:border-box;
  6252. width:100%;
  6253. }
  6254. #u23912_text {
  6255. border-width:0px;
  6256. white-space:nowrap;
  6257. text-transform:none;
  6258. }
  6259. #u23913 {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:0px;
  6265. height:0px;
  6266. }
  6267. #u23914_div {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:0px;
  6271. top:0px;
  6272. width:382px;
  6273. height:50px;
  6274. background:inherit;
  6275. background-color:rgba(255, 255, 255, 1);
  6276. box-sizing:border-box;
  6277. border-width:1px;
  6278. border-style:solid;
  6279. border-color:rgba(215, 215, 215, 1);
  6280. border-left:0px;
  6281. border-right:0px;
  6282. border-radius:0px;
  6283. border-top-left-radius:0px;
  6284. border-top-right-radius:0px;
  6285. border-bottom-right-radius:0px;
  6286. border-bottom-left-radius:0px;
  6287. -moz-box-shadow:none;
  6288. -webkit-box-shadow:none;
  6289. box-shadow:none;
  6290. font-family:'Microsoft YaHei', sans-serif;
  6291. font-weight:400;
  6292. font-style:normal;
  6293. }
  6294. #u23914 {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:1190px;
  6298. top:580px;
  6299. width:382px;
  6300. height:50px;
  6301. display:flex;
  6302. font-family:'Microsoft YaHei', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. }
  6306. #u23914 .text {
  6307. position:absolute;
  6308. align-self:center;
  6309. padding:2px 2px 2px 2px;
  6310. box-sizing:border-box;
  6311. width:100%;
  6312. }
  6313. #u23914_div.selected {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:0px;
  6317. top:0px;
  6318. width:382px;
  6319. height:50px;
  6320. background:inherit;
  6321. background-color:rgba(255, 255, 255, 1);
  6322. box-sizing:border-box;
  6323. border-width:1px;
  6324. border-style:solid;
  6325. border-color:rgba(24, 144, 255, 1);
  6326. border-left:0px;
  6327. border-right:0px;
  6328. border-radius:0px;
  6329. border-top-left-radius:0px;
  6330. border-top-right-radius:0px;
  6331. border-bottom-right-radius:0px;
  6332. border-bottom-left-radius:0px;
  6333. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6334. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6335. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6336. font-family:'Microsoft YaHei', sans-serif;
  6337. font-weight:400;
  6338. font-style:normal;
  6339. }
  6340. #u23914.selected {
  6341. }
  6342. #u23914_text {
  6343. border-width:0px;
  6344. word-wrap:break-word;
  6345. text-transform:none;
  6346. visibility:hidden;
  6347. }
  6348. #u23915_div {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:37px;
  6354. height:25px;
  6355. background:inherit;
  6356. background-color:rgba(255, 255, 255, 0);
  6357. border:none;
  6358. border-radius:0px;
  6359. -moz-box-shadow:none;
  6360. -webkit-box-shadow:none;
  6361. box-shadow:none;
  6362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6363. font-weight:400;
  6364. font-style:normal;
  6365. }
  6366. #u23915 {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:1248px;
  6370. top:592px;
  6371. width:37px;
  6372. height:25px;
  6373. display:flex;
  6374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6375. font-weight:400;
  6376. font-style:normal;
  6377. }
  6378. #u23915 .text {
  6379. position:absolute;
  6380. align-self:flex-start;
  6381. padding:0px 0px 0px 0px;
  6382. box-sizing:border-box;
  6383. width:100%;
  6384. }
  6385. #u23915_text {
  6386. border-width:0px;
  6387. white-space:nowrap;
  6388. text-transform:none;
  6389. }
  6390. #u23916_img {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:0px;
  6394. top:0px;
  6395. width:20px;
  6396. height:20px;
  6397. }
  6398. #u23916 {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:1207px;
  6402. top:595px;
  6403. width:20px;
  6404. height:20px;
  6405. display:flex;
  6406. font-size:12px;
  6407. color:#FFFFFF;
  6408. }
  6409. #u23916 .text {
  6410. position:absolute;
  6411. align-self:center;
  6412. padding:2px 2px 2px 2px;
  6413. box-sizing:border-box;
  6414. width:100%;
  6415. }
  6416. #u23916_text {
  6417. border-width:0px;
  6418. word-wrap:break-word;
  6419. text-transform:none;
  6420. }
  6421. #u23917_div {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:0px;
  6425. top:0px;
  6426. width:19px;
  6427. height:25px;
  6428. background:inherit;
  6429. background-color:rgba(255, 255, 255, 0);
  6430. border:none;
  6431. border-radius:0px;
  6432. -moz-box-shadow:none;
  6433. -webkit-box-shadow:none;
  6434. box-shadow:none;
  6435. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6436. font-weight:500;
  6437. font-style:normal;
  6438. }
  6439. #u23917 {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:1338px;
  6443. top:592px;
  6444. width:19px;
  6445. height:25px;
  6446. display:flex;
  6447. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6448. font-weight:500;
  6449. font-style:normal;
  6450. }
  6451. #u23917 .text {
  6452. position:absolute;
  6453. align-self:flex-start;
  6454. padding:0px 0px 0px 0px;
  6455. box-sizing:border-box;
  6456. width:100%;
  6457. }
  6458. #u23917_text {
  6459. border-width:0px;
  6460. white-space:nowrap;
  6461. text-transform:none;
  6462. }
  6463. #u23918 {
  6464. border-width:0px;
  6465. position:absolute;
  6466. left:0px;
  6467. top:0px;
  6468. width:0px;
  6469. height:0px;
  6470. }
  6471. #u23919 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:0px;
  6475. top:0px;
  6476. width:0px;
  6477. height:0px;
  6478. }
  6479. #u23920_div {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:31px;
  6485. height:30px;
  6486. background:inherit;
  6487. background-color:rgba(255, 255, 255, 1);
  6488. box-sizing:border-box;
  6489. border-width:1px;
  6490. border-style:solid;
  6491. border-color:rgba(228, 228, 228, 1);
  6492. border-radius:4px;
  6493. -moz-box-shadow:none;
  6494. -webkit-box-shadow:none;
  6495. box-shadow:none;
  6496. font-family:'Microsoft YaHei', sans-serif;
  6497. font-weight:400;
  6498. font-style:normal;
  6499. font-size:12px;
  6500. }
  6501. #u23920 {
  6502. border-width:0px;
  6503. position:absolute;
  6504. left:1501px;
  6505. top:645px;
  6506. width:31px;
  6507. height:30px;
  6508. display:flex;
  6509. font-family:'Microsoft YaHei', sans-serif;
  6510. font-weight:400;
  6511. font-style:normal;
  6512. font-size:12px;
  6513. }
  6514. #u23920 .text {
  6515. position:absolute;
  6516. align-self:center;
  6517. padding:2px 2px 2px 2px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u23920_text {
  6522. border-width:0px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. visibility:hidden;
  6526. }
  6527. #u23921_img {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:8px;
  6533. height:14px;
  6534. }
  6535. #u23921 {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:1513px;
  6539. top:653px;
  6540. width:8px;
  6541. height:14px;
  6542. display:flex;
  6543. font-family:'Microsoft YaHei', sans-serif;
  6544. font-weight:400;
  6545. font-style:normal;
  6546. font-size:12px;
  6547. }
  6548. #u23921 .text {
  6549. position:absolute;
  6550. align-self:center;
  6551. padding:2px 2px 2px 2px;
  6552. box-sizing:border-box;
  6553. width:100%;
  6554. }
  6555. #u23921_text {
  6556. border-width:0px;
  6557. word-wrap:break-word;
  6558. text-transform:none;
  6559. visibility:hidden;
  6560. }
  6561. #u23922 {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:0px;
  6567. height:0px;
  6568. }
  6569. #u23923_div {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:0px;
  6573. top:0px;
  6574. width:31px;
  6575. height:30px;
  6576. background:inherit;
  6577. background-color:rgba(255, 255, 255, 1);
  6578. box-sizing:border-box;
  6579. border-width:1px;
  6580. border-style:solid;
  6581. border-color:rgba(228, 228, 228, 1);
  6582. border-radius:4px;
  6583. -moz-box-shadow:none;
  6584. -webkit-box-shadow:none;
  6585. box-shadow:none;
  6586. font-family:'Microsoft YaHei', sans-serif;
  6587. font-weight:400;
  6588. font-style:normal;
  6589. font-size:12px;
  6590. }
  6591. #u23923 {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:1541px;
  6595. top:645px;
  6596. width:31px;
  6597. height:30px;
  6598. display:flex;
  6599. font-family:'Microsoft YaHei', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:12px;
  6603. }
  6604. #u23923 .text {
  6605. position:absolute;
  6606. align-self:center;
  6607. padding:2px 2px 2px 2px;
  6608. box-sizing:border-box;
  6609. width:100%;
  6610. }
  6611. #u23923_text {
  6612. border-width:0px;
  6613. word-wrap:break-word;
  6614. text-transform:none;
  6615. visibility:hidden;
  6616. }
  6617. #u23924_img {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:8px;
  6623. height:14px;
  6624. }
  6625. #u23924 {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:1554px;
  6629. top:653px;
  6630. width:8px;
  6631. height:14px;
  6632. display:flex;
  6633. font-family:'Microsoft YaHei', sans-serif;
  6634. font-weight:400;
  6635. font-style:normal;
  6636. font-size:12px;
  6637. }
  6638. #u23924 .text {
  6639. position:absolute;
  6640. align-self:center;
  6641. padding:2px 2px 2px 2px;
  6642. box-sizing:border-box;
  6643. width:100%;
  6644. }
  6645. #u23924_text {
  6646. border-width:0px;
  6647. word-wrap:break-word;
  6648. text-transform:none;
  6649. visibility:hidden;
  6650. }
  6651. #u23925_img {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:620px;
  6657. height:413px;
  6658. }
  6659. #u23925 {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:345px;
  6663. top:727px;
  6664. width:620px;
  6665. height:413px;
  6666. display:flex;
  6667. }
  6668. #u23925 .text {
  6669. position:absolute;
  6670. align-self:center;
  6671. padding:0px 0px 0px 0px;
  6672. box-sizing:border-box;
  6673. width:100%;
  6674. }
  6675. #u23925_text {
  6676. border-width:0px;
  6677. word-wrap:break-word;
  6678. text-transform:none;
  6679. visibility:hidden;
  6680. }
  6681. #u23926_div {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:0px;
  6685. top:0px;
  6686. width:127px;
  6687. height:25px;
  6688. background:inherit;
  6689. background-color:rgba(255, 255, 255, 0);
  6690. border:none;
  6691. border-radius:0px;
  6692. -moz-box-shadow:none;
  6693. -webkit-box-shadow:none;
  6694. box-shadow:none;
  6695. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6696. font-weight:650;
  6697. font-style:normal;
  6698. }
  6699. #u23926 {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:371px;
  6703. top:750px;
  6704. width:127px;
  6705. height:25px;
  6706. display:flex;
  6707. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6708. font-weight:650;
  6709. font-style:normal;
  6710. }
  6711. #u23926 .text {
  6712. position:absolute;
  6713. align-self:flex-start;
  6714. padding:0px 0px 0px 0px;
  6715. box-sizing:border-box;
  6716. width:100%;
  6717. }
  6718. #u23926_text {
  6719. border-width:0px;
  6720. white-space:nowrap;
  6721. text-transform:none;
  6722. }
  6723. #u23927 {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:371px;
  6727. top:795px;
  6728. width:574px;
  6729. height:300px;
  6730. }
  6731. #u23928_img {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:0px;
  6735. top:0px;
  6736. width:131px;
  6737. height:50px;
  6738. }
  6739. #u23928 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:0px;
  6743. top:0px;
  6744. width:131px;
  6745. height:50px;
  6746. display:flex;
  6747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. font-size:18px;
  6751. color:#FFFFFF;
  6752. }
  6753. #u23928 .text {
  6754. position:absolute;
  6755. align-self:center;
  6756. padding:2px 2px 2px 2px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u23928_text {
  6761. border-width:0px;
  6762. word-wrap:break-word;
  6763. text-transform:none;
  6764. }
  6765. #u23929_img {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:244px;
  6771. height:50px;
  6772. }
  6773. #u23929 {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:131px;
  6777. top:0px;
  6778. width:244px;
  6779. height:50px;
  6780. display:flex;
  6781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6782. font-weight:400;
  6783. font-style:normal;
  6784. font-size:18px;
  6785. color:#FFFFFF;
  6786. }
  6787. #u23929 .text {
  6788. position:absolute;
  6789. align-self:center;
  6790. padding:2px 2px 2px 2px;
  6791. box-sizing:border-box;
  6792. width:100%;
  6793. }
  6794. #u23929_text {
  6795. border-width:0px;
  6796. word-wrap:break-word;
  6797. text-transform:none;
  6798. }
  6799. #u23930_img {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:0px;
  6803. top:0px;
  6804. width:199px;
  6805. height:50px;
  6806. }
  6807. #u23930 {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:375px;
  6811. top:0px;
  6812. width:199px;
  6813. height:50px;
  6814. display:flex;
  6815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6816. font-weight:400;
  6817. font-style:normal;
  6818. font-size:18px;
  6819. color:#FFFFFF;
  6820. }
  6821. #u23930 .text {
  6822. position:absolute;
  6823. align-self:center;
  6824. padding:2px 2px 2px 2px;
  6825. box-sizing:border-box;
  6826. width:100%;
  6827. }
  6828. #u23930_text {
  6829. border-width:0px;
  6830. word-wrap:break-word;
  6831. text-transform:none;
  6832. }
  6833. #u23931_img {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:0px;
  6837. top:0px;
  6838. width:131px;
  6839. height:50px;
  6840. }
  6841. #u23931 {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:0px;
  6845. top:50px;
  6846. width:131px;
  6847. height:50px;
  6848. display:flex;
  6849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6850. font-weight:400;
  6851. font-style:normal;
  6852. font-size:18px;
  6853. }
  6854. #u23931 .text {
  6855. position:absolute;
  6856. align-self:center;
  6857. padding:2px 2px 2px 2px;
  6858. box-sizing:border-box;
  6859. width:100%;
  6860. }
  6861. #u23931_text {
  6862. border-width:0px;
  6863. word-wrap:break-word;
  6864. text-transform:none;
  6865. visibility:hidden;
  6866. }
  6867. #u23932_img {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:244px;
  6873. height:50px;
  6874. }
  6875. #u23932 {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:131px;
  6879. top:50px;
  6880. width:244px;
  6881. height:50px;
  6882. display:flex;
  6883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6884. font-weight:400;
  6885. font-style:normal;
  6886. font-size:18px;
  6887. }
  6888. #u23932 .text {
  6889. position:absolute;
  6890. align-self:center;
  6891. padding:2px 2px 2px 2px;
  6892. box-sizing:border-box;
  6893. width:100%;
  6894. }
  6895. #u23932_text {
  6896. border-width:0px;
  6897. word-wrap:break-word;
  6898. text-transform:none;
  6899. visibility:hidden;
  6900. }
  6901. #u23933_img {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:0px;
  6905. top:0px;
  6906. width:199px;
  6907. height:50px;
  6908. }
  6909. #u23933 {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:375px;
  6913. top:50px;
  6914. width:199px;
  6915. height:50px;
  6916. display:flex;
  6917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6918. font-weight:400;
  6919. font-style:normal;
  6920. font-size:18px;
  6921. }
  6922. #u23933 .text {
  6923. position:absolute;
  6924. align-self:center;
  6925. padding:2px 2px 2px 2px;
  6926. box-sizing:border-box;
  6927. width:100%;
  6928. }
  6929. #u23933_text {
  6930. border-width:0px;
  6931. word-wrap:break-word;
  6932. text-transform:none;
  6933. visibility:hidden;
  6934. }
  6935. #u23934_img {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:131px;
  6941. height:50px;
  6942. }
  6943. #u23934 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:0px;
  6947. top:100px;
  6948. width:131px;
  6949. height:50px;
  6950. display:flex;
  6951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6952. font-weight:400;
  6953. font-style:normal;
  6954. font-size:18px;
  6955. }
  6956. #u23934 .text {
  6957. position:absolute;
  6958. align-self:center;
  6959. padding:2px 2px 2px 2px;
  6960. box-sizing:border-box;
  6961. width:100%;
  6962. }
  6963. #u23934_text {
  6964. border-width:0px;
  6965. word-wrap:break-word;
  6966. text-transform:none;
  6967. visibility:hidden;
  6968. }
  6969. #u23935_img {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:0px;
  6973. top:0px;
  6974. width:244px;
  6975. height:50px;
  6976. }
  6977. #u23935 {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:131px;
  6981. top:100px;
  6982. width:244px;
  6983. height:50px;
  6984. display:flex;
  6985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6986. font-weight:400;
  6987. font-style:normal;
  6988. font-size:18px;
  6989. }
  6990. #u23935 .text {
  6991. position:absolute;
  6992. align-self:center;
  6993. padding:2px 2px 2px 2px;
  6994. box-sizing:border-box;
  6995. width:100%;
  6996. }
  6997. #u23935_text {
  6998. border-width:0px;
  6999. word-wrap:break-word;
  7000. text-transform:none;
  7001. visibility:hidden;
  7002. }
  7003. #u23936_img {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:199px;
  7009. height:50px;
  7010. }
  7011. #u23936 {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:375px;
  7015. top:100px;
  7016. width:199px;
  7017. height:50px;
  7018. display:flex;
  7019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7020. font-weight:400;
  7021. font-style:normal;
  7022. font-size:18px;
  7023. }
  7024. #u23936 .text {
  7025. position:absolute;
  7026. align-self:center;
  7027. padding:2px 2px 2px 2px;
  7028. box-sizing:border-box;
  7029. width:100%;
  7030. }
  7031. #u23936_text {
  7032. border-width:0px;
  7033. word-wrap:break-word;
  7034. text-transform:none;
  7035. visibility:hidden;
  7036. }
  7037. #u23937_img {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:0px;
  7041. top:0px;
  7042. width:131px;
  7043. height:50px;
  7044. }
  7045. #u23937 {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:0px;
  7049. top:150px;
  7050. width:131px;
  7051. height:50px;
  7052. display:flex;
  7053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7054. font-weight:400;
  7055. font-style:normal;
  7056. font-size:18px;
  7057. }
  7058. #u23937 .text {
  7059. position:absolute;
  7060. align-self:center;
  7061. padding:2px 2px 2px 2px;
  7062. box-sizing:border-box;
  7063. width:100%;
  7064. }
  7065. #u23937_text {
  7066. border-width:0px;
  7067. word-wrap:break-word;
  7068. text-transform:none;
  7069. visibility:hidden;
  7070. }
  7071. #u23938_img {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:0px;
  7075. top:0px;
  7076. width:244px;
  7077. height:50px;
  7078. }
  7079. #u23938 {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:131px;
  7083. top:150px;
  7084. width:244px;
  7085. height:50px;
  7086. display:flex;
  7087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7088. font-weight:400;
  7089. font-style:normal;
  7090. font-size:18px;
  7091. }
  7092. #u23938 .text {
  7093. position:absolute;
  7094. align-self:center;
  7095. padding:2px 2px 2px 2px;
  7096. box-sizing:border-box;
  7097. width:100%;
  7098. }
  7099. #u23938_text {
  7100. border-width:0px;
  7101. word-wrap:break-word;
  7102. text-transform:none;
  7103. visibility:hidden;
  7104. }
  7105. #u23939_img {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:0px;
  7109. top:0px;
  7110. width:199px;
  7111. height:50px;
  7112. }
  7113. #u23939 {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:375px;
  7117. top:150px;
  7118. width:199px;
  7119. height:50px;
  7120. display:flex;
  7121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7122. font-weight:400;
  7123. font-style:normal;
  7124. font-size:18px;
  7125. }
  7126. #u23939 .text {
  7127. position:absolute;
  7128. align-self:center;
  7129. padding:2px 2px 2px 2px;
  7130. box-sizing:border-box;
  7131. width:100%;
  7132. }
  7133. #u23939_text {
  7134. border-width:0px;
  7135. word-wrap:break-word;
  7136. text-transform:none;
  7137. visibility:hidden;
  7138. }
  7139. #u23940_img {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:0px;
  7143. top:0px;
  7144. width:131px;
  7145. height:50px;
  7146. }
  7147. #u23940 {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:0px;
  7151. top:200px;
  7152. width:131px;
  7153. height:50px;
  7154. display:flex;
  7155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7156. font-weight:400;
  7157. font-style:normal;
  7158. font-size:18px;
  7159. }
  7160. #u23940 .text {
  7161. position:absolute;
  7162. align-self:center;
  7163. padding:2px 2px 2px 2px;
  7164. box-sizing:border-box;
  7165. width:100%;
  7166. }
  7167. #u23940_text {
  7168. border-width:0px;
  7169. word-wrap:break-word;
  7170. text-transform:none;
  7171. visibility:hidden;
  7172. }
  7173. #u23941_img {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:0px;
  7177. top:0px;
  7178. width:244px;
  7179. height:50px;
  7180. }
  7181. #u23941 {
  7182. border-width:0px;
  7183. position:absolute;
  7184. left:131px;
  7185. top:200px;
  7186. width:244px;
  7187. height:50px;
  7188. display:flex;
  7189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7190. font-weight:400;
  7191. font-style:normal;
  7192. font-size:18px;
  7193. }
  7194. #u23941 .text {
  7195. position:absolute;
  7196. align-self:center;
  7197. padding:2px 2px 2px 2px;
  7198. box-sizing:border-box;
  7199. width:100%;
  7200. }
  7201. #u23941_text {
  7202. border-width:0px;
  7203. word-wrap:break-word;
  7204. text-transform:none;
  7205. visibility:hidden;
  7206. }
  7207. #u23942_img {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:0px;
  7211. top:0px;
  7212. width:199px;
  7213. height:50px;
  7214. }
  7215. #u23942 {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:375px;
  7219. top:200px;
  7220. width:199px;
  7221. height:50px;
  7222. display:flex;
  7223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7224. font-weight:400;
  7225. font-style:normal;
  7226. font-size:18px;
  7227. }
  7228. #u23942 .text {
  7229. position:absolute;
  7230. align-self:center;
  7231. padding:2px 2px 2px 2px;
  7232. box-sizing:border-box;
  7233. width:100%;
  7234. }
  7235. #u23942_text {
  7236. border-width:0px;
  7237. word-wrap:break-word;
  7238. text-transform:none;
  7239. visibility:hidden;
  7240. }
  7241. #u23943_img {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:0px;
  7245. top:0px;
  7246. width:131px;
  7247. height:50px;
  7248. }
  7249. #u23943 {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:0px;
  7253. top:250px;
  7254. width:131px;
  7255. height:50px;
  7256. display:flex;
  7257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7258. font-weight:400;
  7259. font-style:normal;
  7260. font-size:18px;
  7261. }
  7262. #u23943 .text {
  7263. position:absolute;
  7264. align-self:center;
  7265. padding:2px 2px 2px 2px;
  7266. box-sizing:border-box;
  7267. width:100%;
  7268. }
  7269. #u23943_text {
  7270. border-width:0px;
  7271. word-wrap:break-word;
  7272. text-transform:none;
  7273. visibility:hidden;
  7274. }
  7275. #u23944_img {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:0px;
  7279. top:0px;
  7280. width:244px;
  7281. height:50px;
  7282. }
  7283. #u23944 {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:131px;
  7287. top:250px;
  7288. width:244px;
  7289. height:50px;
  7290. display:flex;
  7291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:18px;
  7295. }
  7296. #u23944 .text {
  7297. position:absolute;
  7298. align-self:center;
  7299. padding:2px 2px 2px 2px;
  7300. box-sizing:border-box;
  7301. width:100%;
  7302. }
  7303. #u23944_text {
  7304. border-width:0px;
  7305. word-wrap:break-word;
  7306. text-transform:none;
  7307. visibility:hidden;
  7308. }
  7309. #u23945_img {
  7310. border-width:0px;
  7311. position:absolute;
  7312. left:0px;
  7313. top:0px;
  7314. width:199px;
  7315. height:50px;
  7316. }
  7317. #u23945 {
  7318. border-width:0px;
  7319. position:absolute;
  7320. left:375px;
  7321. top:250px;
  7322. width:199px;
  7323. height:50px;
  7324. display:flex;
  7325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7326. font-weight:400;
  7327. font-style:normal;
  7328. font-size:18px;
  7329. }
  7330. #u23945 .text {
  7331. position:absolute;
  7332. align-self:center;
  7333. padding:2px 2px 2px 2px;
  7334. box-sizing:border-box;
  7335. width:100%;
  7336. }
  7337. #u23945_text {
  7338. border-width:0px;
  7339. word-wrap:break-word;
  7340. text-transform:none;
  7341. visibility:hidden;
  7342. }
  7343. #u23946 {
  7344. border-width:0px;
  7345. position:absolute;
  7346. left:0px;
  7347. top:0px;
  7348. width:0px;
  7349. height:0px;
  7350. }
  7351. #u23947_div {
  7352. border-width:0px;
  7353. position:absolute;
  7354. left:0px;
  7355. top:0px;
  7356. width:228px;
  7357. height:120px;
  7358. background:inherit;
  7359. background-color:rgba(255, 255, 255, 1);
  7360. border:none;
  7361. border-radius:0px;
  7362. -moz-box-shadow:none;
  7363. -webkit-box-shadow:none;
  7364. box-shadow:none;
  7365. font-family:'Microsoft YaHei', sans-serif;
  7366. font-weight:400;
  7367. font-style:normal;
  7368. }
  7369. #u23947 {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:1349px;
  7373. top:107px;
  7374. width:228px;
  7375. height:120px;
  7376. display:flex;
  7377. font-family:'Microsoft YaHei', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. }
  7381. #u23947 .text {
  7382. position:absolute;
  7383. align-self:center;
  7384. padding:2px 2px 2px 2px;
  7385. box-sizing:border-box;
  7386. width:100%;
  7387. }
  7388. #u23947_div.selected {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:0px;
  7392. top:0px;
  7393. width:228px;
  7394. height:120px;
  7395. background:inherit;
  7396. background-color:rgba(255, 255, 255, 1);
  7397. border:none;
  7398. border-radius:0px;
  7399. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  7400. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  7401. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  7402. font-family:'Microsoft YaHei', sans-serif;
  7403. font-weight:400;
  7404. font-style:normal;
  7405. }
  7406. #u23947.selected {
  7407. }
  7408. #u23947_text {
  7409. border-width:0px;
  7410. word-wrap:break-word;
  7411. text-transform:none;
  7412. visibility:hidden;
  7413. }
  7414. #u23948_div {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:0px;
  7418. top:0px;
  7419. width:85px;
  7420. height:17px;
  7421. background:inherit;
  7422. background-color:rgba(255, 255, 255, 0);
  7423. border:none;
  7424. border-radius:0px;
  7425. -moz-box-shadow:none;
  7426. -webkit-box-shadow:none;
  7427. box-shadow:none;
  7428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7429. font-weight:400;
  7430. font-style:normal;
  7431. font-size:12px;
  7432. color:rgba(51, 51, 51, 0.996078431372549);
  7433. }
  7434. #u23948 {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:1369px;
  7438. top:117px;
  7439. width:85px;
  7440. height:17px;
  7441. display:flex;
  7442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7443. font-weight:400;
  7444. font-style:normal;
  7445. font-size:12px;
  7446. color:rgba(51, 51, 51, 0.996078431372549);
  7447. }
  7448. #u23948 .text {
  7449. position:absolute;
  7450. align-self:flex-start;
  7451. padding:0px 0px 0px 0px;
  7452. box-sizing:border-box;
  7453. width:100%;
  7454. }
  7455. #u23948_text {
  7456. border-width:0px;
  7457. word-wrap:break-word;
  7458. text-transform:none;
  7459. }
  7460. #u23949_div {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:0px;
  7464. top:0px;
  7465. width:44px;
  7466. height:34px;
  7467. background:inherit;
  7468. background-color:rgba(255, 255, 255, 0);
  7469. border:none;
  7470. border-radius:0px;
  7471. -moz-box-shadow:none;
  7472. -webkit-box-shadow:none;
  7473. box-shadow:none;
  7474. font-size:30px;
  7475. color:rgba(51, 51, 51, 0.996078431372549);
  7476. }
  7477. #u23949 {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:1369px;
  7481. top:139px;
  7482. width:44px;
  7483. height:34px;
  7484. display:flex;
  7485. font-size:30px;
  7486. color:rgba(51, 51, 51, 0.996078431372549);
  7487. }
  7488. #u23949 .text {
  7489. position:absolute;
  7490. align-self:flex-start;
  7491. padding:0px 0px 0px 0px;
  7492. box-sizing:border-box;
  7493. width:100%;
  7494. }
  7495. #u23949_text {
  7496. border-width:0px;
  7497. word-wrap:break-word;
  7498. text-transform:none;
  7499. }
  7500. #u23950_img {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:0px;
  7504. top:0px;
  7505. width:10px;
  7506. height:10px;
  7507. }
  7508. #u23950 {
  7509. border-width:0px;
  7510. position:absolute;
  7511. left:1556px;
  7512. top:121px;
  7513. width:10px;
  7514. height:10px;
  7515. display:flex;
  7516. }
  7517. #u23950 .text {
  7518. position:absolute;
  7519. align-self:center;
  7520. padding:2px 2px 2px 2px;
  7521. box-sizing:border-box;
  7522. width:100%;
  7523. }
  7524. #u23950_text {
  7525. border-width:0px;
  7526. word-wrap:break-word;
  7527. text-transform:none;
  7528. visibility:hidden;
  7529. }
  7530. #u23951_img {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:0px;
  7534. top:0px;
  7535. width:200px;
  7536. height:2px;
  7537. }
  7538. #u23951 {
  7539. border-width:0px;
  7540. position:absolute;
  7541. left:1364px;
  7542. top:196px;
  7543. width:199px;
  7544. height:1px;
  7545. display:flex;
  7546. }
  7547. #u23951 .text {
  7548. position:absolute;
  7549. align-self:center;
  7550. padding:2px 2px 2px 2px;
  7551. box-sizing:border-box;
  7552. width:100%;
  7553. }
  7554. #u23951_text {
  7555. border-width:0px;
  7556. word-wrap:break-word;
  7557. text-transform:none;
  7558. visibility:hidden;
  7559. }
  7560. #u23952_div {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:0px;
  7564. top:0px;
  7565. width:68px;
  7566. height:17px;
  7567. background:inherit;
  7568. background-color:rgba(255, 255, 255, 0);
  7569. border:none;
  7570. border-radius:0px;
  7571. -moz-box-shadow:none;
  7572. -webkit-box-shadow:none;
  7573. box-shadow:none;
  7574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7575. font-weight:400;
  7576. font-style:normal;
  7577. font-size:12px;
  7578. color:rgba(127, 127, 127, 0.996078431372549);
  7579. }
  7580. #u23952 {
  7581. border-width:0px;
  7582. position:absolute;
  7583. left:1374px;
  7584. top:204px;
  7585. width:68px;
  7586. height:17px;
  7587. display:flex;
  7588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7589. font-weight:400;
  7590. font-style:normal;
  7591. font-size:12px;
  7592. color:rgba(127, 127, 127, 0.996078431372549);
  7593. }
  7594. #u23952 .text {
  7595. position:absolute;
  7596. align-self:flex-start;
  7597. padding:0px 0px 0px 0px;
  7598. box-sizing:border-box;
  7599. width:100%;
  7600. }
  7601. #u23952_text {
  7602. border-width:0px;
  7603. word-wrap:break-word;
  7604. text-transform:none;
  7605. }
  7606. #u23953_div {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:0px;
  7610. top:0px;
  7611. width:68px;
  7612. height:17px;
  7613. background:inherit;
  7614. background-color:rgba(255, 255, 255, 0);
  7615. border:none;
  7616. border-radius:0px;
  7617. -moz-box-shadow:none;
  7618. -webkit-box-shadow:none;
  7619. box-shadow:none;
  7620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7621. font-weight:400;
  7622. font-style:normal;
  7623. font-size:12px;
  7624. }
  7625. #u23953 {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:1490px;
  7629. top:204px;
  7630. width:68px;
  7631. height:17px;
  7632. display:flex;
  7633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7634. font-weight:400;
  7635. font-style:normal;
  7636. font-size:12px;
  7637. }
  7638. #u23953 .text {
  7639. position:absolute;
  7640. align-self:flex-start;
  7641. padding:0px 0px 0px 0px;
  7642. box-sizing:border-box;
  7643. width:100%;
  7644. }
  7645. #u23953_text {
  7646. border-width:0px;
  7647. word-wrap:break-word;
  7648. text-transform:none;
  7649. }
  7650. #u23954_div {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:0px;
  7654. top:0px;
  7655. width:60px;
  7656. height:30px;
  7657. background:inherit;
  7658. background-color:rgba(51, 51, 51, 1);
  7659. box-sizing:border-box;
  7660. border-width:1px;
  7661. border-style:solid;
  7662. border-color:rgba(215, 215, 215, 1);
  7663. border-radius:0px;
  7664. -moz-box-shadow:none;
  7665. -webkit-box-shadow:none;
  7666. box-shadow:none;
  7667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7668. font-weight:400;
  7669. font-style:normal;
  7670. font-size:14px;
  7671. color:#FFFFFF;
  7672. text-align:center;
  7673. line-height:30px;
  7674. }
  7675. #u23954 {
  7676. border-width:0px;
  7677. position:absolute;
  7678. left:1292px;
  7679. top:263px;
  7680. width:60px;
  7681. height:30px;
  7682. display:flex;
  7683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7684. font-weight:400;
  7685. font-style:normal;
  7686. font-size:14px;
  7687. color:#FFFFFF;
  7688. text-align:center;
  7689. line-height:30px;
  7690. }
  7691. #u23954 .text {
  7692. position:absolute;
  7693. align-self:flex-start;
  7694. padding:0px 0px 0px 0px;
  7695. box-sizing:border-box;
  7696. width:100%;
  7697. }
  7698. #u23954_text {
  7699. border-width:0px;
  7700. word-wrap:break-word;
  7701. text-transform:none;
  7702. }
  7703. #u23955_div {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:0px;
  7707. top:0px;
  7708. width:60px;
  7709. height:30px;
  7710. background:inherit;
  7711. background-color:rgba(255, 255, 255, 0);
  7712. box-sizing:border-box;
  7713. border-width:1px;
  7714. border-style:solid;
  7715. border-color:rgba(215, 215, 215, 1);
  7716. border-radius:0px;
  7717. -moz-box-shadow:none;
  7718. -webkit-box-shadow:none;
  7719. box-shadow:none;
  7720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7721. font-weight:400;
  7722. font-style:normal;
  7723. font-size:14px;
  7724. text-align:center;
  7725. line-height:30px;
  7726. }
  7727. #u23955 {
  7728. border-width:0px;
  7729. position:absolute;
  7730. left:1352px;
  7731. top:263px;
  7732. width:60px;
  7733. height:30px;
  7734. display:flex;
  7735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7736. font-weight:400;
  7737. font-style:normal;
  7738. font-size:14px;
  7739. text-align:center;
  7740. line-height:30px;
  7741. }
  7742. #u23955 .text {
  7743. position:absolute;
  7744. align-self:flex-start;
  7745. padding:0px 0px 0px 0px;
  7746. box-sizing:border-box;
  7747. width:100%;
  7748. }
  7749. #u23955_text {
  7750. border-width:0px;
  7751. word-wrap:break-word;
  7752. text-transform:none;
  7753. }
  7754. #u23956 {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:0px;
  7758. top:0px;
  7759. width:0px;
  7760. height:0px;
  7761. }
  7762. #u23957_div {
  7763. border-width:0px;
  7764. position:absolute;
  7765. left:0px;
  7766. top:0px;
  7767. width:140px;
  7768. height:30px;
  7769. background:inherit;
  7770. background-color:rgba(255, 255, 255, 1);
  7771. box-sizing:border-box;
  7772. border-width:1px;
  7773. border-style:solid;
  7774. border-color:rgba(201, 201, 201, 1);
  7775. border-radius:0px;
  7776. -moz-box-shadow:none;
  7777. -webkit-box-shadow:none;
  7778. box-shadow:none;
  7779. font-family:'Microsoft YaHei', sans-serif;
  7780. font-weight:400;
  7781. font-style:normal;
  7782. font-size:14px;
  7783. color:#CCCCCC;
  7784. text-align:left;
  7785. }
  7786. #u23957 {
  7787. border-width:0px;
  7788. position:absolute;
  7789. left:1432px;
  7790. top:263px;
  7791. width:140px;
  7792. height:30px;
  7793. display:flex;
  7794. font-family:'Microsoft YaHei', sans-serif;
  7795. font-weight:400;
  7796. font-style:normal;
  7797. font-size:14px;
  7798. color:#CCCCCC;
  7799. text-align:left;
  7800. }
  7801. #u23957 .text {
  7802. position:absolute;
  7803. align-self:center;
  7804. padding:2px 8px 2px 8px;
  7805. box-sizing:border-box;
  7806. width:100%;
  7807. }
  7808. #u23957_text {
  7809. border-width:0px;
  7810. word-wrap:break-word;
  7811. text-transform:none;
  7812. visibility:hidden;
  7813. }
  7814. #u23958_input {
  7815. position:absolute;
  7816. left:0px;
  7817. top:0px;
  7818. width:113px;
  7819. height:27px;
  7820. padding:2px 2px 2px 2px;
  7821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7822. font-weight:400;
  7823. font-style:normal;
  7824. font-size:12px;
  7825. letter-spacing:normal;
  7826. color:#000000;
  7827. vertical-align:none;
  7828. text-align:left;
  7829. text-transform:none;
  7830. background-color:transparent;
  7831. border-color:transparent;
  7832. }
  7833. #u23958_input.disabled {
  7834. position:absolute;
  7835. left:0px;
  7836. top:0px;
  7837. width:113px;
  7838. height:27px;
  7839. padding:2px 2px 2px 2px;
  7840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7841. font-weight:400;
  7842. font-style:normal;
  7843. font-size:12px;
  7844. letter-spacing:normal;
  7845. color:#000000;
  7846. vertical-align:none;
  7847. text-align:left;
  7848. text-transform:none;
  7849. background-color:transparent;
  7850. border-color:transparent;
  7851. }
  7852. #u23958_div {
  7853. border-width:0px;
  7854. position:absolute;
  7855. left:0px;
  7856. top:0px;
  7857. width:113px;
  7858. height:27px;
  7859. background:inherit;
  7860. background-color:rgba(255, 255, 255, 1);
  7861. border:none;
  7862. border-radius:0px;
  7863. -moz-box-shadow:none;
  7864. -webkit-box-shadow:none;
  7865. box-shadow:none;
  7866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7867. font-weight:400;
  7868. font-style:normal;
  7869. font-size:12px;
  7870. }
  7871. #u23958 {
  7872. border-width:0px;
  7873. position:absolute;
  7874. left:1437px;
  7875. top:264px;
  7876. width:113px;
  7877. height:27px;
  7878. display:flex;
  7879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7880. font-weight:400;
  7881. font-style:normal;
  7882. font-size:12px;
  7883. }
  7884. #u23958 .text {
  7885. position:absolute;
  7886. align-self:center;
  7887. padding:2px 2px 2px 2px;
  7888. box-sizing:border-box;
  7889. width:100%;
  7890. }
  7891. #u23958_div.disabled {
  7892. border-width:0px;
  7893. position:absolute;
  7894. left:0px;
  7895. top:0px;
  7896. width:113px;
  7897. height:27px;
  7898. background:inherit;
  7899. background-color:rgba(240, 240, 240, 1);
  7900. border:none;
  7901. border-radius:0px;
  7902. -moz-box-shadow:none;
  7903. -webkit-box-shadow:none;
  7904. box-shadow:none;
  7905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7906. font-weight:400;
  7907. font-style:normal;
  7908. font-size:12px;
  7909. }
  7910. #u23958.disabled {
  7911. }
  7912. #u23959_img {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:0px;
  7916. top:0px;
  7917. width:13px;
  7918. height:13px;
  7919. }
  7920. #u23959 {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:1553px;
  7924. top:272px;
  7925. width:13px;
  7926. height:13px;
  7927. display:flex;
  7928. }
  7929. #u23959 .text {
  7930. position:absolute;
  7931. align-self:center;
  7932. padding:2px 2px 2px 2px;
  7933. box-sizing:border-box;
  7934. width:100%;
  7935. }
  7936. #u23959_text {
  7937. border-width:0px;
  7938. word-wrap:break-word;
  7939. text-transform:none;
  7940. visibility:hidden;
  7941. }
  7942. #u23960 {
  7943. border-width:0px;
  7944. position:absolute;
  7945. left:0px;
  7946. top:0px;
  7947. width:0px;
  7948. height:0px;
  7949. }
  7950. #u23961_div {
  7951. border-width:0px;
  7952. position:absolute;
  7953. left:0px;
  7954. top:0px;
  7955. width:140px;
  7956. height:30px;
  7957. background:inherit;
  7958. background-color:rgba(255, 255, 255, 1);
  7959. box-sizing:border-box;
  7960. border-width:1px;
  7961. border-style:solid;
  7962. border-color:rgba(201, 201, 201, 1);
  7963. border-radius:0px;
  7964. -moz-box-shadow:none;
  7965. -webkit-box-shadow:none;
  7966. box-shadow:none;
  7967. font-family:'Microsoft YaHei', sans-serif;
  7968. font-weight:400;
  7969. font-style:normal;
  7970. font-size:14px;
  7971. color:#CCCCCC;
  7972. text-align:left;
  7973. }
  7974. #u23961 {
  7975. border-width:0px;
  7976. position:absolute;
  7977. left:1424px;
  7978. top:750px;
  7979. width:140px;
  7980. height:30px;
  7981. display:flex;
  7982. font-family:'Microsoft YaHei', sans-serif;
  7983. font-weight:400;
  7984. font-style:normal;
  7985. font-size:14px;
  7986. color:#CCCCCC;
  7987. text-align:left;
  7988. }
  7989. #u23961 .text {
  7990. position:absolute;
  7991. align-self:center;
  7992. padding:2px 8px 2px 8px;
  7993. box-sizing:border-box;
  7994. width:100%;
  7995. }
  7996. #u23961_text {
  7997. border-width:0px;
  7998. word-wrap:break-word;
  7999. text-transform:none;
  8000. visibility:hidden;
  8001. }
  8002. #u23962_input {
  8003. position:absolute;
  8004. left:0px;
  8005. top:0px;
  8006. width:113px;
  8007. height:27px;
  8008. padding:2px 2px 2px 2px;
  8009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8010. font-weight:400;
  8011. font-style:normal;
  8012. font-size:12px;
  8013. letter-spacing:normal;
  8014. color:#000000;
  8015. vertical-align:none;
  8016. text-align:left;
  8017. text-transform:none;
  8018. background-color:transparent;
  8019. border-color:transparent;
  8020. }
  8021. #u23962_input.disabled {
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:113px;
  8026. height:27px;
  8027. padding:2px 2px 2px 2px;
  8028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8029. font-weight:400;
  8030. font-style:normal;
  8031. font-size:12px;
  8032. letter-spacing:normal;
  8033. color:#000000;
  8034. vertical-align:none;
  8035. text-align:left;
  8036. text-transform:none;
  8037. background-color:transparent;
  8038. border-color:transparent;
  8039. }
  8040. #u23962_div {
  8041. border-width:0px;
  8042. position:absolute;
  8043. left:0px;
  8044. top:0px;
  8045. width:113px;
  8046. height:27px;
  8047. background:inherit;
  8048. background-color:rgba(255, 255, 255, 1);
  8049. border:none;
  8050. border-radius:0px;
  8051. -moz-box-shadow:none;
  8052. -webkit-box-shadow:none;
  8053. box-shadow:none;
  8054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8055. font-weight:400;
  8056. font-style:normal;
  8057. font-size:12px;
  8058. }
  8059. #u23962 {
  8060. border-width:0px;
  8061. position:absolute;
  8062. left:1429px;
  8063. top:751px;
  8064. width:113px;
  8065. height:27px;
  8066. display:flex;
  8067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8068. font-weight:400;
  8069. font-style:normal;
  8070. font-size:12px;
  8071. }
  8072. #u23962 .text {
  8073. position:absolute;
  8074. align-self:center;
  8075. padding:2px 2px 2px 2px;
  8076. box-sizing:border-box;
  8077. width:100%;
  8078. }
  8079. #u23962_div.disabled {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:0px;
  8083. top:0px;
  8084. width:113px;
  8085. height:27px;
  8086. background:inherit;
  8087. background-color:rgba(240, 240, 240, 1);
  8088. border:none;
  8089. border-radius:0px;
  8090. -moz-box-shadow:none;
  8091. -webkit-box-shadow:none;
  8092. box-shadow:none;
  8093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8094. font-weight:400;
  8095. font-style:normal;
  8096. font-size:12px;
  8097. }
  8098. #u23962.disabled {
  8099. }
  8100. #u23963_img {
  8101. border-width:0px;
  8102. position:absolute;
  8103. left:0px;
  8104. top:0px;
  8105. width:13px;
  8106. height:13px;
  8107. }
  8108. #u23963 {
  8109. border-width:0px;
  8110. position:absolute;
  8111. left:1545px;
  8112. top:759px;
  8113. width:13px;
  8114. height:13px;
  8115. display:flex;
  8116. }
  8117. #u23963 .text {
  8118. position:absolute;
  8119. align-self:center;
  8120. padding:2px 2px 2px 2px;
  8121. box-sizing:border-box;
  8122. width:100%;
  8123. }
  8124. #u23963_text {
  8125. border-width:0px;
  8126. word-wrap:break-word;
  8127. text-transform:none;
  8128. visibility:hidden;
  8129. }
  8130. #u23964 {
  8131. border-width:0px;
  8132. position:absolute;
  8133. left:0px;
  8134. top:0px;
  8135. width:0px;
  8136. height:0px;
  8137. }
  8138. #u23965_div {
  8139. border-width:0px;
  8140. position:absolute;
  8141. left:0px;
  8142. top:0px;
  8143. width:140px;
  8144. height:30px;
  8145. background:inherit;
  8146. background-color:rgba(255, 255, 255, 1);
  8147. box-sizing:border-box;
  8148. border-width:1px;
  8149. border-style:solid;
  8150. border-color:rgba(215, 215, 215, 1);
  8151. border-radius:4px;
  8152. -moz-box-shadow:none;
  8153. -webkit-box-shadow:none;
  8154. box-shadow:none;
  8155. font-size:12px;
  8156. }
  8157. #u23965 {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:1432px;
  8161. top:67px;
  8162. width:140px;
  8163. height:30px;
  8164. display:flex;
  8165. font-size:12px;
  8166. }
  8167. #u23965 .text {
  8168. position:absolute;
  8169. align-self:center;
  8170. padding:2px 2px 2px 2px;
  8171. box-sizing:border-box;
  8172. width:100%;
  8173. }
  8174. #u23965_text {
  8175. border-width:0px;
  8176. word-wrap:break-word;
  8177. text-transform:none;
  8178. visibility:hidden;
  8179. }
  8180. #u23966_input {
  8181. position:absolute;
  8182. left:0px;
  8183. top:0px;
  8184. width:134px;
  8185. height:23px;
  8186. padding:2px 2px 2px 2px;
  8187. font-family:'ArialMT', 'Arial', sans-serif;
  8188. font-weight:400;
  8189. font-style:normal;
  8190. font-size:12px;
  8191. letter-spacing:normal;
  8192. color:#AAAAAA;
  8193. vertical-align:none;
  8194. text-align:left;
  8195. text-transform:none;
  8196. background-color:transparent;
  8197. border-color:transparent;
  8198. }
  8199. #u23966_input.disabled {
  8200. position:absolute;
  8201. left:0px;
  8202. top:0px;
  8203. width:134px;
  8204. height:23px;
  8205. padding:2px 2px 2px 2px;
  8206. font-family:'ArialMT', 'Arial', sans-serif;
  8207. font-weight:400;
  8208. font-style:normal;
  8209. font-size:12px;
  8210. letter-spacing:normal;
  8211. color:#AAAAAA;
  8212. vertical-align:none;
  8213. text-align:left;
  8214. text-transform:none;
  8215. background-color:transparent;
  8216. border-color:transparent;
  8217. }
  8218. #u23966_div {
  8219. border-width:0px;
  8220. position:absolute;
  8221. left:0px;
  8222. top:0px;
  8223. width:134px;
  8224. height:23px;
  8225. background:inherit;
  8226. background-color:rgba(255, 255, 255, 1);
  8227. border:none;
  8228. border-radius:0px;
  8229. -moz-box-shadow:none;
  8230. -webkit-box-shadow:none;
  8231. box-shadow:none;
  8232. font-size:12px;
  8233. color:#AAAAAA;
  8234. }
  8235. #u23966 {
  8236. border-width:0px;
  8237. position:absolute;
  8238. left:1436px;
  8239. top:69px;
  8240. width:134px;
  8241. height:23px;
  8242. display:flex;
  8243. font-size:12px;
  8244. color:#AAAAAA;
  8245. }
  8246. #u23966 .text {
  8247. position:absolute;
  8248. align-self:flex-start;
  8249. padding:2px 2px 2px 2px;
  8250. box-sizing:border-box;
  8251. width:100%;
  8252. }
  8253. #u23966_div.disabled {
  8254. border-width:0px;
  8255. position:absolute;
  8256. left:0px;
  8257. top:0px;
  8258. width:134px;
  8259. height:23px;
  8260. background:inherit;
  8261. background-color:rgba(240, 240, 240, 1);
  8262. border:none;
  8263. border-radius:0px;
  8264. -moz-box-shadow:none;
  8265. -webkit-box-shadow:none;
  8266. box-shadow:none;
  8267. font-size:12px;
  8268. color:#AAAAAA;
  8269. }
  8270. #u23966.disabled {
  8271. }
  8272. .u23966_input_option {
  8273. font-size:12px;
  8274. }
  8275. #u23968_div {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:200px;
  8281. height:1180px;
  8282. background:inherit;
  8283. background-color:rgba(255, 255, 255, 1);
  8284. border:none;
  8285. border-radius:0px;
  8286. -moz-box-shadow:none;
  8287. -webkit-box-shadow:none;
  8288. box-shadow:none;
  8289. }
  8290. #u23968 {
  8291. border-width:0px;
  8292. position:absolute;
  8293. left:120px;
  8294. top:50px;
  8295. width:200px;
  8296. height:1180px;
  8297. display:flex;
  8298. }
  8299. #u23968 .text {
  8300. position:absolute;
  8301. align-self:center;
  8302. padding:2px 2px 2px 2px;
  8303. box-sizing:border-box;
  8304. width:100%;
  8305. }
  8306. #u23968_text {
  8307. border-width:0px;
  8308. word-wrap:break-word;
  8309. text-transform:none;
  8310. visibility:hidden;
  8311. }
  8312. #u23969_div {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:0px;
  8316. top:0px;
  8317. width:200px;
  8318. height:60px;
  8319. background:inherit;
  8320. background-color:rgba(224, 231, 247, 1);
  8321. border:none;
  8322. border-radius:0px;
  8323. -moz-box-shadow:none;
  8324. -webkit-box-shadow:none;
  8325. box-shadow:none;
  8326. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8327. font-weight:500;
  8328. font-style:normal;
  8329. font-size:18px;
  8330. }
  8331. #u23969 {
  8332. border-width:0px;
  8333. position:absolute;
  8334. left:120px;
  8335. top:50px;
  8336. width:200px;
  8337. height:60px;
  8338. display:flex;
  8339. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8340. font-weight:500;
  8341. font-style:normal;
  8342. font-size:18px;
  8343. }
  8344. #u23969 .text {
  8345. position:absolute;
  8346. align-self:center;
  8347. padding:0px 0px 0px 20px;
  8348. box-sizing:border-box;
  8349. width:100%;
  8350. }
  8351. #u23969_text {
  8352. border-width:0px;
  8353. word-wrap:break-word;
  8354. text-transform:none;
  8355. }
  8356. #u23970_div {
  8357. border-width:0px;
  8358. position:absolute;
  8359. left:0px;
  8360. top:0px;
  8361. width:65px;
  8362. height:22px;
  8363. background:inherit;
  8364. background-color:rgba(255, 255, 255, 0);
  8365. border:none;
  8366. border-radius:0px;
  8367. -moz-box-shadow:none;
  8368. -webkit-box-shadow:none;
  8369. box-shadow:none;
  8370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8371. font-weight:400;
  8372. font-style:normal;
  8373. font-size:16px;
  8374. }
  8375. #u23970 {
  8376. border-width:0px;
  8377. position:absolute;
  8378. left:147px;
  8379. top:310px;
  8380. width:65px;
  8381. height:22px;
  8382. display:flex;
  8383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8384. font-weight:400;
  8385. font-style:normal;
  8386. font-size:16px;
  8387. }
  8388. #u23970 .text {
  8389. position:absolute;
  8390. align-self:flex-start;
  8391. padding:0px 0px 0px 0px;
  8392. box-sizing:border-box;
  8393. width:100%;
  8394. }
  8395. #u23970_text {
  8396. border-width:0px;
  8397. white-space:nowrap;
  8398. text-transform:none;
  8399. }
  8400. #u23971_div {
  8401. border-width:0px;
  8402. position:absolute;
  8403. left:0px;
  8404. top:0px;
  8405. width:65px;
  8406. height:22px;
  8407. background:inherit;
  8408. background-color:rgba(255, 255, 255, 0);
  8409. border:none;
  8410. border-radius:0px;
  8411. -moz-box-shadow:none;
  8412. -webkit-box-shadow:none;
  8413. box-shadow:none;
  8414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8415. font-weight:400;
  8416. font-style:normal;
  8417. font-size:16px;
  8418. }
  8419. #u23971 {
  8420. border-width:0px;
  8421. position:absolute;
  8422. left:147px;
  8423. top:352px;
  8424. width:65px;
  8425. height:22px;
  8426. display:flex;
  8427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8428. font-weight:400;
  8429. font-style:normal;
  8430. font-size:16px;
  8431. }
  8432. #u23971 .text {
  8433. position:absolute;
  8434. align-self:flex-start;
  8435. padding:0px 0px 0px 0px;
  8436. box-sizing:border-box;
  8437. width:100%;
  8438. }
  8439. #u23971_text {
  8440. border-width:0px;
  8441. white-space:nowrap;
  8442. text-transform:none;
  8443. }
  8444. #u23972_div {
  8445. border-width:0px;
  8446. position:absolute;
  8447. left:0px;
  8448. top:0px;
  8449. width:65px;
  8450. height:22px;
  8451. background:inherit;
  8452. background-color:rgba(255, 255, 255, 0);
  8453. border:none;
  8454. border-radius:0px;
  8455. -moz-box-shadow:none;
  8456. -webkit-box-shadow:none;
  8457. box-shadow:none;
  8458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8459. font-weight:400;
  8460. font-style:normal;
  8461. font-size:16px;
  8462. }
  8463. #u23972 {
  8464. border-width:0px;
  8465. position:absolute;
  8466. left:147px;
  8467. top:170px;
  8468. width:65px;
  8469. height:22px;
  8470. display:flex;
  8471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8472. font-weight:400;
  8473. font-style:normal;
  8474. font-size:16px;
  8475. }
  8476. #u23972 .text {
  8477. position:absolute;
  8478. align-self:flex-start;
  8479. padding:0px 0px 0px 0px;
  8480. box-sizing:border-box;
  8481. width:100%;
  8482. }
  8483. #u23972_text {
  8484. border-width:0px;
  8485. white-space:nowrap;
  8486. text-transform:none;
  8487. }
  8488. #u23973_div {
  8489. border-width:0px;
  8490. position:absolute;
  8491. left:0px;
  8492. top:0px;
  8493. width:65px;
  8494. height:22px;
  8495. background:inherit;
  8496. background-color:rgba(255, 255, 255, 0);
  8497. border:none;
  8498. border-radius:0px;
  8499. -moz-box-shadow:none;
  8500. -webkit-box-shadow:none;
  8501. box-shadow:none;
  8502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8503. font-weight:400;
  8504. font-style:normal;
  8505. font-size:16px;
  8506. }
  8507. #u23973 {
  8508. border-width:0px;
  8509. position:absolute;
  8510. left:147px;
  8511. top:212px;
  8512. width:65px;
  8513. height:22px;
  8514. display:flex;
  8515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8516. font-weight:400;
  8517. font-style:normal;
  8518. font-size:16px;
  8519. }
  8520. #u23973 .text {
  8521. position:absolute;
  8522. align-self:flex-start;
  8523. padding:0px 0px 0px 0px;
  8524. box-sizing:border-box;
  8525. width:100%;
  8526. }
  8527. #u23973_text {
  8528. border-width:0px;
  8529. white-space:nowrap;
  8530. text-transform:none;
  8531. }
  8532. #u23974_img {
  8533. border-width:0px;
  8534. position:absolute;
  8535. left:0px;
  8536. top:0px;
  8537. width:201px;
  8538. height:2px;
  8539. }
  8540. #u23974 {
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:120px;
  8544. top:253px;
  8545. width:200px;
  8546. height:1px;
  8547. display:flex;
  8548. }
  8549. #u23974 .text {
  8550. position:absolute;
  8551. align-self:center;
  8552. padding:2px 2px 2px 2px;
  8553. box-sizing:border-box;
  8554. width:100%;
  8555. }
  8556. #u23974_text {
  8557. border-width:0px;
  8558. word-wrap:break-word;
  8559. text-transform:none;
  8560. visibility:hidden;
  8561. }
  8562. #u23975_div {
  8563. border-width:0px;
  8564. position:absolute;
  8565. left:0px;
  8566. top:0px;
  8567. width:49px;
  8568. height:17px;
  8569. background:inherit;
  8570. background-color:rgba(255, 255, 255, 0);
  8571. border:none;
  8572. border-radius:0px;
  8573. -moz-box-shadow:none;
  8574. -webkit-box-shadow:none;
  8575. box-shadow:none;
  8576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8577. font-weight:400;
  8578. font-style:normal;
  8579. font-size:12px;
  8580. color:#AAAAAA;
  8581. }
  8582. #u23975 {
  8583. border-width:0px;
  8584. position:absolute;
  8585. left:147px;
  8586. top:130px;
  8587. width:49px;
  8588. height:17px;
  8589. display:flex;
  8590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8591. font-weight:400;
  8592. font-style:normal;
  8593. font-size:12px;
  8594. color:#AAAAAA;
  8595. }
  8596. #u23975 .text {
  8597. position:absolute;
  8598. align-self:flex-start;
  8599. padding:0px 0px 0px 0px;
  8600. box-sizing:border-box;
  8601. width:100%;
  8602. }
  8603. #u23975_text {
  8604. border-width:0px;
  8605. white-space:nowrap;
  8606. text-transform:none;
  8607. }
  8608. #u23976_div {
  8609. border-width:0px;
  8610. position:absolute;
  8611. left:0px;
  8612. top:0px;
  8613. width:97px;
  8614. height:22px;
  8615. background:inherit;
  8616. background-color:rgba(255, 255, 255, 0);
  8617. border:none;
  8618. border-radius:0px;
  8619. -moz-box-shadow:none;
  8620. -webkit-box-shadow:none;
  8621. box-shadow:none;
  8622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8623. font-weight:400;
  8624. font-style:normal;
  8625. font-size:16px;
  8626. }
  8627. #u23976 {
  8628. border-width:0px;
  8629. position:absolute;
  8630. left:147px;
  8631. top:455px;
  8632. width:97px;
  8633. height:22px;
  8634. display:flex;
  8635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8636. font-weight:400;
  8637. font-style:normal;
  8638. font-size:16px;
  8639. }
  8640. #u23976 .text {
  8641. position:absolute;
  8642. align-self:flex-start;
  8643. padding:0px 0px 0px 0px;
  8644. box-sizing:border-box;
  8645. width:100%;
  8646. }
  8647. #u23976_text {
  8648. border-width:0px;
  8649. white-space:nowrap;
  8650. text-transform:none;
  8651. }
  8652. #u23977_div {
  8653. border-width:0px;
  8654. position:absolute;
  8655. left:0px;
  8656. top:0px;
  8657. width:65px;
  8658. height:22px;
  8659. background:inherit;
  8660. background-color:rgba(255, 255, 255, 0);
  8661. border:none;
  8662. border-radius:0px;
  8663. -moz-box-shadow:none;
  8664. -webkit-box-shadow:none;
  8665. box-shadow:none;
  8666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8667. font-weight:400;
  8668. font-style:normal;
  8669. font-size:16px;
  8670. }
  8671. #u23977 {
  8672. border-width:0px;
  8673. position:absolute;
  8674. left:147px;
  8675. top:497px;
  8676. width:65px;
  8677. height:22px;
  8678. display:flex;
  8679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8680. font-weight:400;
  8681. font-style:normal;
  8682. font-size:16px;
  8683. }
  8684. #u23977 .text {
  8685. position:absolute;
  8686. align-self:flex-start;
  8687. padding:0px 0px 0px 0px;
  8688. box-sizing:border-box;
  8689. width:100%;
  8690. }
  8691. #u23977_text {
  8692. border-width:0px;
  8693. white-space:nowrap;
  8694. text-transform:none;
  8695. }
  8696. #u23978_img {
  8697. border-width:0px;
  8698. position:absolute;
  8699. left:0px;
  8700. top:0px;
  8701. width:201px;
  8702. height:2px;
  8703. }
  8704. #u23978 {
  8705. border-width:0px;
  8706. position:absolute;
  8707. left:120px;
  8708. top:394px;
  8709. width:200px;
  8710. height:1px;
  8711. display:flex;
  8712. }
  8713. #u23978 .text {
  8714. position:absolute;
  8715. align-self:center;
  8716. padding:2px 2px 2px 2px;
  8717. box-sizing:border-box;
  8718. width:100%;
  8719. }
  8720. #u23978_text {
  8721. border-width:0px;
  8722. word-wrap:break-word;
  8723. text-transform:none;
  8724. visibility:hidden;
  8725. }
  8726. #u23979_div {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:0px;
  8730. top:0px;
  8731. width:49px;
  8732. height:17px;
  8733. background:inherit;
  8734. background-color:rgba(255, 255, 255, 0);
  8735. border:none;
  8736. border-radius:0px;
  8737. -moz-box-shadow:none;
  8738. -webkit-box-shadow:none;
  8739. box-shadow:none;
  8740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8741. font-weight:400;
  8742. font-style:normal;
  8743. font-size:12px;
  8744. color:#AAAAAA;
  8745. }
  8746. #u23979 {
  8747. border-width:0px;
  8748. position:absolute;
  8749. left:147px;
  8750. top:415px;
  8751. width:49px;
  8752. height:17px;
  8753. display:flex;
  8754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8755. font-weight:400;
  8756. font-style:normal;
  8757. font-size:12px;
  8758. color:#AAAAAA;
  8759. }
  8760. #u23979 .text {
  8761. position:absolute;
  8762. align-self:flex-start;
  8763. padding:0px 0px 0px 0px;
  8764. box-sizing:border-box;
  8765. width:100%;
  8766. }
  8767. #u23979_text {
  8768. border-width:0px;
  8769. white-space:nowrap;
  8770. text-transform:none;
  8771. }
  8772. #u23980_div {
  8773. border-width:0px;
  8774. position:absolute;
  8775. left:0px;
  8776. top:0px;
  8777. width:49px;
  8778. height:17px;
  8779. background:inherit;
  8780. background-color:rgba(255, 255, 255, 0);
  8781. border:none;
  8782. border-radius:0px;
  8783. -moz-box-shadow:none;
  8784. -webkit-box-shadow:none;
  8785. box-shadow:none;
  8786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8787. font-weight:400;
  8788. font-style:normal;
  8789. font-size:12px;
  8790. color:#AAAAAA;
  8791. }
  8792. #u23980 {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:147px;
  8796. top:273px;
  8797. width:49px;
  8798. height:17px;
  8799. display:flex;
  8800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8801. font-weight:400;
  8802. font-style:normal;
  8803. font-size:12px;
  8804. color:#AAAAAA;
  8805. }
  8806. #u23980 .text {
  8807. position:absolute;
  8808. align-self:flex-start;
  8809. padding:0px 0px 0px 0px;
  8810. box-sizing:border-box;
  8811. width:100%;
  8812. }
  8813. #u23980_text {
  8814. border-width:0px;
  8815. white-space:nowrap;
  8816. text-transform:none;
  8817. }