styles.css 165 KB

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