styles.css 198 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228
  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. #u24772 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u24774 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u24775_div {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:129px;
  41. height:22px;
  42. background:inherit;
  43. background-color:rgba(255, 255, 255, 0);
  44. border:none;
  45. border-radius:0px;
  46. -moz-box-shadow:none;
  47. -webkit-box-shadow:none;
  48. box-shadow:none;
  49. font-size:16px;
  50. color:#FFFFFF;
  51. }
  52. #u24775 {
  53. border-width:0px;
  54. position:absolute;
  55. left:49px;
  56. top:14px;
  57. width:129px;
  58. height:22px;
  59. display:flex;
  60. font-size:16px;
  61. color:#FFFFFF;
  62. }
  63. #u24775 .text {
  64. position:absolute;
  65. align-self:flex-start;
  66. padding:0px 0px 0px 0px;
  67. box-sizing:border-box;
  68. width:100%;
  69. }
  70. #u24775_text {
  71. border-width:0px;
  72. white-space:nowrap;
  73. text-transform:none;
  74. }
  75. #u24776_div {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. background:inherit;
  83. background-color:rgba(30, 42, 68, 1);
  84. border:none;
  85. border-radius:0px;
  86. -moz-box-shadow:none;
  87. -webkit-box-shadow:none;
  88. box-shadow:none;
  89. color:#AFB3B6;
  90. }
  91. #u24776 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:1600px;
  97. height:50px;
  98. display:flex;
  99. color:#AFB3B6;
  100. }
  101. #u24776 .text {
  102. position:absolute;
  103. align-self:center;
  104. padding:2px 2px 2px 2px;
  105. box-sizing:border-box;
  106. width:100%;
  107. }
  108. #u24776_text {
  109. border-width:0px;
  110. word-wrap:break-word;
  111. text-transform:none;
  112. visibility:hidden;
  113. }
  114. #u24777 {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:0px;
  120. height:0px;
  121. }
  122. #u24778_img {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:31px;
  128. height:31px;
  129. }
  130. #u24778 {
  131. border-width:0px;
  132. position:absolute;
  133. left:19px;
  134. top:10px;
  135. width:31px;
  136. height:31px;
  137. display:flex;
  138. }
  139. #u24778 .text {
  140. position:absolute;
  141. align-self:center;
  142. padding:2px 2px 2px 2px;
  143. box-sizing:border-box;
  144. width:100%;
  145. }
  146. #u24778_text {
  147. border-width:0px;
  148. word-wrap:break-word;
  149. text-transform:none;
  150. }
  151. #u24779_div {
  152. border-width:0px;
  153. position:absolute;
  154. left:0px;
  155. top:0px;
  156. width:129px;
  157. height:22px;
  158. background:inherit;
  159. background-color:rgba(255, 255, 255, 0);
  160. border:none;
  161. border-radius:0px;
  162. -moz-box-shadow:none;
  163. -webkit-box-shadow:none;
  164. box-shadow:none;
  165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  166. font-weight:400;
  167. font-style:normal;
  168. font-size:16px;
  169. color:#FFFFFF;
  170. }
  171. #u24779 {
  172. border-width:0px;
  173. position:absolute;
  174. left:62px;
  175. top:14px;
  176. width:129px;
  177. height:22px;
  178. display:flex;
  179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  180. font-weight:400;
  181. font-style:normal;
  182. font-size:16px;
  183. color:#FFFFFF;
  184. }
  185. #u24779 .text {
  186. position:absolute;
  187. align-self:flex-start;
  188. padding:0px 0px 0px 0px;
  189. box-sizing:border-box;
  190. width:100%;
  191. }
  192. #u24779_text {
  193. border-width:0px;
  194. white-space:nowrap;
  195. text-transform:none;
  196. }
  197. #u24780_div {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:200px;
  203. height:1200px;
  204. background:inherit;
  205. background-color:rgba(30, 42, 68, 1);
  206. border:none;
  207. border-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. color:#AFB3B6;
  212. }
  213. #u24780 {
  214. border-width:0px;
  215. position:absolute;
  216. left:0px;
  217. top:47px;
  218. width:200px;
  219. height:1200px;
  220. display:flex;
  221. color:#AFB3B6;
  222. }
  223. #u24780 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:2px 2px 2px 2px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u24780_text {
  231. border-width:0px;
  232. word-wrap:break-word;
  233. text-transform:none;
  234. visibility:hidden;
  235. }
  236. #u24781_img {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:15px;
  242. height:15px;
  243. }
  244. #u24781 {
  245. border-width:0px;
  246. position:absolute;
  247. left:1523px;
  248. top:18px;
  249. width:15px;
  250. height:15px;
  251. display:flex;
  252. }
  253. #u24781 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u24781_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u24782_img {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:15px;
  272. height:15px;
  273. }
  274. #u24782 {
  275. border-width:0px;
  276. position:absolute;
  277. left:1493px;
  278. top:18px;
  279. width:15px;
  280. height:15px;
  281. display:flex;
  282. }
  283. #u24782 .text {
  284. position:absolute;
  285. align-self:center;
  286. padding:2px 2px 2px 2px;
  287. box-sizing:border-box;
  288. width:100%;
  289. }
  290. #u24782_text {
  291. border-width:0px;
  292. word-wrap:break-word;
  293. text-transform:none;
  294. visibility:hidden;
  295. }
  296. #u24783 {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:0px;
  302. height:0px;
  303. }
  304. #u24784_img {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:14px;
  310. height:14px;
  311. }
  312. #u24784 {
  313. border-width:0px;
  314. position:absolute;
  315. left:1553px;
  316. top:18px;
  317. width:14px;
  318. height:14px;
  319. display:flex;
  320. }
  321. #u24784 .text {
  322. position:absolute;
  323. align-self:center;
  324. padding:2px 2px 2px 2px;
  325. box-sizing:border-box;
  326. width:100%;
  327. }
  328. #u24784_text {
  329. border-width:0px;
  330. word-wrap:break-word;
  331. text-transform:none;
  332. visibility:hidden;
  333. }
  334. #u24785_img {
  335. border-width:0px;
  336. position:absolute;
  337. left:0px;
  338. top:0px;
  339. width:8px;
  340. height:5px;
  341. }
  342. #u24785 {
  343. border-width:0px;
  344. position:absolute;
  345. left:1572px;
  346. top:23px;
  347. width:8px;
  348. height:5px;
  349. display:flex;
  350. }
  351. #u24785 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:2px 2px 2px 2px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u24785_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. visibility:hidden;
  363. }
  364. #u24786_div {
  365. border-width:0px;
  366. position:absolute;
  367. left:0px;
  368. top:0px;
  369. width:1402px;
  370. height:1200px;
  371. background:inherit;
  372. background-color:rgba(242, 242, 242, 1);
  373. border:none;
  374. border-radius:0px;
  375. -moz-box-shadow:none;
  376. -webkit-box-shadow:none;
  377. box-shadow:none;
  378. }
  379. #u24786 {
  380. border-width:0px;
  381. position:absolute;
  382. left:198px;
  383. top:47px;
  384. width:1402px;
  385. height:1200px;
  386. display:flex;
  387. }
  388. #u24786 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 2px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u24786_text {
  396. border-width:0px;
  397. word-wrap:break-word;
  398. text-transform:none;
  399. visibility:hidden;
  400. }
  401. #u24787 {
  402. border-width:0px;
  403. position:absolute;
  404. left:35px;
  405. top:81px;
  406. width:118px;
  407. height:220px;
  408. }
  409. #u24787_children {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:0px;
  415. height:0px;
  416. }
  417. #u24788 {
  418. border-width:0px;
  419. position:absolute;
  420. left:0px;
  421. top:0px;
  422. width:98px;
  423. height:20px;
  424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  425. font-weight:400;
  426. font-style:normal;
  427. font-size:14px;
  428. color:#FFFFFF;
  429. }
  430. #u24789_div {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:76px;
  436. height:20px;
  437. background:inherit;
  438. background-color:rgba(255, 255, 255, 0);
  439. border:none;
  440. border-radius:0px;
  441. -moz-box-shadow:none;
  442. -webkit-box-shadow:none;
  443. box-shadow:none;
  444. }
  445. #u24789 {
  446. border-width:0px;
  447. position:absolute;
  448. left:22px;
  449. top:0px;
  450. width:76px;
  451. height:20px;
  452. display:flex;
  453. }
  454. #u24789 .text {
  455. position:absolute;
  456. align-self:center;
  457. padding:2px 2px 2px 3px;
  458. box-sizing:border-box;
  459. width:100%;
  460. }
  461. #u24789_text {
  462. border-width:0px;
  463. white-space:nowrap;
  464. text-transform:none;
  465. }
  466. #u24790 {
  467. border-width:0px;
  468. position:absolute;
  469. left:0px;
  470. top:20px;
  471. width:84px;
  472. height:20px;
  473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  474. font-weight:400;
  475. font-style:normal;
  476. font-size:14px;
  477. color:#FFFFFF;
  478. }
  479. #u24791_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:9px;
  485. height:9px;
  486. }
  487. #u24791 {
  488. border-width:0px;
  489. position:absolute;
  490. left:6px;
  491. top:6px;
  492. width:9px;
  493. height:9px;
  494. display:flex;
  495. }
  496. #u24791 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u24791_img.selected {
  504. }
  505. #u24791.selected {
  506. }
  507. #u24791_text {
  508. border-width:0px;
  509. word-wrap:break-word;
  510. text-transform:none;
  511. visibility:hidden;
  512. }
  513. #u24792_div {
  514. border-width:0px;
  515. position:absolute;
  516. left:0px;
  517. top:0px;
  518. width:62px;
  519. height:20px;
  520. background:inherit;
  521. background-color:rgba(255, 255, 255, 0);
  522. border:none;
  523. border-radius:0px;
  524. -moz-box-shadow:none;
  525. -webkit-box-shadow:none;
  526. box-shadow:none;
  527. }
  528. #u24792 {
  529. border-width:0px;
  530. position:absolute;
  531. left:22px;
  532. top:0px;
  533. width:62px;
  534. height:20px;
  535. display:flex;
  536. }
  537. #u24792 .text {
  538. position:absolute;
  539. align-self:center;
  540. padding:2px 2px 2px 3px;
  541. box-sizing:border-box;
  542. width:100%;
  543. }
  544. #u24792_text {
  545. border-width:0px;
  546. white-space:nowrap;
  547. text-transform:none;
  548. }
  549. #u24790_children {
  550. border-width:0px;
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:0px;
  555. height:0px;
  556. }
  557. #u24793 {
  558. border-width:0px;
  559. position:absolute;
  560. left:20px;
  561. top:20px;
  562. width:98px;
  563. height:20px;
  564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  565. font-weight:400;
  566. font-style:normal;
  567. font-size:14px;
  568. color:#FFFFFF;
  569. }
  570. #u24794_div {
  571. border-width:0px;
  572. position:absolute;
  573. left:0px;
  574. top:0px;
  575. width:76px;
  576. height:20px;
  577. background:inherit;
  578. background-color:rgba(255, 255, 255, 0);
  579. border:none;
  580. border-radius:0px;
  581. -moz-box-shadow:none;
  582. -webkit-box-shadow:none;
  583. box-shadow:none;
  584. }
  585. #u24794 {
  586. border-width:0px;
  587. position:absolute;
  588. left:22px;
  589. top:0px;
  590. width:76px;
  591. height:20px;
  592. display:flex;
  593. }
  594. #u24794 .text {
  595. position:absolute;
  596. align-self:center;
  597. padding:2px 2px 2px 3px;
  598. box-sizing:border-box;
  599. width:100%;
  600. }
  601. #u24794_text {
  602. border-width:0px;
  603. white-space:nowrap;
  604. text-transform:none;
  605. }
  606. #u24795 {
  607. border-width:0px;
  608. position:absolute;
  609. left:20px;
  610. top:40px;
  611. width:98px;
  612. height:20px;
  613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  614. font-weight:400;
  615. font-style:normal;
  616. font-size:14px;
  617. color:#FFFFFF;
  618. }
  619. #u24796_div {
  620. border-width:0px;
  621. position:absolute;
  622. left:0px;
  623. top:0px;
  624. width:76px;
  625. height:20px;
  626. background:inherit;
  627. background-color:rgba(255, 255, 255, 0);
  628. border:none;
  629. border-radius:0px;
  630. -moz-box-shadow:none;
  631. -webkit-box-shadow:none;
  632. box-shadow:none;
  633. }
  634. #u24796 {
  635. border-width:0px;
  636. position:absolute;
  637. left:22px;
  638. top:0px;
  639. width:76px;
  640. height:20px;
  641. display:flex;
  642. }
  643. #u24796 .text {
  644. position:absolute;
  645. align-self:center;
  646. padding:2px 2px 2px 3px;
  647. box-sizing:border-box;
  648. width:100%;
  649. }
  650. #u24796_text {
  651. border-width:0px;
  652. white-space:nowrap;
  653. text-transform:none;
  654. }
  655. #u24797 {
  656. border-width:0px;
  657. position:absolute;
  658. left:0px;
  659. top:80px;
  660. width:84px;
  661. height:20px;
  662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  663. font-weight:400;
  664. font-style:normal;
  665. font-size:14px;
  666. color:#FFFFFF;
  667. }
  668. #u24798_img {
  669. border-width:0px;
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:9px;
  674. height:9px;
  675. }
  676. #u24798 {
  677. border-width:0px;
  678. position:absolute;
  679. left:6px;
  680. top:6px;
  681. width:9px;
  682. height:9px;
  683. display:flex;
  684. }
  685. #u24798 .text {
  686. position:absolute;
  687. align-self:center;
  688. padding:2px 2px 2px 2px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u24798_img.selected {
  693. }
  694. #u24798.selected {
  695. }
  696. #u24798_text {
  697. border-width:0px;
  698. word-wrap:break-word;
  699. text-transform:none;
  700. visibility:hidden;
  701. }
  702. #u24799_div {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:62px;
  708. height:20px;
  709. background:inherit;
  710. background-color:rgba(255, 255, 255, 0);
  711. border:none;
  712. border-radius:0px;
  713. -moz-box-shadow:none;
  714. -webkit-box-shadow:none;
  715. box-shadow:none;
  716. }
  717. #u24799 {
  718. border-width:0px;
  719. position:absolute;
  720. left:22px;
  721. top:0px;
  722. width:62px;
  723. height:20px;
  724. display:flex;
  725. }
  726. #u24799 .text {
  727. position:absolute;
  728. align-self:center;
  729. padding:2px 2px 2px 3px;
  730. box-sizing:border-box;
  731. width:100%;
  732. }
  733. #u24799_text {
  734. border-width:0px;
  735. white-space:nowrap;
  736. text-transform:none;
  737. }
  738. #u24797_children {
  739. border-width:0px;
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:0px;
  744. height:0px;
  745. }
  746. #u24800 {
  747. border-width:0px;
  748. position:absolute;
  749. left:20px;
  750. top:20px;
  751. width:98px;
  752. height:20px;
  753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  754. font-weight:400;
  755. font-style:normal;
  756. font-size:14px;
  757. color:#FFFFFF;
  758. }
  759. #u24801_div {
  760. border-width:0px;
  761. position:absolute;
  762. left:0px;
  763. top:0px;
  764. width:76px;
  765. height:20px;
  766. background:inherit;
  767. background-color:rgba(255, 255, 255, 0);
  768. border:none;
  769. border-radius:0px;
  770. -moz-box-shadow:none;
  771. -webkit-box-shadow:none;
  772. box-shadow:none;
  773. }
  774. #u24801 {
  775. border-width:0px;
  776. position:absolute;
  777. left:22px;
  778. top:0px;
  779. width:76px;
  780. height:20px;
  781. display:flex;
  782. }
  783. #u24801 .text {
  784. position:absolute;
  785. align-self:center;
  786. padding:2px 2px 2px 3px;
  787. box-sizing:border-box;
  788. width:100%;
  789. }
  790. #u24801_text {
  791. border-width:0px;
  792. white-space:nowrap;
  793. text-transform:none;
  794. }
  795. #u24802 {
  796. border-width:0px;
  797. position:absolute;
  798. left:20px;
  799. top:40px;
  800. width:98px;
  801. height:20px;
  802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  803. font-weight:400;
  804. font-style:normal;
  805. font-size:14px;
  806. color:#FFFFFF;
  807. }
  808. #u24803_div {
  809. border-width:0px;
  810. position:absolute;
  811. left:0px;
  812. top:0px;
  813. width:76px;
  814. height:20px;
  815. background:inherit;
  816. background-color:rgba(255, 255, 255, 0);
  817. border:none;
  818. border-radius:0px;
  819. -moz-box-shadow:none;
  820. -webkit-box-shadow:none;
  821. box-shadow:none;
  822. }
  823. #u24803 {
  824. border-width:0px;
  825. position:absolute;
  826. left:22px;
  827. top:0px;
  828. width:76px;
  829. height:20px;
  830. display:flex;
  831. }
  832. #u24803 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 3px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u24803_text {
  840. border-width:0px;
  841. white-space:nowrap;
  842. text-transform:none;
  843. }
  844. #u24804 {
  845. border-width:0px;
  846. position:absolute;
  847. left:0px;
  848. top:140px;
  849. width:84px;
  850. height:20px;
  851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  852. font-weight:400;
  853. font-style:normal;
  854. font-size:14px;
  855. color:#FFFFFF;
  856. }
  857. #u24805_img {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:9px;
  863. height:9px;
  864. }
  865. #u24805 {
  866. border-width:0px;
  867. position:absolute;
  868. left:6px;
  869. top:6px;
  870. width:9px;
  871. height:9px;
  872. display:flex;
  873. }
  874. #u24805 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u24805_img.selected {
  882. }
  883. #u24805.selected {
  884. }
  885. #u24805_text {
  886. border-width:0px;
  887. word-wrap:break-word;
  888. text-transform:none;
  889. visibility:hidden;
  890. }
  891. #u24806_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:62px;
  897. height:20px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 255, 0);
  900. border:none;
  901. border-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. }
  906. #u24806 {
  907. border-width:0px;
  908. position:absolute;
  909. left:22px;
  910. top:0px;
  911. width:62px;
  912. height:20px;
  913. display:flex;
  914. }
  915. #u24806 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 3px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u24806_text {
  923. border-width:0px;
  924. white-space:nowrap;
  925. text-transform:none;
  926. }
  927. #u24804_children {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:0px;
  933. height:0px;
  934. visibility:hidden;
  935. }
  936. #u24807 {
  937. border-width:0px;
  938. position:absolute;
  939. left:20px;
  940. top:20px;
  941. width:84px;
  942. height:20px;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:14px;
  947. color:#FFFFFF;
  948. }
  949. #u24808_div {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:62px;
  955. height:20px;
  956. background:inherit;
  957. background-color:rgba(255, 255, 255, 0);
  958. border:none;
  959. border-radius:0px;
  960. -moz-box-shadow:none;
  961. -webkit-box-shadow:none;
  962. box-shadow:none;
  963. }
  964. #u24808 {
  965. border-width:0px;
  966. position:absolute;
  967. left:22px;
  968. top:0px;
  969. width:62px;
  970. height:20px;
  971. display:flex;
  972. }
  973. #u24808 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 3px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u24808_text {
  981. border-width:0px;
  982. white-space:nowrap;
  983. text-transform:none;
  984. }
  985. #u24809 {
  986. border-width:0px;
  987. position:absolute;
  988. left:20px;
  989. top:40px;
  990. width:84px;
  991. height:20px;
  992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  993. font-weight:400;
  994. font-style:normal;
  995. font-size:14px;
  996. color:#FFFFFF;
  997. }
  998. #u24810_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:62px;
  1004. height:20px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. border:none;
  1008. border-radius:0px;
  1009. -moz-box-shadow:none;
  1010. -webkit-box-shadow:none;
  1011. box-shadow:none;
  1012. }
  1013. #u24810 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:22px;
  1017. top:0px;
  1018. width:62px;
  1019. height:20px;
  1020. display:flex;
  1021. }
  1022. #u24810 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:2px 2px 2px 3px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u24810_text {
  1030. border-width:0px;
  1031. white-space:nowrap;
  1032. text-transform:none;
  1033. }
  1034. #u24811 {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:20px;
  1038. top:60px;
  1039. width:84px;
  1040. height:20px;
  1041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1042. font-weight:400;
  1043. font-style:normal;
  1044. font-size:14px;
  1045. color:#FFFFFF;
  1046. }
  1047. #u24812_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:62px;
  1053. height:20px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. }
  1062. #u24812 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:22px;
  1066. top:0px;
  1067. width:62px;
  1068. height:20px;
  1069. display:flex;
  1070. }
  1071. #u24812 .text {
  1072. position:absolute;
  1073. align-self:center;
  1074. padding:2px 2px 2px 3px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u24812_text {
  1079. border-width:0px;
  1080. white-space:nowrap;
  1081. text-transform:none;
  1082. }
  1083. #u24813 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:20px;
  1087. top:80px;
  1088. width:84px;
  1089. height:20px;
  1090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1091. font-weight:400;
  1092. font-style:normal;
  1093. font-size:14px;
  1094. color:#FFFFFF;
  1095. }
  1096. #u24814_div {
  1097. border-width:0px;
  1098. position:absolute;
  1099. left:0px;
  1100. top:0px;
  1101. width:62px;
  1102. height:20px;
  1103. background:inherit;
  1104. background-color:rgba(255, 255, 255, 0);
  1105. border:none;
  1106. border-radius:0px;
  1107. -moz-box-shadow:none;
  1108. -webkit-box-shadow:none;
  1109. box-shadow:none;
  1110. }
  1111. #u24814 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:22px;
  1115. top:0px;
  1116. width:62px;
  1117. height:20px;
  1118. display:flex;
  1119. }
  1120. #u24814 .text {
  1121. position:absolute;
  1122. align-self:center;
  1123. padding:2px 2px 2px 3px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u24814_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u24815 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:160px;
  1137. width:98px;
  1138. height:20px;
  1139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1140. font-weight:400;
  1141. font-style:normal;
  1142. font-size:14px;
  1143. color:#FFFFFF;
  1144. }
  1145. #u24816_img {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:9px;
  1151. height:9px;
  1152. }
  1153. #u24816 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:6px;
  1157. top:6px;
  1158. width:9px;
  1159. height:9px;
  1160. display:flex;
  1161. }
  1162. #u24816 .text {
  1163. position:absolute;
  1164. align-self:center;
  1165. padding:2px 2px 2px 2px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u24816_img.selected {
  1170. }
  1171. #u24816.selected {
  1172. }
  1173. #u24816_text {
  1174. border-width:0px;
  1175. word-wrap:break-word;
  1176. text-transform:none;
  1177. visibility:hidden;
  1178. }
  1179. #u24817_div {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:0px;
  1183. top:0px;
  1184. width:76px;
  1185. height:20px;
  1186. background:inherit;
  1187. background-color:rgba(255, 255, 255, 0);
  1188. border:none;
  1189. border-radius:0px;
  1190. -moz-box-shadow:none;
  1191. -webkit-box-shadow:none;
  1192. box-shadow:none;
  1193. }
  1194. #u24817 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:22px;
  1198. top:0px;
  1199. width:76px;
  1200. height:20px;
  1201. display:flex;
  1202. }
  1203. #u24817 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:2px 2px 2px 3px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u24817_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u24815_children {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:0px;
  1221. height:0px;
  1222. visibility:hidden;
  1223. }
  1224. #u24818 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:20px;
  1228. top:20px;
  1229. width:98px;
  1230. height:20px;
  1231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. color:#FFFFFF;
  1236. }
  1237. #u24819_div {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:0px;
  1241. top:0px;
  1242. width:76px;
  1243. height:20px;
  1244. background:inherit;
  1245. background-color:rgba(255, 255, 255, 0);
  1246. border:none;
  1247. border-radius:0px;
  1248. -moz-box-shadow:none;
  1249. -webkit-box-shadow:none;
  1250. box-shadow:none;
  1251. }
  1252. #u24819 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:22px;
  1256. top:0px;
  1257. width:76px;
  1258. height:20px;
  1259. display:flex;
  1260. }
  1261. #u24819 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 3px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u24819_text {
  1269. border-width:0px;
  1270. white-space:nowrap;
  1271. text-transform:none;
  1272. }
  1273. #u24820 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:20px;
  1277. top:40px;
  1278. width:98px;
  1279. height:20px;
  1280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1281. font-weight:400;
  1282. font-style:normal;
  1283. font-size:14px;
  1284. color:#FFFFFF;
  1285. }
  1286. #u24821_div {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:76px;
  1292. height:20px;
  1293. background:inherit;
  1294. background-color:rgba(255, 255, 255, 0);
  1295. border:none;
  1296. border-radius:0px;
  1297. -moz-box-shadow:none;
  1298. -webkit-box-shadow:none;
  1299. box-shadow:none;
  1300. }
  1301. #u24821 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:22px;
  1305. top:0px;
  1306. width:76px;
  1307. height:20px;
  1308. display:flex;
  1309. }
  1310. #u24821 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:2px 2px 2px 3px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u24821_text {
  1318. border-width:0px;
  1319. white-space:nowrap;
  1320. text-transform:none;
  1321. }
  1322. #u24822 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:180px;
  1327. width:84px;
  1328. height:20px;
  1329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1330. font-weight:400;
  1331. font-style:normal;
  1332. font-size:14px;
  1333. color:#FFFFFF;
  1334. }
  1335. #u24823_img {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:9px;
  1341. height:9px;
  1342. }
  1343. #u24823 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:6px;
  1347. top:6px;
  1348. width:9px;
  1349. height:9px;
  1350. display:flex;
  1351. }
  1352. #u24823 .text {
  1353. position:absolute;
  1354. align-self:center;
  1355. padding:2px 2px 2px 2px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u24823_img.selected {
  1360. }
  1361. #u24823.selected {
  1362. }
  1363. #u24823_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. visibility:hidden;
  1368. }
  1369. #u24824_div {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:0px;
  1373. top:0px;
  1374. width:62px;
  1375. height:20px;
  1376. background:inherit;
  1377. background-color:rgba(255, 255, 255, 0);
  1378. border:none;
  1379. border-radius:0px;
  1380. -moz-box-shadow:none;
  1381. -webkit-box-shadow:none;
  1382. box-shadow:none;
  1383. }
  1384. #u24824 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:22px;
  1388. top:0px;
  1389. width:62px;
  1390. height:20px;
  1391. display:flex;
  1392. }
  1393. #u24824 .text {
  1394. position:absolute;
  1395. align-self:center;
  1396. padding:2px 2px 2px 3px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u24824_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u24822_children {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:0px;
  1411. height:0px;
  1412. visibility:hidden;
  1413. }
  1414. #u24825 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:20px;
  1418. top:20px;
  1419. width:98px;
  1420. height:20px;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u24826_div {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:76px;
  1433. height:20px;
  1434. background:inherit;
  1435. background-color:rgba(255, 255, 255, 0);
  1436. border:none;
  1437. border-radius:0px;
  1438. -moz-box-shadow:none;
  1439. -webkit-box-shadow:none;
  1440. box-shadow:none;
  1441. }
  1442. #u24826 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:22px;
  1446. top:0px;
  1447. width:76px;
  1448. height:20px;
  1449. display:flex;
  1450. }
  1451. #u24826 .text {
  1452. position:absolute;
  1453. align-self:center;
  1454. padding:2px 2px 2px 3px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u24826_text {
  1459. border-width:0px;
  1460. white-space:nowrap;
  1461. text-transform:none;
  1462. }
  1463. #u24827 {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:20px;
  1467. top:40px;
  1468. width:84px;
  1469. height:20px;
  1470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1471. font-weight:400;
  1472. font-style:normal;
  1473. font-size:14px;
  1474. color:#FFFFFF;
  1475. }
  1476. #u24828_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:62px;
  1482. height:20px;
  1483. background:inherit;
  1484. background-color:rgba(255, 255, 255, 0);
  1485. border:none;
  1486. border-radius:0px;
  1487. -moz-box-shadow:none;
  1488. -webkit-box-shadow:none;
  1489. box-shadow:none;
  1490. }
  1491. #u24828 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:22px;
  1495. top:0px;
  1496. width:62px;
  1497. height:20px;
  1498. display:flex;
  1499. }
  1500. #u24828 .text {
  1501. position:absolute;
  1502. align-self:center;
  1503. padding:2px 2px 2px 3px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u24828_text {
  1508. border-width:0px;
  1509. white-space:nowrap;
  1510. text-transform:none;
  1511. }
  1512. #u24829 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:200px;
  1517. width:84px;
  1518. height:20px;
  1519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1520. font-weight:400;
  1521. font-style:normal;
  1522. font-size:14px;
  1523. color:#FFFFFF;
  1524. }
  1525. #u24830_img {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:9px;
  1531. height:9px;
  1532. }
  1533. #u24830 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:6px;
  1537. top:6px;
  1538. width:9px;
  1539. height:9px;
  1540. display:flex;
  1541. }
  1542. #u24830 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u24830_img.selected {
  1550. }
  1551. #u24830.selected {
  1552. }
  1553. #u24830_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. visibility:hidden;
  1558. }
  1559. #u24831_div {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:62px;
  1565. height:20px;
  1566. background:inherit;
  1567. background-color:rgba(255, 255, 255, 0);
  1568. border:none;
  1569. border-radius:0px;
  1570. -moz-box-shadow:none;
  1571. -webkit-box-shadow:none;
  1572. box-shadow:none;
  1573. }
  1574. #u24831 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:22px;
  1578. top:0px;
  1579. width:62px;
  1580. height:20px;
  1581. display:flex;
  1582. }
  1583. #u24831 .text {
  1584. position:absolute;
  1585. align-self:center;
  1586. padding:2px 2px 2px 3px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u24831_text {
  1591. border-width:0px;
  1592. white-space:nowrap;
  1593. text-transform:none;
  1594. }
  1595. #u24829_children {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:0px;
  1601. height:0px;
  1602. visibility:hidden;
  1603. }
  1604. #u24832 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:20px;
  1608. top:20px;
  1609. width:84px;
  1610. height:20px;
  1611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:14px;
  1615. color:#FFFFFF;
  1616. }
  1617. #u24833_div {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:62px;
  1623. height:20px;
  1624. background:inherit;
  1625. background-color:rgba(255, 255, 255, 0);
  1626. border:none;
  1627. border-radius:0px;
  1628. -moz-box-shadow:none;
  1629. -webkit-box-shadow:none;
  1630. box-shadow:none;
  1631. }
  1632. #u24833 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:22px;
  1636. top:0px;
  1637. width:62px;
  1638. height:20px;
  1639. display:flex;
  1640. }
  1641. #u24833 .text {
  1642. position:absolute;
  1643. align-self:center;
  1644. padding:2px 2px 2px 3px;
  1645. box-sizing:border-box;
  1646. width:100%;
  1647. }
  1648. #u24833_text {
  1649. border-width:0px;
  1650. white-space:nowrap;
  1651. text-transform:none;
  1652. }
  1653. #u24834 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:20px;
  1657. top:40px;
  1658. width:84px;
  1659. height:20px;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:14px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u24835_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:62px;
  1672. height:20px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 0);
  1675. border:none;
  1676. border-radius:0px;
  1677. -moz-box-shadow:none;
  1678. -webkit-box-shadow:none;
  1679. box-shadow:none;
  1680. }
  1681. #u24835 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:22px;
  1685. top:0px;
  1686. width:62px;
  1687. height:20px;
  1688. display:flex;
  1689. }
  1690. #u24835 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 3px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u24835_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u24836 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:20px;
  1706. top:60px;
  1707. width:84px;
  1708. height:20px;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:14px;
  1713. color:#FFFFFF;
  1714. }
  1715. #u24837_div {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:62px;
  1721. height:20px;
  1722. background:inherit;
  1723. background-color:rgba(255, 255, 255, 0);
  1724. border:none;
  1725. border-radius:0px;
  1726. -moz-box-shadow:none;
  1727. -webkit-box-shadow:none;
  1728. box-shadow:none;
  1729. }
  1730. #u24837 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:22px;
  1734. top:0px;
  1735. width:62px;
  1736. height:20px;
  1737. display:flex;
  1738. }
  1739. #u24837 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 3px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u24837_text {
  1747. border-width:0px;
  1748. white-space:nowrap;
  1749. text-transform:none;
  1750. }
  1751. #u24838 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u24839_input {
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:141px;
  1764. height:22px;
  1765. padding:2px 2px 2px 2px;
  1766. font-family:'ArialMT', 'Arial', sans-serif;
  1767. font-weight:400;
  1768. font-style:normal;
  1769. font-size:14px;
  1770. letter-spacing:normal;
  1771. color:#FFFFFF;
  1772. vertical-align:none;
  1773. text-align:left;
  1774. text-transform:none;
  1775. background-color:transparent;
  1776. border-color:transparent;
  1777. }
  1778. #u24839_input.disabled {
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:141px;
  1783. height:22px;
  1784. padding:2px 2px 2px 2px;
  1785. font-family:'ArialMT', 'Arial', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. letter-spacing:normal;
  1790. color:#FFFFFF;
  1791. vertical-align:none;
  1792. text-align:left;
  1793. text-transform:none;
  1794. background-color:transparent;
  1795. border-color:transparent;
  1796. }
  1797. #u24839_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:141px;
  1803. height:22px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 0);
  1806. border:none;
  1807. border-radius:0px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-size:14px;
  1812. color:#FFFFFF;
  1813. }
  1814. #u24839 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:243px;
  1818. top:14px;
  1819. width:141px;
  1820. height:22px;
  1821. display:flex;
  1822. font-size:14px;
  1823. color:#FFFFFF;
  1824. }
  1825. #u24839 .text {
  1826. position:absolute;
  1827. align-self:flex-start;
  1828. padding:2px 2px 2px 2px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u24839_div.disabled {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:141px;
  1838. height:22px;
  1839. background:inherit;
  1840. background-color:rgba(240, 240, 240, 1);
  1841. border:none;
  1842. border-radius:0px;
  1843. -moz-box-shadow:none;
  1844. -webkit-box-shadow:none;
  1845. box-shadow:none;
  1846. font-size:14px;
  1847. color:#FFFFFF;
  1848. }
  1849. #u24839.disabled {
  1850. }
  1851. .u24839_input_option {
  1852. font-size:14px;
  1853. }
  1854. #u24840_img {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:22px;
  1860. height:22px;
  1861. }
  1862. #u24840 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:216px;
  1866. top:15px;
  1867. width:22px;
  1868. height:22px;
  1869. display:flex;
  1870. }
  1871. #u24840 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 2px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u24840_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. visibility:hidden;
  1883. }
  1884. #u24841_div {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:136px;
  1890. height:16px;
  1891. background:inherit;
  1892. background-color:rgba(255, 255, 255, 0);
  1893. border:none;
  1894. border-radius:0px;
  1895. -moz-box-shadow:none;
  1896. -webkit-box-shadow:none;
  1897. box-shadow:none;
  1898. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1899. font-weight:200;
  1900. font-style:normal;
  1901. font-size:11px;
  1902. color:#555555;
  1903. }
  1904. #u24841 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:208px;
  1908. top:53px;
  1909. width:136px;
  1910. height:16px;
  1911. display:flex;
  1912. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1913. font-weight:200;
  1914. font-style:normal;
  1915. font-size:11px;
  1916. color:#555555;
  1917. }
  1918. #u24841 .text {
  1919. position:absolute;
  1920. align-self:flex-start;
  1921. padding:0px 0px 0px 0px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u24841_text {
  1926. border-width:0px;
  1927. white-space:nowrap;
  1928. text-transform:none;
  1929. }
  1930. #u24842_div {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:140px;
  1936. height:24px;
  1937. background:inherit;
  1938. background-color:rgba(242, 242, 242, 0.2);
  1939. border:none;
  1940. border-radius:25px;
  1941. -moz-box-shadow:none;
  1942. -webkit-box-shadow:none;
  1943. box-shadow:none;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. color:#FFFFFF;
  1948. text-align:center;
  1949. }
  1950. #u24842 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:417px;
  1954. top:13px;
  1955. width:140px;
  1956. height:24px;
  1957. display:flex;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. color:#FFFFFF;
  1962. text-align:center;
  1963. }
  1964. #u24842 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:0px 0px 0px 0px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u24842_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u24843_div {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:85px;
  1982. height:20px;
  1983. background:inherit;
  1984. background-color:rgba(30, 42, 68, 1);
  1985. border:none;
  1986. border-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. color:#FFFFFF;
  1994. }
  1995. #u24843 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:1374px;
  1999. top:15px;
  2000. width:85px;
  2001. height:20px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. color:#FFFFFF;
  2007. }
  2008. #u24843 .text {
  2009. position:absolute;
  2010. align-self:flex-start;
  2011. padding:0px 0px 0px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u24843_text {
  2016. border-width:0px;
  2017. white-space:nowrap;
  2018. text-transform:none;
  2019. }
  2020. #u24844_div {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:1381px;
  2026. height:1153px;
  2027. background:inherit;
  2028. background-color:rgba(255, 255, 255, 1);
  2029. border:none;
  2030. border-radius:0px;
  2031. -moz-box-shadow:none;
  2032. -webkit-box-shadow:none;
  2033. box-shadow:none;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:12px;
  2038. color:#FFFFFF;
  2039. text-align:left;
  2040. }
  2041. #u24844 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:208px;
  2045. top:74px;
  2046. width:1381px;
  2047. height:1153px;
  2048. display:flex;
  2049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2050. font-weight:400;
  2051. font-style:normal;
  2052. font-size:12px;
  2053. color:#FFFFFF;
  2054. text-align:left;
  2055. }
  2056. #u24844 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 50px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u24844_text {
  2064. border-width:0px;
  2065. word-wrap:break-word;
  2066. text-transform:none;
  2067. visibility:hidden;
  2068. }
  2069. #u24845_div {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:1381px;
  2075. height:1168px;
  2076. background:inherit;
  2077. background-color:rgba(255, 255, 255, 1);
  2078. border:none;
  2079. border-radius:0px;
  2080. -moz-box-shadow:none;
  2081. -webkit-box-shadow:none;
  2082. box-shadow:none;
  2083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2084. font-weight:400;
  2085. font-style:normal;
  2086. font-size:12px;
  2087. color:#FFFFFF;
  2088. text-align:left;
  2089. }
  2090. #u24845 {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:208px;
  2094. top:74px;
  2095. width:1381px;
  2096. height:1168px;
  2097. display:flex;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. font-size:12px;
  2102. color:#FFFFFF;
  2103. text-align:left;
  2104. }
  2105. #u24845 .text {
  2106. position:absolute;
  2107. align-self:center;
  2108. padding:2px 2px 2px 50px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u24845_text {
  2113. border-width:0px;
  2114. word-wrap:break-word;
  2115. text-transform:none;
  2116. visibility:hidden;
  2117. }
  2118. #u24846_div {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:0px;
  2122. top:0px;
  2123. width:73px;
  2124. height:50px;
  2125. background:inherit;
  2126. background-color:rgba(255, 255, 255, 0);
  2127. border:none;
  2128. border-left:0px;
  2129. border-top:0px;
  2130. border-right:0px;
  2131. border-radius:0px;
  2132. border-bottom-right-radius:0px;
  2133. border-bottom-left-radius:0px;
  2134. -moz-box-shadow:none;
  2135. -webkit-box-shadow:none;
  2136. box-shadow:none;
  2137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2138. font-weight:400;
  2139. font-style:normal;
  2140. font-size:18px;
  2141. }
  2142. #u24846 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:227px;
  2146. top:74px;
  2147. width:73px;
  2148. height:50px;
  2149. display:flex;
  2150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2151. font-weight:400;
  2152. font-style:normal;
  2153. font-size:18px;
  2154. }
  2155. #u24846 .text {
  2156. position:absolute;
  2157. align-self:center;
  2158. padding:0px 0px 0px 0px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u24846_text {
  2163. border-width:0px;
  2164. white-space:nowrap;
  2165. text-transform:none;
  2166. }
  2167. #u24847 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:228px;
  2171. top:295px;
  2172. width:1340px;
  2173. height:322px;
  2174. }
  2175. #u24848_img {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:115px;
  2181. height:38px;
  2182. }
  2183. #u24848 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:115px;
  2189. height:38px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:12px;
  2195. color:#FFFFFF;
  2196. }
  2197. #u24848 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:2px 2px 2px 0px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u24848_text {
  2205. border-width:0px;
  2206. word-wrap:break-word;
  2207. text-transform:none;
  2208. }
  2209. #u24849_img {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:115px;
  2215. height:38px;
  2216. }
  2217. #u24849 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:115px;
  2221. top:0px;
  2222. width:115px;
  2223. height:38px;
  2224. display:flex;
  2225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:12px;
  2229. color:#FFFFFF;
  2230. }
  2231. #u24849 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:2px 2px 2px 0px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u24849_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. }
  2243. #u24850_img {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:115px;
  2249. height:38px;
  2250. }
  2251. #u24850 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:230px;
  2255. top:0px;
  2256. width:115px;
  2257. height:38px;
  2258. display:flex;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:12px;
  2263. color:#FFFFFF;
  2264. }
  2265. #u24850 .text {
  2266. position:absolute;
  2267. align-self:center;
  2268. padding:2px 2px 2px 0px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u24850_text {
  2273. border-width:0px;
  2274. word-wrap:break-word;
  2275. text-transform:none;
  2276. }
  2277. #u24851_img {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:115px;
  2283. height:38px;
  2284. }
  2285. #u24851 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:345px;
  2289. top:0px;
  2290. width:115px;
  2291. height:38px;
  2292. display:flex;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:12px;
  2297. color:#FFFFFF;
  2298. }
  2299. #u24851 .text {
  2300. position:absolute;
  2301. align-self:center;
  2302. padding:2px 2px 2px 0px;
  2303. box-sizing:border-box;
  2304. width:100%;
  2305. }
  2306. #u24851_text {
  2307. border-width:0px;
  2308. word-wrap:break-word;
  2309. text-transform:none;
  2310. }
  2311. #u24852_img {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:0px;
  2316. width:103px;
  2317. height:38px;
  2318. }
  2319. #u24852 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:460px;
  2323. top:0px;
  2324. width:103px;
  2325. height:38px;
  2326. display:flex;
  2327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2328. font-weight:400;
  2329. font-style:normal;
  2330. font-size:12px;
  2331. color:#FFFFFF;
  2332. }
  2333. #u24852 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:2px 2px 2px 0px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u24852_text {
  2341. border-width:0px;
  2342. word-wrap:break-word;
  2343. text-transform:none;
  2344. }
  2345. #u24853_img {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:103px;
  2351. height:38px;
  2352. }
  2353. #u24853 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:563px;
  2357. top:0px;
  2358. width:103px;
  2359. height:38px;
  2360. display:flex;
  2361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:12px;
  2365. color:#FFFFFF;
  2366. }
  2367. #u24853 .text {
  2368. position:absolute;
  2369. align-self:center;
  2370. padding:2px 2px 2px 0px;
  2371. box-sizing:border-box;
  2372. width:100%;
  2373. }
  2374. #u24853_text {
  2375. border-width:0px;
  2376. word-wrap:break-word;
  2377. text-transform:none;
  2378. }
  2379. #u24854_img {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:103px;
  2385. height:38px;
  2386. }
  2387. #u24854 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:666px;
  2391. top:0px;
  2392. width:103px;
  2393. height:38px;
  2394. display:flex;
  2395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2396. font-weight:400;
  2397. font-style:normal;
  2398. font-size:12px;
  2399. color:#FFFFFF;
  2400. }
  2401. #u24854 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 0px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u24854_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. }
  2413. #u24855_img {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:103px;
  2419. height:38px;
  2420. }
  2421. #u24855 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:769px;
  2425. top:0px;
  2426. width:103px;
  2427. height:38px;
  2428. display:flex;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:12px;
  2433. color:#FFFFFF;
  2434. }
  2435. #u24855 .text {
  2436. position:absolute;
  2437. align-self:center;
  2438. padding:2px 2px 2px 0px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u24855_text {
  2443. border-width:0px;
  2444. word-wrap:break-word;
  2445. text-transform:none;
  2446. }
  2447. #u24856_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:103px;
  2453. height:38px;
  2454. }
  2455. #u24856 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:872px;
  2459. top:0px;
  2460. width:103px;
  2461. height:38px;
  2462. display:flex;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:12px;
  2467. color:#FFFFFF;
  2468. }
  2469. #u24856 .text {
  2470. position:absolute;
  2471. align-self:center;
  2472. padding:2px 2px 2px 0px;
  2473. box-sizing:border-box;
  2474. width:100%;
  2475. }
  2476. #u24856_text {
  2477. border-width:0px;
  2478. word-wrap:break-word;
  2479. text-transform:none;
  2480. }
  2481. #u24857_img {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:133px;
  2487. height:38px;
  2488. }
  2489. #u24857 {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:975px;
  2493. top:0px;
  2494. width:133px;
  2495. height:38px;
  2496. display:flex;
  2497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:12px;
  2501. color:#FFFFFF;
  2502. }
  2503. #u24857 .text {
  2504. position:absolute;
  2505. align-self:center;
  2506. padding:2px 2px 2px 0px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u24857_text {
  2511. border-width:0px;
  2512. word-wrap:break-word;
  2513. text-transform:none;
  2514. }
  2515. #u24858_img {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:112px;
  2521. height:38px;
  2522. }
  2523. #u24858 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:1108px;
  2527. top:0px;
  2528. width:112px;
  2529. height:38px;
  2530. display:flex;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:12px;
  2535. color:#FFFFFF;
  2536. }
  2537. #u24858 .text {
  2538. position:absolute;
  2539. align-self:center;
  2540. padding:2px 2px 2px 0px;
  2541. box-sizing:border-box;
  2542. width:100%;
  2543. }
  2544. #u24858_text {
  2545. border-width:0px;
  2546. word-wrap:break-word;
  2547. text-transform:none;
  2548. }
  2549. #u24859_img {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:120px;
  2555. height:38px;
  2556. }
  2557. #u24859 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:1220px;
  2561. top:0px;
  2562. width:120px;
  2563. height:38px;
  2564. display:flex;
  2565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2566. font-weight:400;
  2567. font-style:normal;
  2568. font-size:12px;
  2569. color:#FFFFFF;
  2570. }
  2571. #u24859 .text {
  2572. position:absolute;
  2573. align-self:center;
  2574. padding:2px 2px 2px 0px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u24859_text {
  2579. border-width:0px;
  2580. word-wrap:break-word;
  2581. text-transform:none;
  2582. }
  2583. #u24860_img {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:0px;
  2587. top:0px;
  2588. width:115px;
  2589. height:38px;
  2590. }
  2591. #u24860 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:38px;
  2596. width:115px;
  2597. height:38px;
  2598. display:flex;
  2599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:12px;
  2603. color:#333333;
  2604. }
  2605. #u24860 .text {
  2606. position:absolute;
  2607. align-self:center;
  2608. padding:2px 2px 2px 0px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u24860_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. visibility:hidden;
  2617. }
  2618. #u24861_img {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:115px;
  2624. height:38px;
  2625. }
  2626. #u24861 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:115px;
  2630. top:38px;
  2631. width:115px;
  2632. height:38px;
  2633. display:flex;
  2634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2635. font-weight:400;
  2636. font-style:normal;
  2637. font-size:12px;
  2638. color:#333333;
  2639. }
  2640. #u24861 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 0px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u24861_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. visibility:hidden;
  2652. }
  2653. #u24862_img {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:115px;
  2659. height:38px;
  2660. }
  2661. #u24862 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:230px;
  2665. top:38px;
  2666. width:115px;
  2667. height:38px;
  2668. display:flex;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:12px;
  2673. color:#333333;
  2674. }
  2675. #u24862 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 0px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u24862_text {
  2683. border-width:0px;
  2684. word-wrap:break-word;
  2685. text-transform:none;
  2686. visibility:hidden;
  2687. }
  2688. #u24863_img {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:115px;
  2694. height:38px;
  2695. }
  2696. #u24863 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:345px;
  2700. top:38px;
  2701. width:115px;
  2702. height:38px;
  2703. display:flex;
  2704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2705. font-weight:400;
  2706. font-style:normal;
  2707. font-size:12px;
  2708. color:#333333;
  2709. }
  2710. #u24863 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 0px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u24863_text {
  2718. border-width:0px;
  2719. word-wrap:break-word;
  2720. text-transform:none;
  2721. visibility:hidden;
  2722. }
  2723. #u24864_img {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:103px;
  2729. height:38px;
  2730. }
  2731. #u24864 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:460px;
  2735. top:38px;
  2736. width:103px;
  2737. height:38px;
  2738. display:flex;
  2739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2740. font-weight:400;
  2741. font-style:normal;
  2742. font-size:12px;
  2743. color:#333333;
  2744. }
  2745. #u24864 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 0px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u24864_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. visibility:hidden;
  2757. }
  2758. #u24865_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:103px;
  2764. height:38px;
  2765. }
  2766. #u24865 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:563px;
  2770. top:38px;
  2771. width:103px;
  2772. height:38px;
  2773. display:flex;
  2774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2775. font-weight:400;
  2776. font-style:normal;
  2777. font-size:12px;
  2778. color:#333333;
  2779. }
  2780. #u24865 .text {
  2781. position:absolute;
  2782. align-self:center;
  2783. padding:2px 2px 2px 0px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u24865_text {
  2788. border-width:0px;
  2789. word-wrap:break-word;
  2790. text-transform:none;
  2791. visibility:hidden;
  2792. }
  2793. #u24866_img {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:103px;
  2799. height:38px;
  2800. }
  2801. #u24866 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:666px;
  2805. top:38px;
  2806. width:103px;
  2807. height:38px;
  2808. display:flex;
  2809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2810. font-weight:400;
  2811. font-style:normal;
  2812. font-size:12px;
  2813. color:#333333;
  2814. }
  2815. #u24866 .text {
  2816. position:absolute;
  2817. align-self:center;
  2818. padding:2px 2px 2px 0px;
  2819. box-sizing:border-box;
  2820. width:100%;
  2821. }
  2822. #u24866_text {
  2823. border-width:0px;
  2824. word-wrap:break-word;
  2825. text-transform:none;
  2826. visibility:hidden;
  2827. }
  2828. #u24867_img {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:103px;
  2834. height:38px;
  2835. }
  2836. #u24867 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:769px;
  2840. top:38px;
  2841. width:103px;
  2842. height:38px;
  2843. display:flex;
  2844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2845. font-weight:400;
  2846. font-style:normal;
  2847. font-size:12px;
  2848. color:#333333;
  2849. }
  2850. #u24867 .text {
  2851. position:absolute;
  2852. align-self:center;
  2853. padding:2px 2px 2px 0px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u24867_text {
  2858. border-width:0px;
  2859. word-wrap:break-word;
  2860. text-transform:none;
  2861. visibility:hidden;
  2862. }
  2863. #u24868_img {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:103px;
  2869. height:38px;
  2870. }
  2871. #u24868 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:872px;
  2875. top:38px;
  2876. width:103px;
  2877. height:38px;
  2878. display:flex;
  2879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. font-size:12px;
  2883. color:#333333;
  2884. }
  2885. #u24868 .text {
  2886. position:absolute;
  2887. align-self:center;
  2888. padding:2px 2px 2px 0px;
  2889. box-sizing:border-box;
  2890. width:100%;
  2891. }
  2892. #u24868_text {
  2893. border-width:0px;
  2894. word-wrap:break-word;
  2895. text-transform:none;
  2896. visibility:hidden;
  2897. }
  2898. #u24869_img {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:0px;
  2902. top:0px;
  2903. width:133px;
  2904. height:38px;
  2905. }
  2906. #u24869 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:975px;
  2910. top:38px;
  2911. width:133px;
  2912. height:38px;
  2913. display:flex;
  2914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2915. font-weight:400;
  2916. font-style:normal;
  2917. font-size:12px;
  2918. color:#333333;
  2919. }
  2920. #u24869 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:2px 2px 2px 0px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u24869_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. visibility:hidden;
  2932. }
  2933. #u24870_img {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:112px;
  2939. height:38px;
  2940. }
  2941. #u24870 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:1108px;
  2945. top:38px;
  2946. width:112px;
  2947. height:38px;
  2948. display:flex;
  2949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:12px;
  2953. color:#333333;
  2954. }
  2955. #u24870 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 0px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u24870_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. visibility:hidden;
  2967. }
  2968. #u24871_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:120px;
  2974. height:38px;
  2975. }
  2976. #u24871 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:1220px;
  2980. top:38px;
  2981. width:120px;
  2982. height:38px;
  2983. display:flex;
  2984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:12px;
  2988. }
  2989. #u24871 .text {
  2990. position:absolute;
  2991. align-self:center;
  2992. padding:2px 2px 2px 0px;
  2993. box-sizing:border-box;
  2994. width:100%;
  2995. }
  2996. #u24871_text {
  2997. border-width:0px;
  2998. word-wrap:break-word;
  2999. text-transform:none;
  3000. }
  3001. #u24872_img {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:115px;
  3007. height:38px;
  3008. }
  3009. #u24872 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:76px;
  3014. width:115px;
  3015. height:38px;
  3016. display:flex;
  3017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3018. font-weight:400;
  3019. font-style:normal;
  3020. font-size:12px;
  3021. color:#333333;
  3022. }
  3023. #u24872 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 0px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u24872_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. visibility:hidden;
  3035. }
  3036. #u24873_img {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:115px;
  3042. height:38px;
  3043. }
  3044. #u24873 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:115px;
  3048. top:76px;
  3049. width:115px;
  3050. height:38px;
  3051. display:flex;
  3052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3053. font-weight:400;
  3054. font-style:normal;
  3055. font-size:12px;
  3056. color:#333333;
  3057. }
  3058. #u24873 .text {
  3059. position:absolute;
  3060. align-self:center;
  3061. padding:2px 2px 2px 0px;
  3062. box-sizing:border-box;
  3063. width:100%;
  3064. }
  3065. #u24873_text {
  3066. border-width:0px;
  3067. word-wrap:break-word;
  3068. text-transform:none;
  3069. visibility:hidden;
  3070. }
  3071. #u24874_img {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:115px;
  3077. height:38px;
  3078. }
  3079. #u24874 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:230px;
  3083. top:76px;
  3084. width:115px;
  3085. height:38px;
  3086. display:flex;
  3087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3088. font-weight:400;
  3089. font-style:normal;
  3090. font-size:12px;
  3091. color:#333333;
  3092. }
  3093. #u24874 .text {
  3094. position:absolute;
  3095. align-self:center;
  3096. padding:2px 2px 2px 0px;
  3097. box-sizing:border-box;
  3098. width:100%;
  3099. }
  3100. #u24874_text {
  3101. border-width:0px;
  3102. word-wrap:break-word;
  3103. text-transform:none;
  3104. visibility:hidden;
  3105. }
  3106. #u24875_img {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:0px;
  3111. width:115px;
  3112. height:38px;
  3113. }
  3114. #u24875 {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:345px;
  3118. top:76px;
  3119. width:115px;
  3120. height:38px;
  3121. display:flex;
  3122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3123. font-weight:400;
  3124. font-style:normal;
  3125. font-size:12px;
  3126. color:#333333;
  3127. }
  3128. #u24875 .text {
  3129. position:absolute;
  3130. align-self:center;
  3131. padding:2px 2px 2px 0px;
  3132. box-sizing:border-box;
  3133. width:100%;
  3134. }
  3135. #u24875_text {
  3136. border-width:0px;
  3137. word-wrap:break-word;
  3138. text-transform:none;
  3139. visibility:hidden;
  3140. }
  3141. #u24876_img {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:103px;
  3147. height:38px;
  3148. }
  3149. #u24876 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:460px;
  3153. top:76px;
  3154. width:103px;
  3155. height:38px;
  3156. display:flex;
  3157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3158. font-weight:400;
  3159. font-style:normal;
  3160. font-size:12px;
  3161. color:#333333;
  3162. }
  3163. #u24876 .text {
  3164. position:absolute;
  3165. align-self:center;
  3166. padding:2px 2px 2px 0px;
  3167. box-sizing:border-box;
  3168. width:100%;
  3169. }
  3170. #u24876_text {
  3171. border-width:0px;
  3172. word-wrap:break-word;
  3173. text-transform:none;
  3174. visibility:hidden;
  3175. }
  3176. #u24877_img {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:103px;
  3182. height:38px;
  3183. }
  3184. #u24877 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:563px;
  3188. top:76px;
  3189. width:103px;
  3190. height:38px;
  3191. display:flex;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:12px;
  3196. color:#333333;
  3197. }
  3198. #u24877 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:2px 2px 2px 0px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u24877_text {
  3206. border-width:0px;
  3207. word-wrap:break-word;
  3208. text-transform:none;
  3209. visibility:hidden;
  3210. }
  3211. #u24878_img {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:103px;
  3217. height:38px;
  3218. }
  3219. #u24878 {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:666px;
  3223. top:76px;
  3224. width:103px;
  3225. height:38px;
  3226. display:flex;
  3227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3228. font-weight:400;
  3229. font-style:normal;
  3230. font-size:12px;
  3231. color:#333333;
  3232. }
  3233. #u24878 .text {
  3234. position:absolute;
  3235. align-self:center;
  3236. padding:2px 2px 2px 0px;
  3237. box-sizing:border-box;
  3238. width:100%;
  3239. }
  3240. #u24878_text {
  3241. border-width:0px;
  3242. word-wrap:break-word;
  3243. text-transform:none;
  3244. visibility:hidden;
  3245. }
  3246. #u24879_img {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:103px;
  3252. height:38px;
  3253. }
  3254. #u24879 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:769px;
  3258. top:76px;
  3259. width:103px;
  3260. height:38px;
  3261. display:flex;
  3262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3263. font-weight:400;
  3264. font-style:normal;
  3265. font-size:12px;
  3266. color:#333333;
  3267. }
  3268. #u24879 .text {
  3269. position:absolute;
  3270. align-self:center;
  3271. padding:2px 2px 2px 0px;
  3272. box-sizing:border-box;
  3273. width:100%;
  3274. }
  3275. #u24879_text {
  3276. border-width:0px;
  3277. word-wrap:break-word;
  3278. text-transform:none;
  3279. visibility:hidden;
  3280. }
  3281. #u24880_img {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:0px;
  3285. top:0px;
  3286. width:103px;
  3287. height:38px;
  3288. }
  3289. #u24880 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:872px;
  3293. top:76px;
  3294. width:103px;
  3295. height:38px;
  3296. display:flex;
  3297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3298. font-weight:400;
  3299. font-style:normal;
  3300. font-size:12px;
  3301. color:#333333;
  3302. }
  3303. #u24880 .text {
  3304. position:absolute;
  3305. align-self:center;
  3306. padding:2px 2px 2px 0px;
  3307. box-sizing:border-box;
  3308. width:100%;
  3309. }
  3310. #u24880_text {
  3311. border-width:0px;
  3312. word-wrap:break-word;
  3313. text-transform:none;
  3314. visibility:hidden;
  3315. }
  3316. #u24881_img {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:0px;
  3320. top:0px;
  3321. width:133px;
  3322. height:38px;
  3323. }
  3324. #u24881 {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:975px;
  3328. top:76px;
  3329. width:133px;
  3330. height:38px;
  3331. display:flex;
  3332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3333. font-weight:400;
  3334. font-style:normal;
  3335. font-size:12px;
  3336. color:#333333;
  3337. }
  3338. #u24881 .text {
  3339. position:absolute;
  3340. align-self:center;
  3341. padding:2px 2px 2px 0px;
  3342. box-sizing:border-box;
  3343. width:100%;
  3344. }
  3345. #u24881_text {
  3346. border-width:0px;
  3347. word-wrap:break-word;
  3348. text-transform:none;
  3349. visibility:hidden;
  3350. }
  3351. #u24882_img {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:0px;
  3355. top:0px;
  3356. width:112px;
  3357. height:38px;
  3358. }
  3359. #u24882 {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:1108px;
  3363. top:76px;
  3364. width:112px;
  3365. height:38px;
  3366. display:flex;
  3367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3368. font-weight:400;
  3369. font-style:normal;
  3370. font-size:12px;
  3371. color:#333333;
  3372. }
  3373. #u24882 .text {
  3374. position:absolute;
  3375. align-self:center;
  3376. padding:2px 2px 2px 0px;
  3377. box-sizing:border-box;
  3378. width:100%;
  3379. }
  3380. #u24882_text {
  3381. border-width:0px;
  3382. word-wrap:break-word;
  3383. text-transform:none;
  3384. visibility:hidden;
  3385. }
  3386. #u24883_img {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:120px;
  3392. height:38px;
  3393. }
  3394. #u24883 {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:1220px;
  3398. top:76px;
  3399. width:120px;
  3400. height:38px;
  3401. display:flex;
  3402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3403. font-weight:400;
  3404. font-style:normal;
  3405. font-size:12px;
  3406. color:#0089FE;
  3407. }
  3408. #u24883 .text {
  3409. position:absolute;
  3410. align-self:center;
  3411. padding:2px 2px 2px 0px;
  3412. box-sizing:border-box;
  3413. width:100%;
  3414. }
  3415. #u24883_text {
  3416. border-width:0px;
  3417. word-wrap:break-word;
  3418. text-transform:none;
  3419. visibility:hidden;
  3420. }
  3421. #u24884_img {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:115px;
  3427. height:38px;
  3428. }
  3429. #u24884 {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:0px;
  3433. top:114px;
  3434. width:115px;
  3435. height:38px;
  3436. display:flex;
  3437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3438. font-weight:400;
  3439. font-style:normal;
  3440. font-size:12px;
  3441. color:#333333;
  3442. }
  3443. #u24884 .text {
  3444. position:absolute;
  3445. align-self:center;
  3446. padding:2px 2px 2px 0px;
  3447. box-sizing:border-box;
  3448. width:100%;
  3449. }
  3450. #u24884_text {
  3451. border-width:0px;
  3452. word-wrap:break-word;
  3453. text-transform:none;
  3454. visibility:hidden;
  3455. }
  3456. #u24885_img {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:0px;
  3460. top:0px;
  3461. width:115px;
  3462. height:38px;
  3463. }
  3464. #u24885 {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:115px;
  3468. top:114px;
  3469. width:115px;
  3470. height:38px;
  3471. display:flex;
  3472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3473. font-weight:400;
  3474. font-style:normal;
  3475. font-size:12px;
  3476. color:#333333;
  3477. }
  3478. #u24885 .text {
  3479. position:absolute;
  3480. align-self:center;
  3481. padding:2px 2px 2px 0px;
  3482. box-sizing:border-box;
  3483. width:100%;
  3484. }
  3485. #u24885_text {
  3486. border-width:0px;
  3487. word-wrap:break-word;
  3488. text-transform:none;
  3489. visibility:hidden;
  3490. }
  3491. #u24886_img {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:0px;
  3495. top:0px;
  3496. width:115px;
  3497. height:38px;
  3498. }
  3499. #u24886 {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:230px;
  3503. top:114px;
  3504. width:115px;
  3505. height:38px;
  3506. display:flex;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:12px;
  3511. color:#333333;
  3512. }
  3513. #u24886 .text {
  3514. position:absolute;
  3515. align-self:center;
  3516. padding:2px 2px 2px 0px;
  3517. box-sizing:border-box;
  3518. width:100%;
  3519. }
  3520. #u24886_text {
  3521. border-width:0px;
  3522. word-wrap:break-word;
  3523. text-transform:none;
  3524. visibility:hidden;
  3525. }
  3526. #u24887_img {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:115px;
  3532. height:38px;
  3533. }
  3534. #u24887 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:345px;
  3538. top:114px;
  3539. width:115px;
  3540. height:38px;
  3541. display:flex;
  3542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3543. font-weight:400;
  3544. font-style:normal;
  3545. font-size:12px;
  3546. color:#333333;
  3547. }
  3548. #u24887 .text {
  3549. position:absolute;
  3550. align-self:center;
  3551. padding:2px 2px 2px 0px;
  3552. box-sizing:border-box;
  3553. width:100%;
  3554. }
  3555. #u24887_text {
  3556. border-width:0px;
  3557. word-wrap:break-word;
  3558. text-transform:none;
  3559. visibility:hidden;
  3560. }
  3561. #u24888_img {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:0px;
  3565. top:0px;
  3566. width:103px;
  3567. height:38px;
  3568. }
  3569. #u24888 {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:460px;
  3573. top:114px;
  3574. width:103px;
  3575. height:38px;
  3576. display:flex;
  3577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3578. font-weight:400;
  3579. font-style:normal;
  3580. font-size:12px;
  3581. color:#333333;
  3582. }
  3583. #u24888 .text {
  3584. position:absolute;
  3585. align-self:center;
  3586. padding:2px 2px 2px 0px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u24888_text {
  3591. border-width:0px;
  3592. word-wrap:break-word;
  3593. text-transform:none;
  3594. visibility:hidden;
  3595. }
  3596. #u24889_img {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:0px;
  3600. top:0px;
  3601. width:103px;
  3602. height:38px;
  3603. }
  3604. #u24889 {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:563px;
  3608. top:114px;
  3609. width:103px;
  3610. height:38px;
  3611. display:flex;
  3612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3613. font-weight:400;
  3614. font-style:normal;
  3615. font-size:12px;
  3616. color:#333333;
  3617. }
  3618. #u24889 .text {
  3619. position:absolute;
  3620. align-self:center;
  3621. padding:2px 2px 2px 0px;
  3622. box-sizing:border-box;
  3623. width:100%;
  3624. }
  3625. #u24889_text {
  3626. border-width:0px;
  3627. word-wrap:break-word;
  3628. text-transform:none;
  3629. visibility:hidden;
  3630. }
  3631. #u24890_img {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:103px;
  3637. height:38px;
  3638. }
  3639. #u24890 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:666px;
  3643. top:114px;
  3644. width:103px;
  3645. height:38px;
  3646. display:flex;
  3647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3648. font-weight:400;
  3649. font-style:normal;
  3650. font-size:12px;
  3651. color:#333333;
  3652. }
  3653. #u24890 .text {
  3654. position:absolute;
  3655. align-self:center;
  3656. padding:2px 2px 2px 0px;
  3657. box-sizing:border-box;
  3658. width:100%;
  3659. }
  3660. #u24890_text {
  3661. border-width:0px;
  3662. word-wrap:break-word;
  3663. text-transform:none;
  3664. visibility:hidden;
  3665. }
  3666. #u24891_img {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:103px;
  3672. height:38px;
  3673. }
  3674. #u24891 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:769px;
  3678. top:114px;
  3679. width:103px;
  3680. height:38px;
  3681. display:flex;
  3682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3683. font-weight:400;
  3684. font-style:normal;
  3685. font-size:12px;
  3686. color:#333333;
  3687. }
  3688. #u24891 .text {
  3689. position:absolute;
  3690. align-self:center;
  3691. padding:2px 2px 2px 0px;
  3692. box-sizing:border-box;
  3693. width:100%;
  3694. }
  3695. #u24891_text {
  3696. border-width:0px;
  3697. word-wrap:break-word;
  3698. text-transform:none;
  3699. visibility:hidden;
  3700. }
  3701. #u24892_img {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:0px;
  3705. top:0px;
  3706. width:103px;
  3707. height:38px;
  3708. }
  3709. #u24892 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:872px;
  3713. top:114px;
  3714. width:103px;
  3715. height:38px;
  3716. display:flex;
  3717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3718. font-weight:400;
  3719. font-style:normal;
  3720. font-size:12px;
  3721. color:#333333;
  3722. }
  3723. #u24892 .text {
  3724. position:absolute;
  3725. align-self:center;
  3726. padding:2px 2px 2px 0px;
  3727. box-sizing:border-box;
  3728. width:100%;
  3729. }
  3730. #u24892_text {
  3731. border-width:0px;
  3732. word-wrap:break-word;
  3733. text-transform:none;
  3734. visibility:hidden;
  3735. }
  3736. #u24893_img {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:133px;
  3742. height:38px;
  3743. }
  3744. #u24893 {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:975px;
  3748. top:114px;
  3749. width:133px;
  3750. height:38px;
  3751. display:flex;
  3752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3753. font-weight:400;
  3754. font-style:normal;
  3755. font-size:12px;
  3756. color:#333333;
  3757. }
  3758. #u24893 .text {
  3759. position:absolute;
  3760. align-self:center;
  3761. padding:2px 2px 2px 0px;
  3762. box-sizing:border-box;
  3763. width:100%;
  3764. }
  3765. #u24893_text {
  3766. border-width:0px;
  3767. word-wrap:break-word;
  3768. text-transform:none;
  3769. visibility:hidden;
  3770. }
  3771. #u24894_img {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:112px;
  3777. height:38px;
  3778. }
  3779. #u24894 {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:1108px;
  3783. top:114px;
  3784. width:112px;
  3785. height:38px;
  3786. display:flex;
  3787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3788. font-weight:400;
  3789. font-style:normal;
  3790. font-size:12px;
  3791. color:#333333;
  3792. }
  3793. #u24894 .text {
  3794. position:absolute;
  3795. align-self:center;
  3796. padding:2px 2px 2px 0px;
  3797. box-sizing:border-box;
  3798. width:100%;
  3799. }
  3800. #u24894_text {
  3801. border-width:0px;
  3802. word-wrap:break-word;
  3803. text-transform:none;
  3804. visibility:hidden;
  3805. }
  3806. #u24895_img {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:0px;
  3810. top:0px;
  3811. width:120px;
  3812. height:38px;
  3813. }
  3814. #u24895 {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:1220px;
  3818. top:114px;
  3819. width:120px;
  3820. height:38px;
  3821. display:flex;
  3822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3823. font-weight:400;
  3824. font-style:normal;
  3825. font-size:12px;
  3826. color:#0089FE;
  3827. }
  3828. #u24895 .text {
  3829. position:absolute;
  3830. align-self:center;
  3831. padding:2px 2px 2px 0px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u24895_text {
  3836. border-width:0px;
  3837. word-wrap:break-word;
  3838. text-transform:none;
  3839. visibility:hidden;
  3840. }
  3841. #u24896_img {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:115px;
  3847. height:38px;
  3848. }
  3849. #u24896 {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:152px;
  3854. width:115px;
  3855. height:38px;
  3856. display:flex;
  3857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3858. font-weight:400;
  3859. font-style:normal;
  3860. font-size:12px;
  3861. color:#333333;
  3862. }
  3863. #u24896 .text {
  3864. position:absolute;
  3865. align-self:center;
  3866. padding:2px 2px 2px 0px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u24896_text {
  3871. border-width:0px;
  3872. word-wrap:break-word;
  3873. text-transform:none;
  3874. visibility:hidden;
  3875. }
  3876. #u24897_img {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:0px;
  3880. top:0px;
  3881. width:115px;
  3882. height:38px;
  3883. }
  3884. #u24897 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:115px;
  3888. top:152px;
  3889. width:115px;
  3890. height:38px;
  3891. display:flex;
  3892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3893. font-weight:400;
  3894. font-style:normal;
  3895. font-size:12px;
  3896. color:#333333;
  3897. }
  3898. #u24897 .text {
  3899. position:absolute;
  3900. align-self:center;
  3901. padding:2px 2px 2px 0px;
  3902. box-sizing:border-box;
  3903. width:100%;
  3904. }
  3905. #u24897_text {
  3906. border-width:0px;
  3907. word-wrap:break-word;
  3908. text-transform:none;
  3909. visibility:hidden;
  3910. }
  3911. #u24898_img {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:115px;
  3917. height:38px;
  3918. }
  3919. #u24898 {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:230px;
  3923. top:152px;
  3924. width:115px;
  3925. height:38px;
  3926. display:flex;
  3927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3928. font-weight:400;
  3929. font-style:normal;
  3930. font-size:12px;
  3931. color:#333333;
  3932. }
  3933. #u24898 .text {
  3934. position:absolute;
  3935. align-self:center;
  3936. padding:2px 2px 2px 0px;
  3937. box-sizing:border-box;
  3938. width:100%;
  3939. }
  3940. #u24898_text {
  3941. border-width:0px;
  3942. word-wrap:break-word;
  3943. text-transform:none;
  3944. visibility:hidden;
  3945. }
  3946. #u24899_img {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:0px;
  3950. top:0px;
  3951. width:115px;
  3952. height:38px;
  3953. }
  3954. #u24899 {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:345px;
  3958. top:152px;
  3959. width:115px;
  3960. height:38px;
  3961. display:flex;
  3962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3963. font-weight:400;
  3964. font-style:normal;
  3965. font-size:12px;
  3966. color:#333333;
  3967. }
  3968. #u24899 .text {
  3969. position:absolute;
  3970. align-self:center;
  3971. padding:2px 2px 2px 0px;
  3972. box-sizing:border-box;
  3973. width:100%;
  3974. }
  3975. #u24899_text {
  3976. border-width:0px;
  3977. word-wrap:break-word;
  3978. text-transform:none;
  3979. visibility:hidden;
  3980. }
  3981. #u24900_img {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:0px;
  3985. top:0px;
  3986. width:103px;
  3987. height:38px;
  3988. }
  3989. #u24900 {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:460px;
  3993. top:152px;
  3994. width:103px;
  3995. height:38px;
  3996. display:flex;
  3997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3998. font-weight:400;
  3999. font-style:normal;
  4000. font-size:12px;
  4001. color:#333333;
  4002. }
  4003. #u24900 .text {
  4004. position:absolute;
  4005. align-self:center;
  4006. padding:2px 2px 2px 0px;
  4007. box-sizing:border-box;
  4008. width:100%;
  4009. }
  4010. #u24900_text {
  4011. border-width:0px;
  4012. word-wrap:break-word;
  4013. text-transform:none;
  4014. visibility:hidden;
  4015. }
  4016. #u24901_img {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:0px;
  4020. top:0px;
  4021. width:103px;
  4022. height:38px;
  4023. }
  4024. #u24901 {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:563px;
  4028. top:152px;
  4029. width:103px;
  4030. height:38px;
  4031. display:flex;
  4032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4033. font-weight:400;
  4034. font-style:normal;
  4035. font-size:12px;
  4036. color:#333333;
  4037. }
  4038. #u24901 .text {
  4039. position:absolute;
  4040. align-self:center;
  4041. padding:2px 2px 2px 0px;
  4042. box-sizing:border-box;
  4043. width:100%;
  4044. }
  4045. #u24901_text {
  4046. border-width:0px;
  4047. word-wrap:break-word;
  4048. text-transform:none;
  4049. visibility:hidden;
  4050. }
  4051. #u24902_img {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:103px;
  4057. height:38px;
  4058. }
  4059. #u24902 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:666px;
  4063. top:152px;
  4064. width:103px;
  4065. height:38px;
  4066. display:flex;
  4067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4068. font-weight:400;
  4069. font-style:normal;
  4070. font-size:12px;
  4071. color:#333333;
  4072. }
  4073. #u24902 .text {
  4074. position:absolute;
  4075. align-self:center;
  4076. padding:2px 2px 2px 0px;
  4077. box-sizing:border-box;
  4078. width:100%;
  4079. }
  4080. #u24902_text {
  4081. border-width:0px;
  4082. word-wrap:break-word;
  4083. text-transform:none;
  4084. visibility:hidden;
  4085. }
  4086. #u24903_img {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:0px;
  4090. top:0px;
  4091. width:103px;
  4092. height:38px;
  4093. }
  4094. #u24903 {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:769px;
  4098. top:152px;
  4099. width:103px;
  4100. height:38px;
  4101. display:flex;
  4102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4103. font-weight:400;
  4104. font-style:normal;
  4105. font-size:12px;
  4106. color:#333333;
  4107. }
  4108. #u24903 .text {
  4109. position:absolute;
  4110. align-self:center;
  4111. padding:2px 2px 2px 0px;
  4112. box-sizing:border-box;
  4113. width:100%;
  4114. }
  4115. #u24903_text {
  4116. border-width:0px;
  4117. word-wrap:break-word;
  4118. text-transform:none;
  4119. visibility:hidden;
  4120. }
  4121. #u24904_img {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:103px;
  4127. height:38px;
  4128. }
  4129. #u24904 {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:872px;
  4133. top:152px;
  4134. width:103px;
  4135. height:38px;
  4136. display:flex;
  4137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4138. font-weight:400;
  4139. font-style:normal;
  4140. font-size:12px;
  4141. color:#333333;
  4142. }
  4143. #u24904 .text {
  4144. position:absolute;
  4145. align-self:center;
  4146. padding:2px 2px 2px 0px;
  4147. box-sizing:border-box;
  4148. width:100%;
  4149. }
  4150. #u24904_text {
  4151. border-width:0px;
  4152. word-wrap:break-word;
  4153. text-transform:none;
  4154. visibility:hidden;
  4155. }
  4156. #u24905_img {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:0px;
  4160. top:0px;
  4161. width:133px;
  4162. height:38px;
  4163. }
  4164. #u24905 {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:975px;
  4168. top:152px;
  4169. width:133px;
  4170. height:38px;
  4171. display:flex;
  4172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4173. font-weight:400;
  4174. font-style:normal;
  4175. font-size:12px;
  4176. color:#333333;
  4177. }
  4178. #u24905 .text {
  4179. position:absolute;
  4180. align-self:center;
  4181. padding:2px 2px 2px 0px;
  4182. box-sizing:border-box;
  4183. width:100%;
  4184. }
  4185. #u24905_text {
  4186. border-width:0px;
  4187. word-wrap:break-word;
  4188. text-transform:none;
  4189. visibility:hidden;
  4190. }
  4191. #u24906_img {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:0px;
  4195. top:0px;
  4196. width:112px;
  4197. height:38px;
  4198. }
  4199. #u24906 {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:1108px;
  4203. top:152px;
  4204. width:112px;
  4205. height:38px;
  4206. display:flex;
  4207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4208. font-weight:400;
  4209. font-style:normal;
  4210. font-size:12px;
  4211. color:#333333;
  4212. }
  4213. #u24906 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:2px 2px 2px 0px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u24906_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. visibility:hidden;
  4225. }
  4226. #u24907_img {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:120px;
  4232. height:38px;
  4233. }
  4234. #u24907 {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:1220px;
  4238. top:152px;
  4239. width:120px;
  4240. height:38px;
  4241. display:flex;
  4242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4243. font-weight:400;
  4244. font-style:normal;
  4245. font-size:12px;
  4246. color:#AAAAAA;
  4247. }
  4248. #u24907 .text {
  4249. position:absolute;
  4250. align-self:center;
  4251. padding:2px 2px 2px 0px;
  4252. box-sizing:border-box;
  4253. width:100%;
  4254. }
  4255. #u24907_text {
  4256. border-width:0px;
  4257. word-wrap:break-word;
  4258. text-transform:none;
  4259. visibility:hidden;
  4260. }
  4261. #u24908_img {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:0px;
  4265. top:0px;
  4266. width:115px;
  4267. height:35px;
  4268. }
  4269. #u24908 {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:190px;
  4274. width:115px;
  4275. height:35px;
  4276. display:flex;
  4277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4278. font-weight:400;
  4279. font-style:normal;
  4280. font-size:12px;
  4281. color:#333333;
  4282. }
  4283. #u24908 .text {
  4284. position:absolute;
  4285. align-self:center;
  4286. padding:2px 2px 2px 0px;
  4287. box-sizing:border-box;
  4288. width:100%;
  4289. }
  4290. #u24908_text {
  4291. border-width:0px;
  4292. word-wrap:break-word;
  4293. text-transform:none;
  4294. visibility:hidden;
  4295. }
  4296. #u24909_img {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:0px;
  4300. top:0px;
  4301. width:115px;
  4302. height:35px;
  4303. }
  4304. #u24909 {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:115px;
  4308. top:190px;
  4309. width:115px;
  4310. height:35px;
  4311. display:flex;
  4312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4313. font-weight:400;
  4314. font-style:normal;
  4315. font-size:12px;
  4316. color:#333333;
  4317. }
  4318. #u24909 .text {
  4319. position:absolute;
  4320. align-self:center;
  4321. padding:2px 2px 2px 0px;
  4322. box-sizing:border-box;
  4323. width:100%;
  4324. }
  4325. #u24909_text {
  4326. border-width:0px;
  4327. word-wrap:break-word;
  4328. text-transform:none;
  4329. visibility:hidden;
  4330. }
  4331. #u24910_img {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:0px;
  4335. top:0px;
  4336. width:115px;
  4337. height:35px;
  4338. }
  4339. #u24910 {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:230px;
  4343. top:190px;
  4344. width:115px;
  4345. height:35px;
  4346. display:flex;
  4347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4348. font-weight:400;
  4349. font-style:normal;
  4350. font-size:12px;
  4351. color:#333333;
  4352. }
  4353. #u24910 .text {
  4354. position:absolute;
  4355. align-self:center;
  4356. padding:2px 2px 2px 0px;
  4357. box-sizing:border-box;
  4358. width:100%;
  4359. }
  4360. #u24910_text {
  4361. border-width:0px;
  4362. word-wrap:break-word;
  4363. text-transform:none;
  4364. visibility:hidden;
  4365. }
  4366. #u24911_img {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:0px;
  4370. top:0px;
  4371. width:115px;
  4372. height:35px;
  4373. }
  4374. #u24911 {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:345px;
  4378. top:190px;
  4379. width:115px;
  4380. height:35px;
  4381. display:flex;
  4382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4383. font-weight:400;
  4384. font-style:normal;
  4385. font-size:12px;
  4386. color:#333333;
  4387. }
  4388. #u24911 .text {
  4389. position:absolute;
  4390. align-self:center;
  4391. padding:2px 2px 2px 0px;
  4392. box-sizing:border-box;
  4393. width:100%;
  4394. }
  4395. #u24911_text {
  4396. border-width:0px;
  4397. word-wrap:break-word;
  4398. text-transform:none;
  4399. visibility:hidden;
  4400. }
  4401. #u24912_img {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:103px;
  4407. height:35px;
  4408. }
  4409. #u24912 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:460px;
  4413. top:190px;
  4414. width:103px;
  4415. height:35px;
  4416. display:flex;
  4417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4418. font-weight:400;
  4419. font-style:normal;
  4420. font-size:12px;
  4421. color:#333333;
  4422. }
  4423. #u24912 .text {
  4424. position:absolute;
  4425. align-self:center;
  4426. padding:2px 2px 2px 0px;
  4427. box-sizing:border-box;
  4428. width:100%;
  4429. }
  4430. #u24912_text {
  4431. border-width:0px;
  4432. word-wrap:break-word;
  4433. text-transform:none;
  4434. visibility:hidden;
  4435. }
  4436. #u24913_img {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:103px;
  4442. height:35px;
  4443. }
  4444. #u24913 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:563px;
  4448. top:190px;
  4449. width:103px;
  4450. height:35px;
  4451. display:flex;
  4452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4453. font-weight:400;
  4454. font-style:normal;
  4455. font-size:12px;
  4456. color:#333333;
  4457. }
  4458. #u24913 .text {
  4459. position:absolute;
  4460. align-self:center;
  4461. padding:2px 2px 2px 0px;
  4462. box-sizing:border-box;
  4463. width:100%;
  4464. }
  4465. #u24913_text {
  4466. border-width:0px;
  4467. word-wrap:break-word;
  4468. text-transform:none;
  4469. visibility:hidden;
  4470. }
  4471. #u24914_img {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:0px;
  4475. top:0px;
  4476. width:103px;
  4477. height:35px;
  4478. }
  4479. #u24914 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:666px;
  4483. top:190px;
  4484. width:103px;
  4485. height:35px;
  4486. display:flex;
  4487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4488. font-weight:400;
  4489. font-style:normal;
  4490. font-size:12px;
  4491. color:#333333;
  4492. }
  4493. #u24914 .text {
  4494. position:absolute;
  4495. align-self:center;
  4496. padding:2px 2px 2px 0px;
  4497. box-sizing:border-box;
  4498. width:100%;
  4499. }
  4500. #u24914_text {
  4501. border-width:0px;
  4502. word-wrap:break-word;
  4503. text-transform:none;
  4504. visibility:hidden;
  4505. }
  4506. #u24915_img {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:0px;
  4510. top:0px;
  4511. width:103px;
  4512. height:35px;
  4513. }
  4514. #u24915 {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:769px;
  4518. top:190px;
  4519. width:103px;
  4520. height:35px;
  4521. display:flex;
  4522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4523. font-weight:400;
  4524. font-style:normal;
  4525. font-size:12px;
  4526. color:#333333;
  4527. }
  4528. #u24915 .text {
  4529. position:absolute;
  4530. align-self:center;
  4531. padding:2px 2px 2px 0px;
  4532. box-sizing:border-box;
  4533. width:100%;
  4534. }
  4535. #u24915_text {
  4536. border-width:0px;
  4537. word-wrap:break-word;
  4538. text-transform:none;
  4539. visibility:hidden;
  4540. }
  4541. #u24916_img {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:0px;
  4545. top:0px;
  4546. width:103px;
  4547. height:35px;
  4548. }
  4549. #u24916 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:872px;
  4553. top:190px;
  4554. width:103px;
  4555. height:35px;
  4556. display:flex;
  4557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:12px;
  4561. color:#333333;
  4562. }
  4563. #u24916 .text {
  4564. position:absolute;
  4565. align-self:center;
  4566. padding:2px 2px 2px 0px;
  4567. box-sizing:border-box;
  4568. width:100%;
  4569. }
  4570. #u24916_text {
  4571. border-width:0px;
  4572. word-wrap:break-word;
  4573. text-transform:none;
  4574. visibility:hidden;
  4575. }
  4576. #u24917_img {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:133px;
  4582. height:35px;
  4583. }
  4584. #u24917 {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:975px;
  4588. top:190px;
  4589. width:133px;
  4590. height:35px;
  4591. display:flex;
  4592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4593. font-weight:400;
  4594. font-style:normal;
  4595. font-size:12px;
  4596. color:#333333;
  4597. }
  4598. #u24917 .text {
  4599. position:absolute;
  4600. align-self:center;
  4601. padding:2px 2px 2px 0px;
  4602. box-sizing:border-box;
  4603. width:100%;
  4604. }
  4605. #u24917_text {
  4606. border-width:0px;
  4607. word-wrap:break-word;
  4608. text-transform:none;
  4609. visibility:hidden;
  4610. }
  4611. #u24918_img {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:0px;
  4616. width:112px;
  4617. height:35px;
  4618. }
  4619. #u24918 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:1108px;
  4623. top:190px;
  4624. width:112px;
  4625. height:35px;
  4626. display:flex;
  4627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4628. font-weight:400;
  4629. font-style:normal;
  4630. font-size:12px;
  4631. color:#333333;
  4632. }
  4633. #u24918 .text {
  4634. position:absolute;
  4635. align-self:center;
  4636. padding:2px 2px 2px 0px;
  4637. box-sizing:border-box;
  4638. width:100%;
  4639. }
  4640. #u24918_text {
  4641. border-width:0px;
  4642. word-wrap:break-word;
  4643. text-transform:none;
  4644. visibility:hidden;
  4645. }
  4646. #u24919_img {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:0px;
  4650. top:0px;
  4651. width:120px;
  4652. height:35px;
  4653. }
  4654. #u24919 {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:1220px;
  4658. top:190px;
  4659. width:120px;
  4660. height:35px;
  4661. display:flex;
  4662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4663. font-weight:400;
  4664. font-style:normal;
  4665. font-size:12px;
  4666. color:#AAAAAA;
  4667. }
  4668. #u24919 .text {
  4669. position:absolute;
  4670. align-self:center;
  4671. padding:2px 2px 2px 0px;
  4672. box-sizing:border-box;
  4673. width:100%;
  4674. }
  4675. #u24919_text {
  4676. border-width:0px;
  4677. word-wrap:break-word;
  4678. text-transform:none;
  4679. visibility:hidden;
  4680. }
  4681. #u24920_img {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:115px;
  4687. height:35px;
  4688. }
  4689. #u24920 {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:0px;
  4693. top:225px;
  4694. width:115px;
  4695. height:35px;
  4696. display:flex;
  4697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4698. font-weight:400;
  4699. font-style:normal;
  4700. font-size:12px;
  4701. color:#333333;
  4702. }
  4703. #u24920 .text {
  4704. position:absolute;
  4705. align-self:center;
  4706. padding:2px 2px 2px 0px;
  4707. box-sizing:border-box;
  4708. width:100%;
  4709. }
  4710. #u24920_text {
  4711. border-width:0px;
  4712. word-wrap:break-word;
  4713. text-transform:none;
  4714. visibility:hidden;
  4715. }
  4716. #u24921_img {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:115px;
  4722. height:35px;
  4723. }
  4724. #u24921 {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:115px;
  4728. top:225px;
  4729. width:115px;
  4730. height:35px;
  4731. display:flex;
  4732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4733. font-weight:400;
  4734. font-style:normal;
  4735. font-size:12px;
  4736. color:#333333;
  4737. }
  4738. #u24921 .text {
  4739. position:absolute;
  4740. align-self:center;
  4741. padding:2px 2px 2px 0px;
  4742. box-sizing:border-box;
  4743. width:100%;
  4744. }
  4745. #u24921_text {
  4746. border-width:0px;
  4747. word-wrap:break-word;
  4748. text-transform:none;
  4749. visibility:hidden;
  4750. }
  4751. #u24922_img {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:115px;
  4757. height:35px;
  4758. }
  4759. #u24922 {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:230px;
  4763. top:225px;
  4764. width:115px;
  4765. height:35px;
  4766. display:flex;
  4767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4768. font-weight:400;
  4769. font-style:normal;
  4770. font-size:12px;
  4771. color:#333333;
  4772. }
  4773. #u24922 .text {
  4774. position:absolute;
  4775. align-self:center;
  4776. padding:2px 2px 2px 0px;
  4777. box-sizing:border-box;
  4778. width:100%;
  4779. }
  4780. #u24922_text {
  4781. border-width:0px;
  4782. word-wrap:break-word;
  4783. text-transform:none;
  4784. visibility:hidden;
  4785. }
  4786. #u24923_img {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:115px;
  4792. height:35px;
  4793. }
  4794. #u24923 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:345px;
  4798. top:225px;
  4799. width:115px;
  4800. height:35px;
  4801. display:flex;
  4802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4803. font-weight:400;
  4804. font-style:normal;
  4805. font-size:12px;
  4806. color:#333333;
  4807. }
  4808. #u24923 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:2px 2px 2px 0px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u24923_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u24924_img {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:103px;
  4827. height:35px;
  4828. }
  4829. #u24924 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:460px;
  4833. top:225px;
  4834. width:103px;
  4835. height:35px;
  4836. display:flex;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:12px;
  4841. color:#333333;
  4842. }
  4843. #u24924 .text {
  4844. position:absolute;
  4845. align-self:center;
  4846. padding:2px 2px 2px 0px;
  4847. box-sizing:border-box;
  4848. width:100%;
  4849. }
  4850. #u24924_text {
  4851. border-width:0px;
  4852. word-wrap:break-word;
  4853. text-transform:none;
  4854. visibility:hidden;
  4855. }
  4856. #u24925_img {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:103px;
  4862. height:35px;
  4863. }
  4864. #u24925 {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:563px;
  4868. top:225px;
  4869. width:103px;
  4870. height:35px;
  4871. display:flex;
  4872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4873. font-weight:400;
  4874. font-style:normal;
  4875. font-size:12px;
  4876. color:#333333;
  4877. }
  4878. #u24925 .text {
  4879. position:absolute;
  4880. align-self:center;
  4881. padding:2px 2px 2px 0px;
  4882. box-sizing:border-box;
  4883. width:100%;
  4884. }
  4885. #u24925_text {
  4886. border-width:0px;
  4887. word-wrap:break-word;
  4888. text-transform:none;
  4889. visibility:hidden;
  4890. }
  4891. #u24926_img {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:0px;
  4895. top:0px;
  4896. width:103px;
  4897. height:35px;
  4898. }
  4899. #u24926 {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:666px;
  4903. top:225px;
  4904. width:103px;
  4905. height:35px;
  4906. display:flex;
  4907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4908. font-weight:400;
  4909. font-style:normal;
  4910. font-size:12px;
  4911. color:#333333;
  4912. }
  4913. #u24926 .text {
  4914. position:absolute;
  4915. align-self:center;
  4916. padding:2px 2px 2px 0px;
  4917. box-sizing:border-box;
  4918. width:100%;
  4919. }
  4920. #u24926_text {
  4921. border-width:0px;
  4922. word-wrap:break-word;
  4923. text-transform:none;
  4924. visibility:hidden;
  4925. }
  4926. #u24927_img {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:0px;
  4930. top:0px;
  4931. width:103px;
  4932. height:35px;
  4933. }
  4934. #u24927 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:769px;
  4938. top:225px;
  4939. width:103px;
  4940. height:35px;
  4941. display:flex;
  4942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4943. font-weight:400;
  4944. font-style:normal;
  4945. font-size:12px;
  4946. color:#333333;
  4947. }
  4948. #u24927 .text {
  4949. position:absolute;
  4950. align-self:center;
  4951. padding:2px 2px 2px 0px;
  4952. box-sizing:border-box;
  4953. width:100%;
  4954. }
  4955. #u24927_text {
  4956. border-width:0px;
  4957. word-wrap:break-word;
  4958. text-transform:none;
  4959. visibility:hidden;
  4960. }
  4961. #u24928_img {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:103px;
  4967. height:35px;
  4968. }
  4969. #u24928 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:872px;
  4973. top:225px;
  4974. width:103px;
  4975. height:35px;
  4976. display:flex;
  4977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4978. font-weight:400;
  4979. font-style:normal;
  4980. font-size:12px;
  4981. color:#333333;
  4982. }
  4983. #u24928 .text {
  4984. position:absolute;
  4985. align-self:center;
  4986. padding:2px 2px 2px 0px;
  4987. box-sizing:border-box;
  4988. width:100%;
  4989. }
  4990. #u24928_text {
  4991. border-width:0px;
  4992. word-wrap:break-word;
  4993. text-transform:none;
  4994. visibility:hidden;
  4995. }
  4996. #u24929_img {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:0px;
  5000. top:0px;
  5001. width:133px;
  5002. height:35px;
  5003. }
  5004. #u24929 {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:975px;
  5008. top:225px;
  5009. width:133px;
  5010. height:35px;
  5011. display:flex;
  5012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5013. font-weight:400;
  5014. font-style:normal;
  5015. font-size:12px;
  5016. color:#333333;
  5017. }
  5018. #u24929 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 0px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u24929_text {
  5026. border-width:0px;
  5027. word-wrap:break-word;
  5028. text-transform:none;
  5029. visibility:hidden;
  5030. }
  5031. #u24930_img {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:0px;
  5035. top:0px;
  5036. width:112px;
  5037. height:35px;
  5038. }
  5039. #u24930 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:1108px;
  5043. top:225px;
  5044. width:112px;
  5045. height:35px;
  5046. display:flex;
  5047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. font-size:12px;
  5051. color:#333333;
  5052. }
  5053. #u24930 .text {
  5054. position:absolute;
  5055. align-self:center;
  5056. padding:2px 2px 2px 0px;
  5057. box-sizing:border-box;
  5058. width:100%;
  5059. }
  5060. #u24930_text {
  5061. border-width:0px;
  5062. word-wrap:break-word;
  5063. text-transform:none;
  5064. visibility:hidden;
  5065. }
  5066. #u24931_img {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:0px;
  5070. top:0px;
  5071. width:120px;
  5072. height:35px;
  5073. }
  5074. #u24931 {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:1220px;
  5078. top:225px;
  5079. width:120px;
  5080. height:35px;
  5081. display:flex;
  5082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5083. font-weight:400;
  5084. font-style:normal;
  5085. font-size:12px;
  5086. color:#333333;
  5087. }
  5088. #u24931 .text {
  5089. position:absolute;
  5090. align-self:center;
  5091. padding:2px 2px 2px 0px;
  5092. box-sizing:border-box;
  5093. width:100%;
  5094. }
  5095. #u24931_text {
  5096. border-width:0px;
  5097. word-wrap:break-word;
  5098. text-transform:none;
  5099. visibility:hidden;
  5100. }
  5101. #u24932_img {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:115px;
  5107. height:32px;
  5108. }
  5109. #u24932 {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:0px;
  5113. top:260px;
  5114. width:115px;
  5115. height:32px;
  5116. display:flex;
  5117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5118. font-weight:400;
  5119. font-style:normal;
  5120. font-size:12px;
  5121. color:#333333;
  5122. }
  5123. #u24932 .text {
  5124. position:absolute;
  5125. align-self:center;
  5126. padding:2px 2px 2px 0px;
  5127. box-sizing:border-box;
  5128. width:100%;
  5129. }
  5130. #u24932_text {
  5131. border-width:0px;
  5132. word-wrap:break-word;
  5133. text-transform:none;
  5134. visibility:hidden;
  5135. }
  5136. #u24933_img {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:115px;
  5142. height:32px;
  5143. }
  5144. #u24933 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:115px;
  5148. top:260px;
  5149. width:115px;
  5150. height:32px;
  5151. display:flex;
  5152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5153. font-weight:400;
  5154. font-style:normal;
  5155. font-size:12px;
  5156. color:#333333;
  5157. }
  5158. #u24933 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:2px 2px 2px 0px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u24933_text {
  5166. border-width:0px;
  5167. word-wrap:break-word;
  5168. text-transform:none;
  5169. visibility:hidden;
  5170. }
  5171. #u24934_img {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:115px;
  5177. height:32px;
  5178. }
  5179. #u24934 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:230px;
  5183. top:260px;
  5184. width:115px;
  5185. height:32px;
  5186. display:flex;
  5187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5188. font-weight:400;
  5189. font-style:normal;
  5190. font-size:12px;
  5191. color:#333333;
  5192. }
  5193. #u24934 .text {
  5194. position:absolute;
  5195. align-self:center;
  5196. padding:2px 2px 2px 0px;
  5197. box-sizing:border-box;
  5198. width:100%;
  5199. }
  5200. #u24934_text {
  5201. border-width:0px;
  5202. word-wrap:break-word;
  5203. text-transform:none;
  5204. visibility:hidden;
  5205. }
  5206. #u24935_img {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:115px;
  5212. height:32px;
  5213. }
  5214. #u24935 {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:345px;
  5218. top:260px;
  5219. width:115px;
  5220. height:32px;
  5221. display:flex;
  5222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5223. font-weight:400;
  5224. font-style:normal;
  5225. font-size:12px;
  5226. color:#333333;
  5227. }
  5228. #u24935 .text {
  5229. position:absolute;
  5230. align-self:center;
  5231. padding:2px 2px 2px 0px;
  5232. box-sizing:border-box;
  5233. width:100%;
  5234. }
  5235. #u24935_text {
  5236. border-width:0px;
  5237. word-wrap:break-word;
  5238. text-transform:none;
  5239. visibility:hidden;
  5240. }
  5241. #u24936_img {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:103px;
  5247. height:32px;
  5248. }
  5249. #u24936 {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:460px;
  5253. top:260px;
  5254. width:103px;
  5255. height:32px;
  5256. display:flex;
  5257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:12px;
  5261. color:#333333;
  5262. }
  5263. #u24936 .text {
  5264. position:absolute;
  5265. align-self:center;
  5266. padding:2px 2px 2px 0px;
  5267. box-sizing:border-box;
  5268. width:100%;
  5269. }
  5270. #u24936_text {
  5271. border-width:0px;
  5272. word-wrap:break-word;
  5273. text-transform:none;
  5274. visibility:hidden;
  5275. }
  5276. #u24937_img {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:0px;
  5280. top:0px;
  5281. width:103px;
  5282. height:32px;
  5283. }
  5284. #u24937 {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:563px;
  5288. top:260px;
  5289. width:103px;
  5290. height:32px;
  5291. display:flex;
  5292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5293. font-weight:400;
  5294. font-style:normal;
  5295. font-size:12px;
  5296. color:#333333;
  5297. }
  5298. #u24937 .text {
  5299. position:absolute;
  5300. align-self:center;
  5301. padding:2px 2px 2px 0px;
  5302. box-sizing:border-box;
  5303. width:100%;
  5304. }
  5305. #u24937_text {
  5306. border-width:0px;
  5307. word-wrap:break-word;
  5308. text-transform:none;
  5309. visibility:hidden;
  5310. }
  5311. #u24938_img {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:0px;
  5315. top:0px;
  5316. width:103px;
  5317. height:32px;
  5318. }
  5319. #u24938 {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:666px;
  5323. top:260px;
  5324. width:103px;
  5325. height:32px;
  5326. display:flex;
  5327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5328. font-weight:400;
  5329. font-style:normal;
  5330. font-size:12px;
  5331. color:#333333;
  5332. }
  5333. #u24938 .text {
  5334. position:absolute;
  5335. align-self:center;
  5336. padding:2px 2px 2px 0px;
  5337. box-sizing:border-box;
  5338. width:100%;
  5339. }
  5340. #u24938_text {
  5341. border-width:0px;
  5342. word-wrap:break-word;
  5343. text-transform:none;
  5344. visibility:hidden;
  5345. }
  5346. #u24939_img {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:0px;
  5350. top:0px;
  5351. width:103px;
  5352. height:32px;
  5353. }
  5354. #u24939 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:769px;
  5358. top:260px;
  5359. width:103px;
  5360. height:32px;
  5361. display:flex;
  5362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5363. font-weight:400;
  5364. font-style:normal;
  5365. font-size:12px;
  5366. color:#333333;
  5367. }
  5368. #u24939 .text {
  5369. position:absolute;
  5370. align-self:center;
  5371. padding:2px 2px 2px 0px;
  5372. box-sizing:border-box;
  5373. width:100%;
  5374. }
  5375. #u24939_text {
  5376. border-width:0px;
  5377. word-wrap:break-word;
  5378. text-transform:none;
  5379. visibility:hidden;
  5380. }
  5381. #u24940_img {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:103px;
  5387. height:32px;
  5388. }
  5389. #u24940 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:872px;
  5393. top:260px;
  5394. width:103px;
  5395. height:32px;
  5396. display:flex;
  5397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5398. font-weight:400;
  5399. font-style:normal;
  5400. font-size:12px;
  5401. color:#333333;
  5402. }
  5403. #u24940 .text {
  5404. position:absolute;
  5405. align-self:center;
  5406. padding:2px 2px 2px 0px;
  5407. box-sizing:border-box;
  5408. width:100%;
  5409. }
  5410. #u24940_text {
  5411. border-width:0px;
  5412. word-wrap:break-word;
  5413. text-transform:none;
  5414. visibility:hidden;
  5415. }
  5416. #u24941_img {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:0px;
  5420. top:0px;
  5421. width:133px;
  5422. height:32px;
  5423. }
  5424. #u24941 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:975px;
  5428. top:260px;
  5429. width:133px;
  5430. height:32px;
  5431. display:flex;
  5432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:12px;
  5436. color:#333333;
  5437. }
  5438. #u24941 .text {
  5439. position:absolute;
  5440. align-self:center;
  5441. padding:2px 2px 2px 0px;
  5442. box-sizing:border-box;
  5443. width:100%;
  5444. }
  5445. #u24941_text {
  5446. border-width:0px;
  5447. word-wrap:break-word;
  5448. text-transform:none;
  5449. visibility:hidden;
  5450. }
  5451. #u24942_img {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:112px;
  5457. height:32px;
  5458. }
  5459. #u24942 {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:1108px;
  5463. top:260px;
  5464. width:112px;
  5465. height:32px;
  5466. display:flex;
  5467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. font-size:12px;
  5471. color:#333333;
  5472. }
  5473. #u24942 .text {
  5474. position:absolute;
  5475. align-self:center;
  5476. padding:2px 2px 2px 0px;
  5477. box-sizing:border-box;
  5478. width:100%;
  5479. }
  5480. #u24942_text {
  5481. border-width:0px;
  5482. word-wrap:break-word;
  5483. text-transform:none;
  5484. visibility:hidden;
  5485. }
  5486. #u24943_img {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:0px;
  5490. top:0px;
  5491. width:120px;
  5492. height:32px;
  5493. }
  5494. #u24943 {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:1220px;
  5498. top:260px;
  5499. width:120px;
  5500. height:32px;
  5501. display:flex;
  5502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5503. font-weight:400;
  5504. font-style:normal;
  5505. font-size:12px;
  5506. color:#333333;
  5507. }
  5508. #u24943 .text {
  5509. position:absolute;
  5510. align-self:center;
  5511. padding:2px 2px 2px 0px;
  5512. box-sizing:border-box;
  5513. width:100%;
  5514. }
  5515. #u24943_text {
  5516. border-width:0px;
  5517. word-wrap:break-word;
  5518. text-transform:none;
  5519. visibility:hidden;
  5520. }
  5521. #u24944_img {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:0px;
  5525. top:0px;
  5526. width:115px;
  5527. height:30px;
  5528. }
  5529. #u24944 {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:0px;
  5533. top:292px;
  5534. width:115px;
  5535. height:30px;
  5536. display:flex;
  5537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5538. font-weight:400;
  5539. font-style:normal;
  5540. font-size:12px;
  5541. color:#333333;
  5542. }
  5543. #u24944 .text {
  5544. position:absolute;
  5545. align-self:center;
  5546. padding:2px 2px 2px 0px;
  5547. box-sizing:border-box;
  5548. width:100%;
  5549. }
  5550. #u24944_text {
  5551. border-width:0px;
  5552. word-wrap:break-word;
  5553. text-transform:none;
  5554. visibility:hidden;
  5555. }
  5556. #u24945_img {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:0px;
  5560. top:0px;
  5561. width:115px;
  5562. height:30px;
  5563. }
  5564. #u24945 {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:115px;
  5568. top:292px;
  5569. width:115px;
  5570. height:30px;
  5571. display:flex;
  5572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5573. font-weight:400;
  5574. font-style:normal;
  5575. font-size:12px;
  5576. color:#333333;
  5577. }
  5578. #u24945 .text {
  5579. position:absolute;
  5580. align-self:center;
  5581. padding:2px 2px 2px 0px;
  5582. box-sizing:border-box;
  5583. width:100%;
  5584. }
  5585. #u24945_text {
  5586. border-width:0px;
  5587. word-wrap:break-word;
  5588. text-transform:none;
  5589. visibility:hidden;
  5590. }
  5591. #u24946_img {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:0px;
  5595. top:0px;
  5596. width:115px;
  5597. height:30px;
  5598. }
  5599. #u24946 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:230px;
  5603. top:292px;
  5604. width:115px;
  5605. height:30px;
  5606. display:flex;
  5607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5608. font-weight:400;
  5609. font-style:normal;
  5610. font-size:12px;
  5611. color:#333333;
  5612. }
  5613. #u24946 .text {
  5614. position:absolute;
  5615. align-self:center;
  5616. padding:2px 2px 2px 0px;
  5617. box-sizing:border-box;
  5618. width:100%;
  5619. }
  5620. #u24946_text {
  5621. border-width:0px;
  5622. word-wrap:break-word;
  5623. text-transform:none;
  5624. visibility:hidden;
  5625. }
  5626. #u24947_img {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:0px;
  5630. top:0px;
  5631. width:115px;
  5632. height:30px;
  5633. }
  5634. #u24947 {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:345px;
  5638. top:292px;
  5639. width:115px;
  5640. height:30px;
  5641. display:flex;
  5642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5643. font-weight:400;
  5644. font-style:normal;
  5645. font-size:12px;
  5646. color:#333333;
  5647. }
  5648. #u24947 .text {
  5649. position:absolute;
  5650. align-self:center;
  5651. padding:2px 2px 2px 0px;
  5652. box-sizing:border-box;
  5653. width:100%;
  5654. }
  5655. #u24947_text {
  5656. border-width:0px;
  5657. word-wrap:break-word;
  5658. text-transform:none;
  5659. visibility:hidden;
  5660. }
  5661. #u24948_img {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:0px;
  5665. top:0px;
  5666. width:103px;
  5667. height:30px;
  5668. }
  5669. #u24948 {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:460px;
  5673. top:292px;
  5674. width:103px;
  5675. height:30px;
  5676. display:flex;
  5677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5678. font-weight:400;
  5679. font-style:normal;
  5680. font-size:12px;
  5681. color:#333333;
  5682. }
  5683. #u24948 .text {
  5684. position:absolute;
  5685. align-self:center;
  5686. padding:2px 2px 2px 0px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u24948_text {
  5691. border-width:0px;
  5692. word-wrap:break-word;
  5693. text-transform:none;
  5694. visibility:hidden;
  5695. }
  5696. #u24949_img {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:103px;
  5702. height:30px;
  5703. }
  5704. #u24949 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:563px;
  5708. top:292px;
  5709. width:103px;
  5710. height:30px;
  5711. display:flex;
  5712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:12px;
  5716. color:#333333;
  5717. }
  5718. #u24949 .text {
  5719. position:absolute;
  5720. align-self:center;
  5721. padding:2px 2px 2px 0px;
  5722. box-sizing:border-box;
  5723. width:100%;
  5724. }
  5725. #u24949_text {
  5726. border-width:0px;
  5727. word-wrap:break-word;
  5728. text-transform:none;
  5729. visibility:hidden;
  5730. }
  5731. #u24950_img {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:0px;
  5735. top:0px;
  5736. width:103px;
  5737. height:30px;
  5738. }
  5739. #u24950 {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:666px;
  5743. top:292px;
  5744. width:103px;
  5745. height:30px;
  5746. display:flex;
  5747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5748. font-weight:400;
  5749. font-style:normal;
  5750. font-size:12px;
  5751. color:#333333;
  5752. }
  5753. #u24950 .text {
  5754. position:absolute;
  5755. align-self:center;
  5756. padding:2px 2px 2px 0px;
  5757. box-sizing:border-box;
  5758. width:100%;
  5759. }
  5760. #u24950_text {
  5761. border-width:0px;
  5762. word-wrap:break-word;
  5763. text-transform:none;
  5764. visibility:hidden;
  5765. }
  5766. #u24951_img {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:0px;
  5770. top:0px;
  5771. width:103px;
  5772. height:30px;
  5773. }
  5774. #u24951 {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:769px;
  5778. top:292px;
  5779. width:103px;
  5780. height:30px;
  5781. display:flex;
  5782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5783. font-weight:400;
  5784. font-style:normal;
  5785. font-size:12px;
  5786. color:#333333;
  5787. }
  5788. #u24951 .text {
  5789. position:absolute;
  5790. align-self:center;
  5791. padding:2px 2px 2px 0px;
  5792. box-sizing:border-box;
  5793. width:100%;
  5794. }
  5795. #u24951_text {
  5796. border-width:0px;
  5797. word-wrap:break-word;
  5798. text-transform:none;
  5799. visibility:hidden;
  5800. }
  5801. #u24952_img {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:103px;
  5807. height:30px;
  5808. }
  5809. #u24952 {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:872px;
  5813. top:292px;
  5814. width:103px;
  5815. height:30px;
  5816. display:flex;
  5817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5818. font-weight:400;
  5819. font-style:normal;
  5820. font-size:12px;
  5821. color:#333333;
  5822. }
  5823. #u24952 .text {
  5824. position:absolute;
  5825. align-self:center;
  5826. padding:2px 2px 2px 0px;
  5827. box-sizing:border-box;
  5828. width:100%;
  5829. }
  5830. #u24952_text {
  5831. border-width:0px;
  5832. word-wrap:break-word;
  5833. text-transform:none;
  5834. visibility:hidden;
  5835. }
  5836. #u24953_img {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:133px;
  5842. height:30px;
  5843. }
  5844. #u24953 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:975px;
  5848. top:292px;
  5849. width:133px;
  5850. height:30px;
  5851. display:flex;
  5852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. font-size:12px;
  5856. color:#333333;
  5857. }
  5858. #u24953 .text {
  5859. position:absolute;
  5860. align-self:center;
  5861. padding:2px 2px 2px 0px;
  5862. box-sizing:border-box;
  5863. width:100%;
  5864. }
  5865. #u24953_text {
  5866. border-width:0px;
  5867. word-wrap:break-word;
  5868. text-transform:none;
  5869. visibility:hidden;
  5870. }
  5871. #u24954_img {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:0px;
  5875. top:0px;
  5876. width:112px;
  5877. height:30px;
  5878. }
  5879. #u24954 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:1108px;
  5883. top:292px;
  5884. width:112px;
  5885. height:30px;
  5886. display:flex;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:12px;
  5891. color:#333333;
  5892. }
  5893. #u24954 .text {
  5894. position:absolute;
  5895. align-self:center;
  5896. padding:2px 2px 2px 0px;
  5897. box-sizing:border-box;
  5898. width:100%;
  5899. }
  5900. #u24954_text {
  5901. border-width:0px;
  5902. word-wrap:break-word;
  5903. text-transform:none;
  5904. visibility:hidden;
  5905. }
  5906. #u24955_img {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:120px;
  5912. height:30px;
  5913. }
  5914. #u24955 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:1220px;
  5918. top:292px;
  5919. width:120px;
  5920. height:30px;
  5921. display:flex;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:12px;
  5926. color:#333333;
  5927. }
  5928. #u24955 .text {
  5929. position:absolute;
  5930. align-self:center;
  5931. padding:2px 2px 2px 0px;
  5932. box-sizing:border-box;
  5933. width:100%;
  5934. }
  5935. #u24955_text {
  5936. border-width:0px;
  5937. word-wrap:break-word;
  5938. text-transform:none;
  5939. visibility:hidden;
  5940. }
  5941. #u24956 {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:0px;
  5947. height:0px;
  5948. }
  5949. #u24957_div {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:59px;
  5955. height:30px;
  5956. background:inherit;
  5957. background-color:rgba(24, 144, 255, 1);
  5958. box-sizing:border-box;
  5959. border-width:1px;
  5960. border-style:solid;
  5961. border-color:rgba(0, 153, 255, 1);
  5962. border-radius:4px;
  5963. -moz-box-shadow:none;
  5964. -webkit-box-shadow:none;
  5965. box-shadow:none;
  5966. font-family:'Microsoft YaHei', sans-serif;
  5967. font-weight:400;
  5968. font-style:normal;
  5969. font-size:14px;
  5970. color:#FFFFFF;
  5971. }
  5972. #u24957 {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:1278px;
  5976. top:202px;
  5977. width:59px;
  5978. height:30px;
  5979. display:flex;
  5980. font-family:'Microsoft YaHei', sans-serif;
  5981. font-weight:400;
  5982. font-style:normal;
  5983. font-size:14px;
  5984. color:#FFFFFF;
  5985. }
  5986. #u24957 .text {
  5987. position:absolute;
  5988. align-self:center;
  5989. padding:5px 15px 5px 15px;
  5990. box-sizing:border-box;
  5991. width:100%;
  5992. }
  5993. #u24957_text {
  5994. border-width:0px;
  5995. white-space:nowrap;
  5996. text-transform:none;
  5997. }
  5998. #u24958_div {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:0px;
  6002. top:0px;
  6003. width:55px;
  6004. height:30px;
  6005. background:inherit;
  6006. background-color:rgba(255, 255, 255, 1);
  6007. box-sizing:border-box;
  6008. border-width:1px;
  6009. border-style:solid;
  6010. border-color:rgba(170, 170, 170, 1);
  6011. border-radius:4px;
  6012. -moz-box-shadow:none;
  6013. -webkit-box-shadow:none;
  6014. box-shadow:none;
  6015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6016. font-weight:400;
  6017. font-style:normal;
  6018. font-size:12px;
  6019. color:#555555;
  6020. }
  6021. #u24958 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:1347px;
  6025. top:202px;
  6026. width:55px;
  6027. height:30px;
  6028. display:flex;
  6029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6030. font-weight:400;
  6031. font-style:normal;
  6032. font-size:12px;
  6033. color:#555555;
  6034. }
  6035. #u24958 .text {
  6036. position:absolute;
  6037. align-self:center;
  6038. padding:5px 15px 5px 15px;
  6039. box-sizing:border-box;
  6040. width:100%;
  6041. }
  6042. #u24958_text {
  6043. border-width:0px;
  6044. white-space:nowrap;
  6045. text-transform:none;
  6046. }
  6047. #u24960 {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:0px;
  6051. top:0px;
  6052. width:0px;
  6053. height:0px;
  6054. }
  6055. #u24961_div {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:0px;
  6059. top:0px;
  6060. width:30px;
  6061. height:30px;
  6062. background:inherit;
  6063. background-color:rgba(255, 255, 255, 1);
  6064. box-sizing:border-box;
  6065. border-width:1px;
  6066. border-style:solid;
  6067. border-color:rgba(228, 228, 228, 1);
  6068. border-radius:4px;
  6069. -moz-box-shadow:none;
  6070. -webkit-box-shadow:none;
  6071. box-shadow:none;
  6072. font-family:'Microsoft YaHei', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:14px;
  6076. }
  6077. #u24961 {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:1003px;
  6081. top:626px;
  6082. width:30px;
  6083. height:30px;
  6084. display:flex;
  6085. font-family:'Microsoft YaHei', sans-serif;
  6086. font-weight:400;
  6087. font-style:normal;
  6088. font-size:14px;
  6089. }
  6090. #u24961 .text {
  6091. position:absolute;
  6092. align-self:center;
  6093. padding:2px 2px 2px 2px;
  6094. box-sizing:border-box;
  6095. width:100%;
  6096. }
  6097. #u24961_text {
  6098. border-width:0px;
  6099. word-wrap:break-word;
  6100. text-transform:none;
  6101. }
  6102. #u24962_div {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:0px;
  6106. top:0px;
  6107. width:49px;
  6108. height:30px;
  6109. background:inherit;
  6110. background-color:rgba(255, 255, 255, 0);
  6111. box-sizing:border-box;
  6112. border-width:1px;
  6113. border-style:solid;
  6114. border-color:rgba(188, 188, 188, 1);
  6115. border-radius:4px;
  6116. -moz-box-shadow:none;
  6117. -webkit-box-shadow:none;
  6118. box-shadow:none;
  6119. font-family:'Microsoft YaHei', sans-serif;
  6120. font-weight:400;
  6121. font-style:normal;
  6122. font-size:14px;
  6123. color:#1E1E1E;
  6124. }
  6125. #u24962 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:1519px;
  6129. top:626px;
  6130. width:49px;
  6131. height:30px;
  6132. display:flex;
  6133. font-family:'Microsoft YaHei', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:14px;
  6137. color:#1E1E1E;
  6138. }
  6139. #u24962 .text {
  6140. position:absolute;
  6141. align-self:center;
  6142. padding:5px 10px 5px 10px;
  6143. box-sizing:border-box;
  6144. width:100%;
  6145. }
  6146. #u24962_text {
  6147. border-width:0px;
  6148. white-space:nowrap;
  6149. text-transform:none;
  6150. }
  6151. #u24963 {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:0px;
  6155. top:0px;
  6156. width:0px;
  6157. height:0px;
  6158. }
  6159. #u24964_div {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:0px;
  6163. top:0px;
  6164. width:33px;
  6165. height:24px;
  6166. background:inherit;
  6167. background-color:rgba(255, 255, 255, 1);
  6168. border:none;
  6169. border-radius:0px;
  6170. -moz-box-shadow:none;
  6171. -webkit-box-shadow:none;
  6172. box-shadow:none;
  6173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6174. font-weight:400;
  6175. font-style:normal;
  6176. font-size:14px;
  6177. color:#BCBCBC;
  6178. text-align:left;
  6179. }
  6180. #u24964 {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:1287px;
  6184. top:629px;
  6185. width:33px;
  6186. height:24px;
  6187. display:flex;
  6188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6189. font-weight:400;
  6190. font-style:normal;
  6191. font-size:14px;
  6192. color:#BCBCBC;
  6193. text-align:left;
  6194. }
  6195. #u24964 .text {
  6196. position:absolute;
  6197. align-self:center;
  6198. padding:2px 2px 2px 2px;
  6199. box-sizing:border-box;
  6200. width:100%;
  6201. }
  6202. #u24964_text {
  6203. border-width:0px;
  6204. white-space:nowrap;
  6205. text-transform:none;
  6206. }
  6207. #u24965_div {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:40px;
  6213. height:30px;
  6214. background:inherit;
  6215. background-color:rgba(255, 255, 255, 1);
  6216. box-sizing:border-box;
  6217. border-width:1px;
  6218. border-style:solid;
  6219. border-color:rgba(228, 228, 228, 1);
  6220. border-radius:4px;
  6221. -moz-box-shadow:none;
  6222. -webkit-box-shadow:none;
  6223. box-shadow:none;
  6224. font-family:'Microsoft YaHei', sans-serif;
  6225. font-weight:400;
  6226. font-style:normal;
  6227. font-size:14px;
  6228. }
  6229. #u24965 {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:1322px;
  6233. top:626px;
  6234. width:40px;
  6235. height:30px;
  6236. display:flex;
  6237. font-family:'Microsoft YaHei', sans-serif;
  6238. font-weight:400;
  6239. font-style:normal;
  6240. font-size:14px;
  6241. }
  6242. #u24965 .text {
  6243. position:absolute;
  6244. align-self:center;
  6245. padding:2px 2px 2px 2px;
  6246. box-sizing:border-box;
  6247. width:100%;
  6248. }
  6249. #u24965_text {
  6250. border-width:0px;
  6251. word-wrap:break-word;
  6252. text-transform:none;
  6253. visibility:hidden;
  6254. }
  6255. #u24966_div {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:0px;
  6259. top:0px;
  6260. width:19px;
  6261. height:24px;
  6262. background:inherit;
  6263. background-color:rgba(255, 255, 255, 1);
  6264. border:none;
  6265. border-radius:0px;
  6266. -moz-box-shadow:none;
  6267. -webkit-box-shadow:none;
  6268. box-shadow:none;
  6269. font-family:'Microsoft YaHei', sans-serif;
  6270. font-weight:400;
  6271. font-style:normal;
  6272. font-size:14px;
  6273. color:#BCBCBC;
  6274. text-align:left;
  6275. }
  6276. #u24966 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:1364px;
  6280. top:630px;
  6281. width:19px;
  6282. height:24px;
  6283. display:flex;
  6284. font-family:'Microsoft YaHei', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:14px;
  6288. color:#BCBCBC;
  6289. text-align:left;
  6290. }
  6291. #u24966 .text {
  6292. position:absolute;
  6293. align-self:center;
  6294. padding:2px 2px 2px 2px;
  6295. box-sizing:border-box;
  6296. width:100%;
  6297. }
  6298. #u24966_text {
  6299. border-width:0px;
  6300. white-space:nowrap;
  6301. text-transform:none;
  6302. }
  6303. #u24967_input {
  6304. position:absolute;
  6305. left:0px;
  6306. top:0px;
  6307. width:34px;
  6308. height:25px;
  6309. padding:2px 2px 2px 2px;
  6310. font-family:'Microsoft YaHei', sans-serif;
  6311. font-weight:400;
  6312. font-style:normal;
  6313. font-size:13px;
  6314. letter-spacing:normal;
  6315. color:#000000;
  6316. vertical-align:none;
  6317. text-align:left;
  6318. text-transform:none;
  6319. background-color:transparent;
  6320. border-color:transparent;
  6321. }
  6322. #u24967_input.disabled {
  6323. position:absolute;
  6324. left:0px;
  6325. top:0px;
  6326. width:34px;
  6327. height:25px;
  6328. padding:2px 2px 2px 2px;
  6329. font-family:'Microsoft YaHei', sans-serif;
  6330. font-weight:400;
  6331. font-style:normal;
  6332. font-size:13px;
  6333. letter-spacing:normal;
  6334. color:#000000;
  6335. vertical-align:none;
  6336. text-align:left;
  6337. text-transform:none;
  6338. background-color:transparent;
  6339. border-color:transparent;
  6340. }
  6341. #u24967_div {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:34px;
  6347. height:25px;
  6348. background:inherit;
  6349. background-color:rgba(255, 255, 255, 1);
  6350. border:none;
  6351. border-radius:0px;
  6352. -moz-box-shadow:none;
  6353. -webkit-box-shadow:none;
  6354. box-shadow:none;
  6355. font-family:'Microsoft YaHei', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. }
  6359. #u24967 {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:1325px;
  6363. top:628px;
  6364. width:34px;
  6365. height:25px;
  6366. display:flex;
  6367. font-family:'Microsoft YaHei', sans-serif;
  6368. font-weight:400;
  6369. font-style:normal;
  6370. }
  6371. #u24967 .text {
  6372. position:absolute;
  6373. align-self:center;
  6374. padding:2px 2px 2px 2px;
  6375. box-sizing:border-box;
  6376. width:100%;
  6377. }
  6378. #u24967_div.disabled {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:34px;
  6384. height:25px;
  6385. background:inherit;
  6386. background-color:rgba(240, 240, 240, 1);
  6387. border:none;
  6388. border-radius:0px;
  6389. -moz-box-shadow:none;
  6390. -webkit-box-shadow:none;
  6391. box-shadow:none;
  6392. font-family:'Microsoft YaHei', sans-serif;
  6393. font-weight:400;
  6394. font-style:normal;
  6395. }
  6396. #u24967.disabled {
  6397. }
  6398. #u24968_div {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:0px;
  6402. top:0px;
  6403. width:30px;
  6404. height:30px;
  6405. background:inherit;
  6406. background-color:rgba(41, 143, 255, 1);
  6407. border:none;
  6408. border-radius:4px;
  6409. -moz-box-shadow:none;
  6410. -webkit-box-shadow:none;
  6411. box-shadow:none;
  6412. font-family:'Microsoft YaHei', sans-serif;
  6413. font-weight:400;
  6414. font-style:normal;
  6415. font-size:14px;
  6416. color:#FFFFFF;
  6417. }
  6418. #u24968 {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:1037px;
  6422. top:626px;
  6423. width:30px;
  6424. height:30px;
  6425. display:flex;
  6426. font-family:'Microsoft YaHei', sans-serif;
  6427. font-weight:400;
  6428. font-style:normal;
  6429. font-size:14px;
  6430. color:#FFFFFF;
  6431. }
  6432. #u24968 .text {
  6433. position:absolute;
  6434. align-self:center;
  6435. padding:2px 2px 2px 2px;
  6436. box-sizing:border-box;
  6437. width:100%;
  6438. }
  6439. #u24968_text {
  6440. border-width:0px;
  6441. word-wrap:break-word;
  6442. text-transform:none;
  6443. }
  6444. #u24969_div {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:0px;
  6448. top:0px;
  6449. width:30px;
  6450. height:30px;
  6451. background:inherit;
  6452. background-color:rgba(255, 255, 255, 1);
  6453. box-sizing:border-box;
  6454. border-width:1px;
  6455. border-style:solid;
  6456. border-color:rgba(228, 228, 228, 1);
  6457. border-radius:4px;
  6458. -moz-box-shadow:none;
  6459. -webkit-box-shadow:none;
  6460. box-shadow:none;
  6461. font-family:'Microsoft YaHei', sans-serif;
  6462. font-weight:400;
  6463. font-style:normal;
  6464. font-size:14px;
  6465. }
  6466. #u24969 {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:1071px;
  6470. top:626px;
  6471. width:30px;
  6472. height:30px;
  6473. display:flex;
  6474. font-family:'Microsoft YaHei', sans-serif;
  6475. font-weight:400;
  6476. font-style:normal;
  6477. font-size:14px;
  6478. }
  6479. #u24969 .text {
  6480. position:absolute;
  6481. align-self:center;
  6482. padding:2px 2px 2px 2px;
  6483. box-sizing:border-box;
  6484. width:100%;
  6485. }
  6486. #u24969_text {
  6487. border-width:0px;
  6488. word-wrap:break-word;
  6489. text-transform:none;
  6490. }
  6491. #u24970_div {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:0px;
  6495. top:0px;
  6496. width:30px;
  6497. height:30px;
  6498. background:inherit;
  6499. background-color:rgba(255, 255, 255, 1);
  6500. box-sizing:border-box;
  6501. border-width:1px;
  6502. border-style:solid;
  6503. border-color:rgba(228, 228, 228, 1);
  6504. border-radius:4px;
  6505. -moz-box-shadow:none;
  6506. -webkit-box-shadow:none;
  6507. box-shadow:none;
  6508. font-family:'Microsoft YaHei', sans-serif;
  6509. font-weight:400;
  6510. font-style:normal;
  6511. font-size:14px;
  6512. }
  6513. #u24970 {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:1105px;
  6517. top:626px;
  6518. width:30px;
  6519. height:30px;
  6520. display:flex;
  6521. font-family:'Microsoft YaHei', sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:14px;
  6525. }
  6526. #u24970 .text {
  6527. position:absolute;
  6528. align-self:center;
  6529. padding:2px 2px 2px 2px;
  6530. box-sizing:border-box;
  6531. width:100%;
  6532. }
  6533. #u24970_text {
  6534. border-width:0px;
  6535. word-wrap:break-word;
  6536. text-transform:none;
  6537. }
  6538. #u24971_div {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:0px;
  6542. top:0px;
  6543. width:30px;
  6544. height:30px;
  6545. background:inherit;
  6546. background-color:rgba(255, 255, 255, 1);
  6547. border:none;
  6548. border-radius:4px;
  6549. -moz-box-shadow:none;
  6550. -webkit-box-shadow:none;
  6551. box-shadow:none;
  6552. font-family:'Microsoft YaHei', sans-serif;
  6553. font-weight:400;
  6554. font-style:normal;
  6555. font-size:14px;
  6556. }
  6557. #u24971 {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:1135px;
  6561. top:626px;
  6562. width:30px;
  6563. height:30px;
  6564. display:flex;
  6565. font-family:'Microsoft YaHei', sans-serif;
  6566. font-weight:400;
  6567. font-style:normal;
  6568. font-size:14px;
  6569. }
  6570. #u24971 .text {
  6571. position:absolute;
  6572. align-self:center;
  6573. padding:2px 2px 2px 2px;
  6574. box-sizing:border-box;
  6575. width:100%;
  6576. }
  6577. #u24971_text {
  6578. border-width:0px;
  6579. word-wrap:break-word;
  6580. text-transform:none;
  6581. }
  6582. #u24972_div {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:0px;
  6586. top:0px;
  6587. width:30px;
  6588. height:30px;
  6589. background:inherit;
  6590. background-color:rgba(255, 255, 255, 1);
  6591. box-sizing:border-box;
  6592. border-width:1px;
  6593. border-style:solid;
  6594. border-color:rgba(228, 228, 228, 1);
  6595. border-radius:4px;
  6596. -moz-box-shadow:none;
  6597. -webkit-box-shadow:none;
  6598. box-shadow:none;
  6599. font-family:'Microsoft YaHei', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:14px;
  6603. }
  6604. #u24972 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:1169px;
  6608. top:626px;
  6609. width:30px;
  6610. height:30px;
  6611. display:flex;
  6612. font-family:'Microsoft YaHei', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:14px;
  6616. }
  6617. #u24972 .text {
  6618. position:absolute;
  6619. align-self:center;
  6620. padding:2px 2px 2px 2px;
  6621. box-sizing:border-box;
  6622. width:100%;
  6623. }
  6624. #u24972_text {
  6625. border-width:0px;
  6626. word-wrap:break-word;
  6627. text-transform:none;
  6628. }
  6629. #u24973_div {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:0px;
  6633. top:0px;
  6634. width:32px;
  6635. height:21px;
  6636. background:inherit;
  6637. background-color:rgba(255, 255, 255, 1);
  6638. border:none;
  6639. border-radius:15px;
  6640. -moz-box-shadow:none;
  6641. -webkit-box-shadow:none;
  6642. box-shadow:none;
  6643. font-family:'Microsoft YaHei', sans-serif;
  6644. font-weight:400;
  6645. font-style:normal;
  6646. font-size:14px;
  6647. color:#1E1E1E;
  6648. }
  6649. #u24973 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:1243px;
  6653. top:631px;
  6654. width:32px;
  6655. height:21px;
  6656. display:flex;
  6657. font-family:'Microsoft YaHei', sans-serif;
  6658. font-weight:400;
  6659. font-style:normal;
  6660. font-size:14px;
  6661. color:#1E1E1E;
  6662. }
  6663. #u24973 .text {
  6664. position:absolute;
  6665. align-self:center;
  6666. padding:2px 2px 2px 2px;
  6667. box-sizing:border-box;
  6668. width:100%;
  6669. }
  6670. #u24973_text {
  6671. border-width:0px;
  6672. white-space:nowrap;
  6673. text-transform:none;
  6674. }
  6675. #u24974 {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:0px;
  6679. top:0px;
  6680. width:0px;
  6681. height:0px;
  6682. }
  6683. #u24975_div {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:0px;
  6687. top:0px;
  6688. width:31px;
  6689. height:30px;
  6690. background:inherit;
  6691. background-color:rgba(255, 255, 255, 1);
  6692. box-sizing:border-box;
  6693. border-width:1px;
  6694. border-style:solid;
  6695. border-color:rgba(228, 228, 228, 1);
  6696. border-radius:4px;
  6697. -moz-box-shadow:none;
  6698. -webkit-box-shadow:none;
  6699. box-shadow:none;
  6700. font-family:'Microsoft YaHei', sans-serif;
  6701. font-weight:400;
  6702. font-style:normal;
  6703. font-size:12px;
  6704. }
  6705. #u24975 {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:968px;
  6709. top:626px;
  6710. width:31px;
  6711. height:30px;
  6712. display:flex;
  6713. font-family:'Microsoft YaHei', sans-serif;
  6714. font-weight:400;
  6715. font-style:normal;
  6716. font-size:12px;
  6717. }
  6718. #u24975 .text {
  6719. position:absolute;
  6720. align-self:center;
  6721. padding:2px 2px 2px 2px;
  6722. box-sizing:border-box;
  6723. width:100%;
  6724. }
  6725. #u24975_text {
  6726. border-width:0px;
  6727. word-wrap:break-word;
  6728. text-transform:none;
  6729. visibility:hidden;
  6730. }
  6731. #u24976_img {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:0px;
  6735. top:0px;
  6736. width:8px;
  6737. height:14px;
  6738. }
  6739. #u24976 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:980px;
  6743. top:634px;
  6744. width:8px;
  6745. height:14px;
  6746. display:flex;
  6747. font-family:'Microsoft YaHei', sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. font-size:12px;
  6751. }
  6752. #u24976 .text {
  6753. position:absolute;
  6754. align-self:center;
  6755. padding:2px 2px 2px 2px;
  6756. box-sizing:border-box;
  6757. width:100%;
  6758. }
  6759. #u24976_text {
  6760. border-width:0px;
  6761. word-wrap:break-word;
  6762. text-transform:none;
  6763. visibility:hidden;
  6764. }
  6765. #u24977 {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:0px;
  6771. height:0px;
  6772. }
  6773. #u24978_div {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:0px;
  6777. top:0px;
  6778. width:31px;
  6779. height:30px;
  6780. background:inherit;
  6781. background-color:rgba(255, 255, 255, 1);
  6782. box-sizing:border-box;
  6783. border-width:1px;
  6784. border-style:solid;
  6785. border-color:rgba(228, 228, 228, 1);
  6786. border-radius:4px;
  6787. -moz-box-shadow:none;
  6788. -webkit-box-shadow:none;
  6789. box-shadow:none;
  6790. font-family:'Microsoft YaHei', sans-serif;
  6791. font-weight:400;
  6792. font-style:normal;
  6793. font-size:12px;
  6794. }
  6795. #u24978 {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:1202px;
  6799. top:626px;
  6800. width:31px;
  6801. height:30px;
  6802. display:flex;
  6803. font-family:'Microsoft YaHei', sans-serif;
  6804. font-weight:400;
  6805. font-style:normal;
  6806. font-size:12px;
  6807. }
  6808. #u24978 .text {
  6809. position:absolute;
  6810. align-self:center;
  6811. padding:2px 2px 2px 2px;
  6812. box-sizing:border-box;
  6813. width:100%;
  6814. }
  6815. #u24978_text {
  6816. border-width:0px;
  6817. word-wrap:break-word;
  6818. text-transform:none;
  6819. visibility:hidden;
  6820. }
  6821. #u24979_img {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:0px;
  6825. top:0px;
  6826. width:8px;
  6827. height:14px;
  6828. }
  6829. #u24979 {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:1215px;
  6833. top:634px;
  6834. width:8px;
  6835. height:14px;
  6836. display:flex;
  6837. font-family:'Microsoft YaHei', sans-serif;
  6838. font-weight:400;
  6839. font-style:normal;
  6840. font-size:12px;
  6841. }
  6842. #u24979 .text {
  6843. position:absolute;
  6844. align-self:center;
  6845. padding:2px 2px 2px 2px;
  6846. box-sizing:border-box;
  6847. width:100%;
  6848. }
  6849. #u24979_text {
  6850. border-width:0px;
  6851. word-wrap:break-word;
  6852. text-transform:none;
  6853. visibility:hidden;
  6854. }
  6855. #u24980 {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:0px;
  6859. top:0px;
  6860. width:0px;
  6861. height:0px;
  6862. }
  6863. #u24981_div {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:0px;
  6867. top:0px;
  6868. width:33px;
  6869. height:24px;
  6870. background:inherit;
  6871. background-color:rgba(255, 255, 255, 1);
  6872. border:none;
  6873. border-radius:0px;
  6874. -moz-box-shadow:none;
  6875. -webkit-box-shadow:none;
  6876. box-shadow:none;
  6877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. font-size:14px;
  6881. color:#BCBCBC;
  6882. text-align:left;
  6883. }
  6884. #u24981 {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:1403px;
  6888. top:629px;
  6889. width:33px;
  6890. height:24px;
  6891. display:flex;
  6892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6893. font-weight:400;
  6894. font-style:normal;
  6895. font-size:14px;
  6896. color:#BCBCBC;
  6897. text-align:left;
  6898. }
  6899. #u24981 .text {
  6900. position:absolute;
  6901. align-self:center;
  6902. padding:2px 2px 2px 2px;
  6903. box-sizing:border-box;
  6904. width:100%;
  6905. }
  6906. #u24981_text {
  6907. border-width:0px;
  6908. white-space:nowrap;
  6909. text-transform:none;
  6910. }
  6911. #u24982_div {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:40px;
  6917. height:30px;
  6918. background:inherit;
  6919. background-color:rgba(255, 255, 255, 1);
  6920. box-sizing:border-box;
  6921. border-width:1px;
  6922. border-style:solid;
  6923. border-color:rgba(228, 228, 228, 1);
  6924. border-radius:4px;
  6925. -moz-box-shadow:none;
  6926. -webkit-box-shadow:none;
  6927. box-shadow:none;
  6928. font-family:'Microsoft YaHei', sans-serif;
  6929. font-weight:400;
  6930. font-style:normal;
  6931. font-size:14px;
  6932. }
  6933. #u24982 {
  6934. border-width:0px;
  6935. position:absolute;
  6936. left:1438px;
  6937. top:626px;
  6938. width:40px;
  6939. height:30px;
  6940. display:flex;
  6941. font-family:'Microsoft YaHei', sans-serif;
  6942. font-weight:400;
  6943. font-style:normal;
  6944. font-size:14px;
  6945. }
  6946. #u24982 .text {
  6947. position:absolute;
  6948. align-self:center;
  6949. padding:2px 2px 2px 2px;
  6950. box-sizing:border-box;
  6951. width:100%;
  6952. }
  6953. #u24982_text {
  6954. border-width:0px;
  6955. word-wrap:break-word;
  6956. text-transform:none;
  6957. visibility:hidden;
  6958. }
  6959. #u24983_div {
  6960. border-width:0px;
  6961. position:absolute;
  6962. left:0px;
  6963. top:0px;
  6964. width:19px;
  6965. height:24px;
  6966. background:inherit;
  6967. background-color:rgba(255, 255, 255, 1);
  6968. border:none;
  6969. border-radius:0px;
  6970. -moz-box-shadow:none;
  6971. -webkit-box-shadow:none;
  6972. box-shadow:none;
  6973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6974. font-weight:400;
  6975. font-style:normal;
  6976. font-size:14px;
  6977. color:#BCBCBC;
  6978. text-align:left;
  6979. }
  6980. #u24983 {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:1480px;
  6984. top:630px;
  6985. width:19px;
  6986. height:24px;
  6987. display:flex;
  6988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6989. font-weight:400;
  6990. font-style:normal;
  6991. font-size:14px;
  6992. color:#BCBCBC;
  6993. text-align:left;
  6994. }
  6995. #u24983 .text {
  6996. position:absolute;
  6997. align-self:center;
  6998. padding:2px 2px 2px 2px;
  6999. box-sizing:border-box;
  7000. width:100%;
  7001. }
  7002. #u24983_text {
  7003. border-width:0px;
  7004. white-space:nowrap;
  7005. text-transform:none;
  7006. }
  7007. #u24984_input {
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:34px;
  7012. height:25px;
  7013. padding:2px 2px 2px 2px;
  7014. font-family:'Microsoft YaHei', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:13px;
  7018. letter-spacing:normal;
  7019. color:#000000;
  7020. vertical-align:none;
  7021. text-align:left;
  7022. text-transform:none;
  7023. background-color:transparent;
  7024. border-color:transparent;
  7025. }
  7026. #u24984_input.disabled {
  7027. position:absolute;
  7028. left:0px;
  7029. top:0px;
  7030. width:34px;
  7031. height:25px;
  7032. padding:2px 2px 2px 2px;
  7033. font-family:'Microsoft YaHei', sans-serif;
  7034. font-weight:400;
  7035. font-style:normal;
  7036. font-size:13px;
  7037. letter-spacing:normal;
  7038. color:#000000;
  7039. vertical-align:none;
  7040. text-align:left;
  7041. text-transform:none;
  7042. background-color:transparent;
  7043. border-color:transparent;
  7044. }
  7045. #u24984_div {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:0px;
  7049. top:0px;
  7050. width:34px;
  7051. height:25px;
  7052. background:inherit;
  7053. background-color:rgba(255, 255, 255, 1);
  7054. border:none;
  7055. border-radius:0px;
  7056. -moz-box-shadow:none;
  7057. -webkit-box-shadow:none;
  7058. box-shadow:none;
  7059. font-family:'Microsoft YaHei', sans-serif;
  7060. font-weight:400;
  7061. font-style:normal;
  7062. }
  7063. #u24984 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:1441px;
  7067. top:628px;
  7068. width:34px;
  7069. height:25px;
  7070. display:flex;
  7071. font-family:'Microsoft YaHei', sans-serif;
  7072. font-weight:400;
  7073. font-style:normal;
  7074. }
  7075. #u24984 .text {
  7076. position:absolute;
  7077. align-self:center;
  7078. padding:2px 2px 2px 2px;
  7079. box-sizing:border-box;
  7080. width:100%;
  7081. }
  7082. #u24984_div.disabled {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:0px;
  7086. top:0px;
  7087. width:34px;
  7088. height:25px;
  7089. background:inherit;
  7090. background-color:rgba(240, 240, 240, 1);
  7091. border:none;
  7092. border-radius:0px;
  7093. -moz-box-shadow:none;
  7094. -webkit-box-shadow:none;
  7095. box-shadow:none;
  7096. font-family:'Microsoft YaHei', sans-serif;
  7097. font-weight:400;
  7098. font-style:normal;
  7099. }
  7100. #u24984.disabled {
  7101. }
  7102. #u24985 {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:0px;
  7106. top:0px;
  7107. width:0px;
  7108. height:0px;
  7109. }
  7110. #u24986_div {
  7111. border-width:0px;
  7112. position:absolute;
  7113. left:0px;
  7114. top:0px;
  7115. width:140px;
  7116. height:28px;
  7117. background:inherit;
  7118. background-color:rgba(255, 255, 255, 1);
  7119. box-sizing:border-box;
  7120. border-width:1px;
  7121. border-style:solid;
  7122. border-color:rgba(201, 201, 201, 1);
  7123. border-radius:4px;
  7124. -moz-box-shadow:none;
  7125. -webkit-box-shadow:none;
  7126. box-shadow:none;
  7127. font-family:'Microsoft YaHei', sans-serif;
  7128. font-weight:400;
  7129. font-style:normal;
  7130. font-size:14px;
  7131. color:#CCCCCC;
  7132. text-align:left;
  7133. }
  7134. #u24986 {
  7135. border-width:0px;
  7136. position:absolute;
  7137. left:528px;
  7138. top:125px;
  7139. width:140px;
  7140. height:28px;
  7141. display:flex;
  7142. font-family:'Microsoft YaHei', sans-serif;
  7143. font-weight:400;
  7144. font-style:normal;
  7145. font-size:14px;
  7146. color:#CCCCCC;
  7147. text-align:left;
  7148. }
  7149. #u24986 .text {
  7150. position:absolute;
  7151. align-self:center;
  7152. padding:2px 8px 2px 8px;
  7153. box-sizing:border-box;
  7154. width:100%;
  7155. }
  7156. #u24986_text {
  7157. border-width:0px;
  7158. word-wrap:break-word;
  7159. text-transform:none;
  7160. visibility:hidden;
  7161. }
  7162. #u24987_input {
  7163. position:absolute;
  7164. left:0px;
  7165. top:0px;
  7166. width:114px;
  7167. height:26px;
  7168. padding:2px 2px 2px 2px;
  7169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7170. font-weight:400;
  7171. font-style:normal;
  7172. font-size:14px;
  7173. letter-spacing:normal;
  7174. color:#000000;
  7175. vertical-align:none;
  7176. text-align:left;
  7177. text-transform:none;
  7178. background-color:transparent;
  7179. border-color:transparent;
  7180. }
  7181. #u24987_input.disabled {
  7182. position:absolute;
  7183. left:0px;
  7184. top:0px;
  7185. width:114px;
  7186. height:26px;
  7187. padding:2px 2px 2px 2px;
  7188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7189. font-weight:400;
  7190. font-style:normal;
  7191. font-size:14px;
  7192. letter-spacing:normal;
  7193. color:#000000;
  7194. vertical-align:none;
  7195. text-align:left;
  7196. text-transform:none;
  7197. background-color:transparent;
  7198. border-color:transparent;
  7199. }
  7200. #u24987_div {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:0px;
  7204. top:0px;
  7205. width:114px;
  7206. height:26px;
  7207. background:inherit;
  7208. background-color:rgba(255, 255, 255, 1);
  7209. border:none;
  7210. border-radius:0px;
  7211. -moz-box-shadow:none;
  7212. -webkit-box-shadow:none;
  7213. box-shadow:none;
  7214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7215. font-weight:400;
  7216. font-style:normal;
  7217. font-size:14px;
  7218. }
  7219. #u24987 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:534px;
  7223. top:126px;
  7224. width:114px;
  7225. height:26px;
  7226. display:flex;
  7227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7228. font-weight:400;
  7229. font-style:normal;
  7230. font-size:14px;
  7231. }
  7232. #u24987 .text {
  7233. position:absolute;
  7234. align-self:center;
  7235. padding:2px 2px 2px 2px;
  7236. box-sizing:border-box;
  7237. width:100%;
  7238. }
  7239. #u24987_div.disabled {
  7240. border-width:0px;
  7241. position:absolute;
  7242. left:0px;
  7243. top:0px;
  7244. width:114px;
  7245. height:26px;
  7246. background:inherit;
  7247. background-color:rgba(240, 240, 240, 1);
  7248. border:none;
  7249. border-radius:0px;
  7250. -moz-box-shadow:none;
  7251. -webkit-box-shadow:none;
  7252. box-shadow:none;
  7253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7254. font-weight:400;
  7255. font-style:normal;
  7256. font-size:14px;
  7257. }
  7258. #u24987.disabled {
  7259. }
  7260. #u24988_img {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:13px;
  7266. height:15px;
  7267. }
  7268. #u24988 {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:648px;
  7272. top:132px;
  7273. width:13px;
  7274. height:15px;
  7275. display:flex;
  7276. }
  7277. #u24988 .text {
  7278. position:absolute;
  7279. align-self:center;
  7280. padding:2px 2px 2px 2px;
  7281. box-sizing:border-box;
  7282. width:100%;
  7283. }
  7284. #u24988_text {
  7285. border-width:0px;
  7286. word-wrap:break-word;
  7287. text-transform:none;
  7288. visibility:hidden;
  7289. }
  7290. #u24989 {
  7291. border-width:0px;
  7292. position:absolute;
  7293. left:0px;
  7294. top:0px;
  7295. width:0px;
  7296. height:0px;
  7297. }
  7298. #u24990_div {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:0px;
  7302. top:0px;
  7303. width:140px;
  7304. height:30px;
  7305. background:inherit;
  7306. background-color:rgba(255, 255, 255, 1);
  7307. box-sizing:border-box;
  7308. border-width:1px;
  7309. border-style:solid;
  7310. border-color:rgba(201, 201, 201, 1);
  7311. border-radius:4px;
  7312. -moz-box-shadow:none;
  7313. -webkit-box-shadow:none;
  7314. box-shadow:none;
  7315. font-family:'Microsoft YaHei', sans-serif;
  7316. font-weight:400;
  7317. font-style:normal;
  7318. font-size:14px;
  7319. color:#CCCCCC;
  7320. text-align:left;
  7321. }
  7322. #u24990 {
  7323. border-width:0px;
  7324. position:absolute;
  7325. left:378px;
  7326. top:124px;
  7327. width:140px;
  7328. height:30px;
  7329. display:flex;
  7330. font-family:'Microsoft YaHei', sans-serif;
  7331. font-weight:400;
  7332. font-style:normal;
  7333. font-size:14px;
  7334. color:#CCCCCC;
  7335. text-align:left;
  7336. }
  7337. #u24990 .text {
  7338. position:absolute;
  7339. align-self:center;
  7340. padding:2px 8px 2px 8px;
  7341. box-sizing:border-box;
  7342. width:100%;
  7343. }
  7344. #u24990_text {
  7345. border-width:0px;
  7346. word-wrap:break-word;
  7347. text-transform:none;
  7348. visibility:hidden;
  7349. }
  7350. #u24991_input {
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:127px;
  7355. height:25px;
  7356. padding:2px 2px 2px 2px;
  7357. font-family:'Microsoft YaHei', sans-serif;
  7358. font-weight:400;
  7359. font-style:normal;
  7360. font-size:10px;
  7361. letter-spacing:normal;
  7362. color:#000000;
  7363. vertical-align:none;
  7364. text-align:left;
  7365. text-transform:none;
  7366. background-color:transparent;
  7367. border-color:transparent;
  7368. }
  7369. #u24991_input.disabled {
  7370. position:absolute;
  7371. left:0px;
  7372. top:0px;
  7373. width:127px;
  7374. height:25px;
  7375. padding:2px 2px 2px 2px;
  7376. font-family:'Microsoft YaHei', sans-serif;
  7377. font-weight:400;
  7378. font-style:normal;
  7379. font-size:10px;
  7380. letter-spacing:normal;
  7381. color:#000000;
  7382. vertical-align:none;
  7383. text-align:left;
  7384. text-transform:none;
  7385. background-color:transparent;
  7386. border-color:transparent;
  7387. }
  7388. #u24991_div {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:0px;
  7392. top:0px;
  7393. width:127px;
  7394. height:25px;
  7395. background:inherit;
  7396. background-color:rgba(255, 255, 255, 1);
  7397. border:none;
  7398. border-radius:0px;
  7399. -moz-box-shadow:none;
  7400. -webkit-box-shadow:none;
  7401. box-shadow:none;
  7402. font-family:'Microsoft YaHei', sans-serif;
  7403. font-weight:400;
  7404. font-style:normal;
  7405. font-size:10px;
  7406. }
  7407. #u24991 {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:386px;
  7411. top:125px;
  7412. width:127px;
  7413. height:25px;
  7414. display:flex;
  7415. font-family:'Microsoft YaHei', sans-serif;
  7416. font-weight:400;
  7417. font-style:normal;
  7418. font-size:10px;
  7419. }
  7420. #u24991 .text {
  7421. position:absolute;
  7422. align-self:center;
  7423. padding:2px 2px 2px 2px;
  7424. box-sizing:border-box;
  7425. width:100%;
  7426. }
  7427. #u24991_div.disabled {
  7428. border-width:0px;
  7429. position:absolute;
  7430. left:0px;
  7431. top:0px;
  7432. width:127px;
  7433. height:25px;
  7434. background:inherit;
  7435. background-color:rgba(240, 240, 240, 1);
  7436. border:none;
  7437. border-radius:0px;
  7438. -moz-box-shadow:none;
  7439. -webkit-box-shadow:none;
  7440. box-shadow:none;
  7441. font-family:'Microsoft YaHei', sans-serif;
  7442. font-weight:400;
  7443. font-style:normal;
  7444. font-size:10px;
  7445. }
  7446. #u24991.disabled {
  7447. }
  7448. #u24992 {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:0px;
  7452. top:0px;
  7453. width:0px;
  7454. height:0px;
  7455. }
  7456. #u24993_div {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:0px;
  7460. top:0px;
  7461. width:140px;
  7462. height:30px;
  7463. background:inherit;
  7464. background-color:rgba(255, 255, 255, 1);
  7465. box-sizing:border-box;
  7466. border-width:1px;
  7467. border-style:solid;
  7468. border-color:rgba(215, 215, 215, 1);
  7469. border-radius:4px;
  7470. -moz-box-shadow:none;
  7471. -webkit-box-shadow:none;
  7472. box-shadow:none;
  7473. font-size:11px;
  7474. }
  7475. #u24993 {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:228px;
  7479. top:125px;
  7480. width:140px;
  7481. height:30px;
  7482. display:flex;
  7483. font-size:11px;
  7484. }
  7485. #u24993 .text {
  7486. position:absolute;
  7487. align-self:center;
  7488. padding:2px 2px 2px 2px;
  7489. box-sizing:border-box;
  7490. width:100%;
  7491. }
  7492. #u24993_text {
  7493. border-width:0px;
  7494. word-wrap:break-word;
  7495. text-transform:none;
  7496. visibility:hidden;
  7497. }
  7498. #u24994_input {
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:126px;
  7503. height:23px;
  7504. padding:2px 2px 2px 2px;
  7505. font-family:'ArialMT', 'Arial', sans-serif;
  7506. font-weight:400;
  7507. font-style:normal;
  7508. font-size:11px;
  7509. letter-spacing:normal;
  7510. color:#AAAAAA;
  7511. vertical-align:none;
  7512. text-align:left;
  7513. text-transform:none;
  7514. background-color:transparent;
  7515. border-color:transparent;
  7516. }
  7517. #u24994_input.disabled {
  7518. position:absolute;
  7519. left:0px;
  7520. top:0px;
  7521. width:126px;
  7522. height:23px;
  7523. padding:2px 2px 2px 2px;
  7524. font-family:'ArialMT', 'Arial', sans-serif;
  7525. font-weight:400;
  7526. font-style:normal;
  7527. font-size:11px;
  7528. letter-spacing:normal;
  7529. color:#AAAAAA;
  7530. vertical-align:none;
  7531. text-align:left;
  7532. text-transform:none;
  7533. background-color:transparent;
  7534. border-color:transparent;
  7535. }
  7536. #u24994_div {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:0px;
  7540. top:0px;
  7541. width:126px;
  7542. height:23px;
  7543. background:inherit;
  7544. background-color:rgba(255, 255, 255, 1);
  7545. border:none;
  7546. border-radius:0px;
  7547. -moz-box-shadow:none;
  7548. -webkit-box-shadow:none;
  7549. box-shadow:none;
  7550. font-size:11px;
  7551. color:#AAAAAA;
  7552. }
  7553. #u24994 {
  7554. border-width:0px;
  7555. position:absolute;
  7556. left:235px;
  7557. top:127px;
  7558. width:126px;
  7559. height:23px;
  7560. display:flex;
  7561. font-size:11px;
  7562. color:#AAAAAA;
  7563. }
  7564. #u24994 .text {
  7565. position:absolute;
  7566. align-self:flex-start;
  7567. padding:2px 2px 2px 2px;
  7568. box-sizing:border-box;
  7569. width:100%;
  7570. }
  7571. #u24994_div.disabled {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:0px;
  7575. top:0px;
  7576. width:126px;
  7577. height:23px;
  7578. background:inherit;
  7579. background-color:rgba(240, 240, 240, 1);
  7580. border:none;
  7581. border-radius:0px;
  7582. -moz-box-shadow:none;
  7583. -webkit-box-shadow:none;
  7584. box-shadow:none;
  7585. font-size:11px;
  7586. color:#AAAAAA;
  7587. }
  7588. #u24994.disabled {
  7589. }
  7590. .u24994_input_option {
  7591. font-size:11px;
  7592. }
  7593. #u24995 {
  7594. border-width:0px;
  7595. position:absolute;
  7596. left:0px;
  7597. top:0px;
  7598. width:0px;
  7599. height:0px;
  7600. }
  7601. #u24996_div {
  7602. border-width:0px;
  7603. position:absolute;
  7604. left:0px;
  7605. top:0px;
  7606. width:140px;
  7607. height:30px;
  7608. background:inherit;
  7609. background-color:rgba(255, 255, 255, 1);
  7610. box-sizing:border-box;
  7611. border-width:1px;
  7612. border-style:solid;
  7613. border-color:rgba(201, 201, 201, 1);
  7614. border-radius:4px;
  7615. -moz-box-shadow:none;
  7616. -webkit-box-shadow:none;
  7617. box-shadow:none;
  7618. font-family:'Microsoft YaHei', sans-serif;
  7619. font-weight:400;
  7620. font-style:normal;
  7621. font-size:14px;
  7622. color:#CCCCCC;
  7623. text-align:left;
  7624. }
  7625. #u24996 {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:678px;
  7629. top:124px;
  7630. width:140px;
  7631. height:30px;
  7632. display:flex;
  7633. font-family:'Microsoft YaHei', sans-serif;
  7634. font-weight:400;
  7635. font-style:normal;
  7636. font-size:14px;
  7637. color:#CCCCCC;
  7638. text-align:left;
  7639. }
  7640. #u24996 .text {
  7641. position:absolute;
  7642. align-self:center;
  7643. padding:2px 8px 2px 8px;
  7644. box-sizing:border-box;
  7645. width:100%;
  7646. }
  7647. #u24996_text {
  7648. border-width:0px;
  7649. word-wrap:break-word;
  7650. text-transform:none;
  7651. visibility:hidden;
  7652. }
  7653. #u24997_input {
  7654. position:absolute;
  7655. left:0px;
  7656. top:0px;
  7657. width:127px;
  7658. height:25px;
  7659. padding:2px 2px 2px 2px;
  7660. font-family:'Microsoft YaHei', sans-serif;
  7661. font-weight:400;
  7662. font-style:normal;
  7663. font-size:10px;
  7664. letter-spacing:normal;
  7665. color:#000000;
  7666. vertical-align:none;
  7667. text-align:left;
  7668. text-transform:none;
  7669. background-color:transparent;
  7670. border-color:transparent;
  7671. }
  7672. #u24997_input.disabled {
  7673. position:absolute;
  7674. left:0px;
  7675. top:0px;
  7676. width:127px;
  7677. height:25px;
  7678. padding:2px 2px 2px 2px;
  7679. font-family:'Microsoft YaHei', sans-serif;
  7680. font-weight:400;
  7681. font-style:normal;
  7682. font-size:10px;
  7683. letter-spacing:normal;
  7684. color:#000000;
  7685. vertical-align:none;
  7686. text-align:left;
  7687. text-transform:none;
  7688. background-color:transparent;
  7689. border-color:transparent;
  7690. }
  7691. #u24997_div {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:0px;
  7695. top:0px;
  7696. width:127px;
  7697. height:25px;
  7698. background:inherit;
  7699. background-color:rgba(255, 255, 255, 1);
  7700. border:none;
  7701. border-radius:0px;
  7702. -moz-box-shadow:none;
  7703. -webkit-box-shadow:none;
  7704. box-shadow:none;
  7705. font-family:'Microsoft YaHei', sans-serif;
  7706. font-weight:400;
  7707. font-style:normal;
  7708. font-size:10px;
  7709. }
  7710. #u24997 {
  7711. border-width:0px;
  7712. position:absolute;
  7713. left:686px;
  7714. top:125px;
  7715. width:127px;
  7716. height:25px;
  7717. display:flex;
  7718. font-family:'Microsoft YaHei', sans-serif;
  7719. font-weight:400;
  7720. font-style:normal;
  7721. font-size:10px;
  7722. }
  7723. #u24997 .text {
  7724. position:absolute;
  7725. align-self:center;
  7726. padding:2px 2px 2px 2px;
  7727. box-sizing:border-box;
  7728. width:100%;
  7729. }
  7730. #u24997_div.disabled {
  7731. border-width:0px;
  7732. position:absolute;
  7733. left:0px;
  7734. top:0px;
  7735. width:127px;
  7736. height:25px;
  7737. background:inherit;
  7738. background-color:rgba(240, 240, 240, 1);
  7739. border:none;
  7740. border-radius:0px;
  7741. -moz-box-shadow:none;
  7742. -webkit-box-shadow:none;
  7743. box-shadow:none;
  7744. font-family:'Microsoft YaHei', sans-serif;
  7745. font-weight:400;
  7746. font-style:normal;
  7747. font-size:10px;
  7748. }
  7749. #u24997.disabled {
  7750. }
  7751. #u24998 {
  7752. border-width:0px;
  7753. position:absolute;
  7754. left:0px;
  7755. top:0px;
  7756. width:0px;
  7757. height:0px;
  7758. }
  7759. #u24999_div {
  7760. border-width:0px;
  7761. position:absolute;
  7762. left:0px;
  7763. top:0px;
  7764. width:140px;
  7765. height:30px;
  7766. background:inherit;
  7767. background-color:rgba(255, 255, 255, 1);
  7768. box-sizing:border-box;
  7769. border-width:1px;
  7770. border-style:solid;
  7771. border-color:rgba(201, 201, 201, 1);
  7772. border-radius:4px;
  7773. -moz-box-shadow:none;
  7774. -webkit-box-shadow:none;
  7775. box-shadow:none;
  7776. font-family:'Microsoft YaHei', sans-serif;
  7777. font-weight:400;
  7778. font-style:normal;
  7779. font-size:14px;
  7780. color:#CCCCCC;
  7781. text-align:left;
  7782. }
  7783. #u24999 {
  7784. border-width:0px;
  7785. position:absolute;
  7786. left:378px;
  7787. top:164px;
  7788. width:140px;
  7789. height:30px;
  7790. display:flex;
  7791. font-family:'Microsoft YaHei', sans-serif;
  7792. font-weight:400;
  7793. font-style:normal;
  7794. font-size:14px;
  7795. color:#CCCCCC;
  7796. text-align:left;
  7797. }
  7798. #u24999 .text {
  7799. position:absolute;
  7800. align-self:center;
  7801. padding:2px 8px 2px 8px;
  7802. box-sizing:border-box;
  7803. width:100%;
  7804. }
  7805. #u24999_text {
  7806. border-width:0px;
  7807. word-wrap:break-word;
  7808. text-transform:none;
  7809. visibility:hidden;
  7810. }
  7811. #u25000_input {
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:127px;
  7816. height:25px;
  7817. padding:2px 2px 2px 2px;
  7818. font-family:'Microsoft YaHei', sans-serif;
  7819. font-weight:400;
  7820. font-style:normal;
  7821. font-size:10px;
  7822. letter-spacing:normal;
  7823. color:#000000;
  7824. vertical-align:none;
  7825. text-align:left;
  7826. text-transform:none;
  7827. background-color:transparent;
  7828. border-color:transparent;
  7829. }
  7830. #u25000_input.disabled {
  7831. position:absolute;
  7832. left:0px;
  7833. top:0px;
  7834. width:127px;
  7835. height:25px;
  7836. padding:2px 2px 2px 2px;
  7837. font-family:'Microsoft YaHei', sans-serif;
  7838. font-weight:400;
  7839. font-style:normal;
  7840. font-size:10px;
  7841. letter-spacing:normal;
  7842. color:#000000;
  7843. vertical-align:none;
  7844. text-align:left;
  7845. text-transform:none;
  7846. background-color:transparent;
  7847. border-color:transparent;
  7848. }
  7849. #u25000_div {
  7850. border-width:0px;
  7851. position:absolute;
  7852. left:0px;
  7853. top:0px;
  7854. width:127px;
  7855. height:25px;
  7856. background:inherit;
  7857. background-color:rgba(255, 255, 255, 1);
  7858. border:none;
  7859. border-radius:0px;
  7860. -moz-box-shadow:none;
  7861. -webkit-box-shadow:none;
  7862. box-shadow:none;
  7863. font-family:'Microsoft YaHei', sans-serif;
  7864. font-weight:400;
  7865. font-style:normal;
  7866. font-size:10px;
  7867. }
  7868. #u25000 {
  7869. border-width:0px;
  7870. position:absolute;
  7871. left:386px;
  7872. top:165px;
  7873. width:127px;
  7874. height:25px;
  7875. display:flex;
  7876. font-family:'Microsoft YaHei', sans-serif;
  7877. font-weight:400;
  7878. font-style:normal;
  7879. font-size:10px;
  7880. }
  7881. #u25000 .text {
  7882. position:absolute;
  7883. align-self:center;
  7884. padding:2px 2px 2px 2px;
  7885. box-sizing:border-box;
  7886. width:100%;
  7887. }
  7888. #u25000_div.disabled {
  7889. border-width:0px;
  7890. position:absolute;
  7891. left:0px;
  7892. top:0px;
  7893. width:127px;
  7894. height:25px;
  7895. background:inherit;
  7896. background-color:rgba(240, 240, 240, 1);
  7897. border:none;
  7898. border-radius:0px;
  7899. -moz-box-shadow:none;
  7900. -webkit-box-shadow:none;
  7901. box-shadow:none;
  7902. font-family:'Microsoft YaHei', sans-serif;
  7903. font-weight:400;
  7904. font-style:normal;
  7905. font-size:10px;
  7906. }
  7907. #u25000.disabled {
  7908. }
  7909. #u25001 {
  7910. border-width:0px;
  7911. position:absolute;
  7912. left:0px;
  7913. top:0px;
  7914. width:0px;
  7915. height:0px;
  7916. }
  7917. #u25002_div {
  7918. border-width:0px;
  7919. position:absolute;
  7920. left:0px;
  7921. top:0px;
  7922. width:140px;
  7923. height:30px;
  7924. background:inherit;
  7925. background-color:rgba(255, 255, 255, 1);
  7926. box-sizing:border-box;
  7927. border-width:1px;
  7928. border-style:solid;
  7929. border-color:rgba(201, 201, 201, 1);
  7930. border-radius:4px;
  7931. -moz-box-shadow:none;
  7932. -webkit-box-shadow:none;
  7933. box-shadow:none;
  7934. font-family:'Microsoft YaHei', sans-serif;
  7935. font-weight:400;
  7936. font-style:normal;
  7937. font-size:14px;
  7938. color:#CCCCCC;
  7939. text-align:left;
  7940. }
  7941. #u25002 {
  7942. border-width:0px;
  7943. position:absolute;
  7944. left:528px;
  7945. top:163px;
  7946. width:140px;
  7947. height:30px;
  7948. display:flex;
  7949. font-family:'Microsoft YaHei', sans-serif;
  7950. font-weight:400;
  7951. font-style:normal;
  7952. font-size:14px;
  7953. color:#CCCCCC;
  7954. text-align:left;
  7955. }
  7956. #u25002 .text {
  7957. position:absolute;
  7958. align-self:center;
  7959. padding:2px 8px 2px 8px;
  7960. box-sizing:border-box;
  7961. width:100%;
  7962. }
  7963. #u25002_text {
  7964. border-width:0px;
  7965. word-wrap:break-word;
  7966. text-transform:none;
  7967. visibility:hidden;
  7968. }
  7969. #u25003_input {
  7970. position:absolute;
  7971. left:0px;
  7972. top:0px;
  7973. width:127px;
  7974. height:25px;
  7975. padding:2px 2px 2px 2px;
  7976. font-family:'Microsoft YaHei', sans-serif;
  7977. font-weight:400;
  7978. font-style:normal;
  7979. font-size:10px;
  7980. letter-spacing:normal;
  7981. color:#000000;
  7982. vertical-align:none;
  7983. text-align:left;
  7984. text-transform:none;
  7985. background-color:transparent;
  7986. border-color:transparent;
  7987. }
  7988. #u25003_input.disabled {
  7989. position:absolute;
  7990. left:0px;
  7991. top:0px;
  7992. width:127px;
  7993. height:25px;
  7994. padding:2px 2px 2px 2px;
  7995. font-family:'Microsoft YaHei', sans-serif;
  7996. font-weight:400;
  7997. font-style:normal;
  7998. font-size:10px;
  7999. letter-spacing:normal;
  8000. color:#000000;
  8001. vertical-align:none;
  8002. text-align:left;
  8003. text-transform:none;
  8004. background-color:transparent;
  8005. border-color:transparent;
  8006. }
  8007. #u25003_div {
  8008. border-width:0px;
  8009. position:absolute;
  8010. left:0px;
  8011. top:0px;
  8012. width:127px;
  8013. height:25px;
  8014. background:inherit;
  8015. background-color:rgba(255, 255, 255, 1);
  8016. border:none;
  8017. border-radius:0px;
  8018. -moz-box-shadow:none;
  8019. -webkit-box-shadow:none;
  8020. box-shadow:none;
  8021. font-family:'Microsoft YaHei', sans-serif;
  8022. font-weight:400;
  8023. font-style:normal;
  8024. font-size:10px;
  8025. }
  8026. #u25003 {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:536px;
  8030. top:164px;
  8031. width:127px;
  8032. height:25px;
  8033. display:flex;
  8034. font-family:'Microsoft YaHei', sans-serif;
  8035. font-weight:400;
  8036. font-style:normal;
  8037. font-size:10px;
  8038. }
  8039. #u25003 .text {
  8040. position:absolute;
  8041. align-self:center;
  8042. padding:2px 2px 2px 2px;
  8043. box-sizing:border-box;
  8044. width:100%;
  8045. }
  8046. #u25003_div.disabled {
  8047. border-width:0px;
  8048. position:absolute;
  8049. left:0px;
  8050. top:0px;
  8051. width:127px;
  8052. height:25px;
  8053. background:inherit;
  8054. background-color:rgba(240, 240, 240, 1);
  8055. border:none;
  8056. border-radius:0px;
  8057. -moz-box-shadow:none;
  8058. -webkit-box-shadow:none;
  8059. box-shadow:none;
  8060. font-family:'Microsoft YaHei', sans-serif;
  8061. font-weight:400;
  8062. font-style:normal;
  8063. font-size:10px;
  8064. }
  8065. #u25003.disabled {
  8066. }
  8067. #u25004 {
  8068. border-width:0px;
  8069. position:absolute;
  8070. left:0px;
  8071. top:0px;
  8072. width:0px;
  8073. height:0px;
  8074. }
  8075. #u25005_div {
  8076. border-width:0px;
  8077. position:absolute;
  8078. left:0px;
  8079. top:0px;
  8080. width:140px;
  8081. height:30px;
  8082. background:inherit;
  8083. background-color:rgba(255, 255, 255, 1);
  8084. box-sizing:border-box;
  8085. border-width:1px;
  8086. border-style:solid;
  8087. border-color:rgba(215, 215, 215, 1);
  8088. border-radius:4px;
  8089. -moz-box-shadow:none;
  8090. -webkit-box-shadow:none;
  8091. box-shadow:none;
  8092. font-size:11px;
  8093. }
  8094. #u25005 {
  8095. border-width:0px;
  8096. position:absolute;
  8097. left:978px;
  8098. top:125px;
  8099. width:140px;
  8100. height:30px;
  8101. display:flex;
  8102. font-size:11px;
  8103. }
  8104. #u25005 .text {
  8105. position:absolute;
  8106. align-self:center;
  8107. padding:2px 2px 2px 2px;
  8108. box-sizing:border-box;
  8109. width:100%;
  8110. }
  8111. #u25005_text {
  8112. border-width:0px;
  8113. word-wrap:break-word;
  8114. text-transform:none;
  8115. visibility:hidden;
  8116. }
  8117. #u25006_input {
  8118. position:absolute;
  8119. left:0px;
  8120. top:0px;
  8121. width:126px;
  8122. height:23px;
  8123. padding:2px 2px 2px 2px;
  8124. font-family:'ArialMT', 'Arial', sans-serif;
  8125. font-weight:400;
  8126. font-style:normal;
  8127. font-size:11px;
  8128. letter-spacing:normal;
  8129. color:#AAAAAA;
  8130. vertical-align:none;
  8131. text-align:left;
  8132. text-transform:none;
  8133. background-color:transparent;
  8134. border-color:transparent;
  8135. }
  8136. #u25006_input.disabled {
  8137. position:absolute;
  8138. left:0px;
  8139. top:0px;
  8140. width:126px;
  8141. height:23px;
  8142. padding:2px 2px 2px 2px;
  8143. font-family:'ArialMT', 'Arial', sans-serif;
  8144. font-weight:400;
  8145. font-style:normal;
  8146. font-size:11px;
  8147. letter-spacing:normal;
  8148. color:#AAAAAA;
  8149. vertical-align:none;
  8150. text-align:left;
  8151. text-transform:none;
  8152. background-color:transparent;
  8153. border-color:transparent;
  8154. }
  8155. #u25006_div {
  8156. border-width:0px;
  8157. position:absolute;
  8158. left:0px;
  8159. top:0px;
  8160. width:126px;
  8161. height:23px;
  8162. background:inherit;
  8163. background-color:rgba(255, 255, 255, 1);
  8164. border:none;
  8165. border-radius:0px;
  8166. -moz-box-shadow:none;
  8167. -webkit-box-shadow:none;
  8168. box-shadow:none;
  8169. font-size:11px;
  8170. color:#AAAAAA;
  8171. }
  8172. #u25006 {
  8173. border-width:0px;
  8174. position:absolute;
  8175. left:985px;
  8176. top:127px;
  8177. width:126px;
  8178. height:23px;
  8179. display:flex;
  8180. font-size:11px;
  8181. color:#AAAAAA;
  8182. }
  8183. #u25006 .text {
  8184. position:absolute;
  8185. align-self:flex-start;
  8186. padding:2px 2px 2px 2px;
  8187. box-sizing:border-box;
  8188. width:100%;
  8189. }
  8190. #u25006_div.disabled {
  8191. border-width:0px;
  8192. position:absolute;
  8193. left:0px;
  8194. top:0px;
  8195. width:126px;
  8196. height:23px;
  8197. background:inherit;
  8198. background-color:rgba(240, 240, 240, 1);
  8199. border:none;
  8200. border-radius:0px;
  8201. -moz-box-shadow:none;
  8202. -webkit-box-shadow:none;
  8203. box-shadow:none;
  8204. font-size:11px;
  8205. color:#AAAAAA;
  8206. }
  8207. #u25006.disabled {
  8208. }
  8209. .u25006_input_option {
  8210. font-size:11px;
  8211. }
  8212. #u25007_div {
  8213. border-width:0px;
  8214. position:absolute;
  8215. left:0px;
  8216. top:0px;
  8217. width:55px;
  8218. height:30px;
  8219. background:inherit;
  8220. background-color:rgba(255, 255, 255, 1);
  8221. box-sizing:border-box;
  8222. border-width:1px;
  8223. border-style:solid;
  8224. border-color:rgba(170, 170, 170, 1);
  8225. border-radius:4px;
  8226. -moz-box-shadow:none;
  8227. -webkit-box-shadow:none;
  8228. box-shadow:none;
  8229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8230. font-weight:400;
  8231. font-style:normal;
  8232. font-size:12px;
  8233. color:#555555;
  8234. }
  8235. #u25007 {
  8236. border-width:0px;
  8237. position:absolute;
  8238. left:341px;
  8239. top:255px;
  8240. width:55px;
  8241. height:30px;
  8242. display:flex;
  8243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8244. font-weight:400;
  8245. font-style:normal;
  8246. font-size:12px;
  8247. color:#555555;
  8248. }
  8249. #u25007 .text {
  8250. position:absolute;
  8251. align-self:center;
  8252. padding:5px 15px 5px 15px;
  8253. box-sizing:border-box;
  8254. width:100%;
  8255. }
  8256. #u25007_text {
  8257. border-width:0px;
  8258. white-space:nowrap;
  8259. text-transform:none;
  8260. }
  8261. #u25008 {
  8262. border-width:0px;
  8263. position:absolute;
  8264. left:0px;
  8265. top:0px;
  8266. width:0px;
  8267. height:0px;
  8268. }
  8269. #u25009_div {
  8270. border-width:0px;
  8271. position:absolute;
  8272. left:0px;
  8273. top:0px;
  8274. width:140px;
  8275. height:30px;
  8276. background:inherit;
  8277. background-color:rgba(255, 255, 255, 1);
  8278. box-sizing:border-box;
  8279. border-width:1px;
  8280. border-style:solid;
  8281. border-color:rgba(201, 201, 201, 1);
  8282. border-radius:4px;
  8283. -moz-box-shadow:none;
  8284. -webkit-box-shadow:none;
  8285. box-shadow:none;
  8286. font-family:'Microsoft YaHei', sans-serif;
  8287. font-weight:400;
  8288. font-style:normal;
  8289. font-size:14px;
  8290. color:#CCCCCC;
  8291. text-align:left;
  8292. }
  8293. #u25009 {
  8294. border-width:0px;
  8295. position:absolute;
  8296. left:678px;
  8297. top:162px;
  8298. width:140px;
  8299. height:30px;
  8300. display:flex;
  8301. font-family:'Microsoft YaHei', sans-serif;
  8302. font-weight:400;
  8303. font-style:normal;
  8304. font-size:14px;
  8305. color:#CCCCCC;
  8306. text-align:left;
  8307. }
  8308. #u25009 .text {
  8309. position:absolute;
  8310. align-self:center;
  8311. padding:2px 8px 2px 8px;
  8312. box-sizing:border-box;
  8313. width:100%;
  8314. }
  8315. #u25009_text {
  8316. border-width:0px;
  8317. word-wrap:break-word;
  8318. text-transform:none;
  8319. visibility:hidden;
  8320. }
  8321. #u25010_input {
  8322. position:absolute;
  8323. left:0px;
  8324. top:0px;
  8325. width:127px;
  8326. height:25px;
  8327. padding:2px 2px 2px 2px;
  8328. font-family:'Microsoft YaHei', sans-serif;
  8329. font-weight:400;
  8330. font-style:normal;
  8331. font-size:10px;
  8332. letter-spacing:normal;
  8333. color:#000000;
  8334. vertical-align:none;
  8335. text-align:left;
  8336. text-transform:none;
  8337. background-color:transparent;
  8338. border-color:transparent;
  8339. }
  8340. #u25010_input.disabled {
  8341. position:absolute;
  8342. left:0px;
  8343. top:0px;
  8344. width:127px;
  8345. height:25px;
  8346. padding:2px 2px 2px 2px;
  8347. font-family:'Microsoft YaHei', sans-serif;
  8348. font-weight:400;
  8349. font-style:normal;
  8350. font-size:10px;
  8351. letter-spacing:normal;
  8352. color:#000000;
  8353. vertical-align:none;
  8354. text-align:left;
  8355. text-transform:none;
  8356. background-color:transparent;
  8357. border-color:transparent;
  8358. }
  8359. #u25010_div {
  8360. border-width:0px;
  8361. position:absolute;
  8362. left:0px;
  8363. top:0px;
  8364. width:127px;
  8365. height:25px;
  8366. background:inherit;
  8367. background-color:rgba(255, 255, 255, 1);
  8368. border:none;
  8369. border-radius:0px;
  8370. -moz-box-shadow:none;
  8371. -webkit-box-shadow:none;
  8372. box-shadow:none;
  8373. font-family:'Microsoft YaHei', sans-serif;
  8374. font-weight:400;
  8375. font-style:normal;
  8376. font-size:10px;
  8377. }
  8378. #u25010 {
  8379. border-width:0px;
  8380. position:absolute;
  8381. left:686px;
  8382. top:163px;
  8383. width:127px;
  8384. height:25px;
  8385. display:flex;
  8386. font-family:'Microsoft YaHei', sans-serif;
  8387. font-weight:400;
  8388. font-style:normal;
  8389. font-size:10px;
  8390. }
  8391. #u25010 .text {
  8392. position:absolute;
  8393. align-self:center;
  8394. padding:2px 2px 2px 2px;
  8395. box-sizing:border-box;
  8396. width:100%;
  8397. }
  8398. #u25010_div.disabled {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:0px;
  8402. top:0px;
  8403. width:127px;
  8404. height:25px;
  8405. background:inherit;
  8406. background-color:rgba(240, 240, 240, 1);
  8407. border:none;
  8408. border-radius:0px;
  8409. -moz-box-shadow:none;
  8410. -webkit-box-shadow:none;
  8411. box-shadow:none;
  8412. font-family:'Microsoft YaHei', sans-serif;
  8413. font-weight:400;
  8414. font-style:normal;
  8415. font-size:10px;
  8416. }
  8417. #u25010.disabled {
  8418. }
  8419. #u25011 {
  8420. border-width:0px;
  8421. position:absolute;
  8422. left:0px;
  8423. top:0px;
  8424. width:0px;
  8425. height:0px;
  8426. }
  8427. #u25012_div {
  8428. border-width:0px;
  8429. position:absolute;
  8430. left:0px;
  8431. top:0px;
  8432. width:140px;
  8433. height:30px;
  8434. background:inherit;
  8435. background-color:rgba(255, 255, 255, 1);
  8436. box-sizing:border-box;
  8437. border-width:1px;
  8438. border-style:solid;
  8439. border-color:rgba(201, 201, 201, 1);
  8440. border-radius:4px;
  8441. -moz-box-shadow:none;
  8442. -webkit-box-shadow:none;
  8443. box-shadow:none;
  8444. font-family:'Microsoft YaHei', sans-serif;
  8445. font-weight:400;
  8446. font-style:normal;
  8447. font-size:14px;
  8448. color:#CCCCCC;
  8449. text-align:left;
  8450. }
  8451. #u25012 {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:1128px;
  8455. top:162px;
  8456. width:140px;
  8457. height:30px;
  8458. display:flex;
  8459. font-family:'Microsoft YaHei', sans-serif;
  8460. font-weight:400;
  8461. font-style:normal;
  8462. font-size:14px;
  8463. color:#CCCCCC;
  8464. text-align:left;
  8465. }
  8466. #u25012 .text {
  8467. position:absolute;
  8468. align-self:center;
  8469. padding:2px 8px 2px 8px;
  8470. box-sizing:border-box;
  8471. width:100%;
  8472. }
  8473. #u25012_text {
  8474. border-width:0px;
  8475. word-wrap:break-word;
  8476. text-transform:none;
  8477. visibility:hidden;
  8478. }
  8479. #u25013_input {
  8480. position:absolute;
  8481. left:0px;
  8482. top:0px;
  8483. width:127px;
  8484. height:25px;
  8485. padding:2px 2px 2px 2px;
  8486. font-family:'Microsoft YaHei', sans-serif;
  8487. font-weight:400;
  8488. font-style:normal;
  8489. font-size:10px;
  8490. letter-spacing:normal;
  8491. color:#000000;
  8492. vertical-align:none;
  8493. text-align:left;
  8494. text-transform:none;
  8495. background-color:transparent;
  8496. border-color:transparent;
  8497. }
  8498. #u25013_input.disabled {
  8499. position:absolute;
  8500. left:0px;
  8501. top:0px;
  8502. width:127px;
  8503. height:25px;
  8504. padding:2px 2px 2px 2px;
  8505. font-family:'Microsoft YaHei', sans-serif;
  8506. font-weight:400;
  8507. font-style:normal;
  8508. font-size:10px;
  8509. letter-spacing:normal;
  8510. color:#000000;
  8511. vertical-align:none;
  8512. text-align:left;
  8513. text-transform:none;
  8514. background-color:transparent;
  8515. border-color:transparent;
  8516. }
  8517. #u25013_div {
  8518. border-width:0px;
  8519. position:absolute;
  8520. left:0px;
  8521. top:0px;
  8522. width:127px;
  8523. height:25px;
  8524. background:inherit;
  8525. background-color:rgba(255, 255, 255, 1);
  8526. border:none;
  8527. border-radius:0px;
  8528. -moz-box-shadow:none;
  8529. -webkit-box-shadow:none;
  8530. box-shadow:none;
  8531. font-family:'Microsoft YaHei', sans-serif;
  8532. font-weight:400;
  8533. font-style:normal;
  8534. font-size:10px;
  8535. }
  8536. #u25013 {
  8537. border-width:0px;
  8538. position:absolute;
  8539. left:1136px;
  8540. top:163px;
  8541. width:127px;
  8542. height:25px;
  8543. display:flex;
  8544. font-family:'Microsoft YaHei', sans-serif;
  8545. font-weight:400;
  8546. font-style:normal;
  8547. font-size:10px;
  8548. }
  8549. #u25013 .text {
  8550. position:absolute;
  8551. align-self:center;
  8552. padding:2px 2px 2px 2px;
  8553. box-sizing:border-box;
  8554. width:100%;
  8555. }
  8556. #u25013_div.disabled {
  8557. border-width:0px;
  8558. position:absolute;
  8559. left:0px;
  8560. top:0px;
  8561. width:127px;
  8562. height:25px;
  8563. background:inherit;
  8564. background-color:rgba(240, 240, 240, 1);
  8565. border:none;
  8566. border-radius:0px;
  8567. -moz-box-shadow:none;
  8568. -webkit-box-shadow:none;
  8569. box-shadow:none;
  8570. font-family:'Microsoft YaHei', sans-serif;
  8571. font-weight:400;
  8572. font-style:normal;
  8573. font-size:10px;
  8574. }
  8575. #u25013.disabled {
  8576. }
  8577. #u25014 {
  8578. border-width:0px;
  8579. position:absolute;
  8580. left:0px;
  8581. top:0px;
  8582. width:0px;
  8583. height:0px;
  8584. }
  8585. #u25015_div {
  8586. border-width:0px;
  8587. position:absolute;
  8588. left:0px;
  8589. top:0px;
  8590. width:140px;
  8591. height:30px;
  8592. background:inherit;
  8593. background-color:rgba(255, 255, 255, 1);
  8594. box-sizing:border-box;
  8595. border-width:1px;
  8596. border-style:solid;
  8597. border-color:rgba(201, 201, 201, 1);
  8598. border-radius:4px;
  8599. -moz-box-shadow:none;
  8600. -webkit-box-shadow:none;
  8601. box-shadow:none;
  8602. font-family:'Microsoft YaHei', sans-serif;
  8603. font-weight:400;
  8604. font-style:normal;
  8605. font-size:14px;
  8606. color:#CCCCCC;
  8607. text-align:left;
  8608. }
  8609. #u25015 {
  8610. border-width:0px;
  8611. position:absolute;
  8612. left:1278px;
  8613. top:162px;
  8614. width:140px;
  8615. height:30px;
  8616. display:flex;
  8617. font-family:'Microsoft YaHei', sans-serif;
  8618. font-weight:400;
  8619. font-style:normal;
  8620. font-size:14px;
  8621. color:#CCCCCC;
  8622. text-align:left;
  8623. }
  8624. #u25015 .text {
  8625. position:absolute;
  8626. align-self:center;
  8627. padding:2px 8px 2px 8px;
  8628. box-sizing:border-box;
  8629. width:100%;
  8630. }
  8631. #u25015_text {
  8632. border-width:0px;
  8633. word-wrap:break-word;
  8634. text-transform:none;
  8635. visibility:hidden;
  8636. }
  8637. #u25016_input {
  8638. position:absolute;
  8639. left:0px;
  8640. top:0px;
  8641. width:127px;
  8642. height:25px;
  8643. padding:2px 2px 2px 2px;
  8644. font-family:'Microsoft YaHei', sans-serif;
  8645. font-weight:400;
  8646. font-style:normal;
  8647. font-size:10px;
  8648. letter-spacing:normal;
  8649. color:#000000;
  8650. vertical-align:none;
  8651. text-align:left;
  8652. text-transform:none;
  8653. background-color:transparent;
  8654. border-color:transparent;
  8655. }
  8656. #u25016_input.disabled {
  8657. position:absolute;
  8658. left:0px;
  8659. top:0px;
  8660. width:127px;
  8661. height:25px;
  8662. padding:2px 2px 2px 2px;
  8663. font-family:'Microsoft YaHei', sans-serif;
  8664. font-weight:400;
  8665. font-style:normal;
  8666. font-size:10px;
  8667. letter-spacing:normal;
  8668. color:#000000;
  8669. vertical-align:none;
  8670. text-align:left;
  8671. text-transform:none;
  8672. background-color:transparent;
  8673. border-color:transparent;
  8674. }
  8675. #u25016_div {
  8676. border-width:0px;
  8677. position:absolute;
  8678. left:0px;
  8679. top:0px;
  8680. width:127px;
  8681. height:25px;
  8682. background:inherit;
  8683. background-color:rgba(255, 255, 255, 1);
  8684. border:none;
  8685. border-radius:0px;
  8686. -moz-box-shadow:none;
  8687. -webkit-box-shadow:none;
  8688. box-shadow:none;
  8689. font-family:'Microsoft YaHei', sans-serif;
  8690. font-weight:400;
  8691. font-style:normal;
  8692. font-size:10px;
  8693. }
  8694. #u25016 {
  8695. border-width:0px;
  8696. position:absolute;
  8697. left:1286px;
  8698. top:163px;
  8699. width:127px;
  8700. height:25px;
  8701. display:flex;
  8702. font-family:'Microsoft YaHei', sans-serif;
  8703. font-weight:400;
  8704. font-style:normal;
  8705. font-size:10px;
  8706. }
  8707. #u25016 .text {
  8708. position:absolute;
  8709. align-self:center;
  8710. padding:2px 2px 2px 2px;
  8711. box-sizing:border-box;
  8712. width:100%;
  8713. }
  8714. #u25016_div.disabled {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:0px;
  8718. top:0px;
  8719. width:127px;
  8720. height:25px;
  8721. background:inherit;
  8722. background-color:rgba(240, 240, 240, 1);
  8723. border:none;
  8724. border-radius:0px;
  8725. -moz-box-shadow:none;
  8726. -webkit-box-shadow:none;
  8727. box-shadow:none;
  8728. font-family:'Microsoft YaHei', sans-serif;
  8729. font-weight:400;
  8730. font-style:normal;
  8731. font-size:10px;
  8732. }
  8733. #u25016.disabled {
  8734. }
  8735. #u25017 {
  8736. border-width:0px;
  8737. position:absolute;
  8738. left:0px;
  8739. top:0px;
  8740. width:0px;
  8741. height:0px;
  8742. }
  8743. #u25018_div {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:0px;
  8747. top:0px;
  8748. width:140px;
  8749. height:30px;
  8750. background:inherit;
  8751. background-color:rgba(255, 255, 255, 1);
  8752. box-sizing:border-box;
  8753. border-width:1px;
  8754. border-style:solid;
  8755. border-color:rgba(201, 201, 201, 1);
  8756. border-radius:4px;
  8757. -moz-box-shadow:none;
  8758. -webkit-box-shadow:none;
  8759. box-shadow:none;
  8760. font-family:'Microsoft YaHei', sans-serif;
  8761. font-weight:400;
  8762. font-style:normal;
  8763. font-size:14px;
  8764. color:#CCCCCC;
  8765. text-align:left;
  8766. }
  8767. #u25018 {
  8768. border-width:0px;
  8769. position:absolute;
  8770. left:228px;
  8771. top:204px;
  8772. width:140px;
  8773. height:30px;
  8774. display:flex;
  8775. font-family:'Microsoft YaHei', sans-serif;
  8776. font-weight:400;
  8777. font-style:normal;
  8778. font-size:14px;
  8779. color:#CCCCCC;
  8780. text-align:left;
  8781. }
  8782. #u25018 .text {
  8783. position:absolute;
  8784. align-self:center;
  8785. padding:2px 8px 2px 8px;
  8786. box-sizing:border-box;
  8787. width:100%;
  8788. }
  8789. #u25018_text {
  8790. border-width:0px;
  8791. word-wrap:break-word;
  8792. text-transform:none;
  8793. visibility:hidden;
  8794. }
  8795. #u25019_input {
  8796. position:absolute;
  8797. left:0px;
  8798. top:0px;
  8799. width:127px;
  8800. height:25px;
  8801. padding:2px 2px 2px 2px;
  8802. font-family:'Microsoft YaHei', sans-serif;
  8803. font-weight:400;
  8804. font-style:normal;
  8805. font-size:10px;
  8806. letter-spacing:normal;
  8807. color:#000000;
  8808. vertical-align:none;
  8809. text-align:left;
  8810. text-transform:none;
  8811. background-color:transparent;
  8812. border-color:transparent;
  8813. }
  8814. #u25019_input.disabled {
  8815. position:absolute;
  8816. left:0px;
  8817. top:0px;
  8818. width:127px;
  8819. height:25px;
  8820. padding:2px 2px 2px 2px;
  8821. font-family:'Microsoft YaHei', sans-serif;
  8822. font-weight:400;
  8823. font-style:normal;
  8824. font-size:10px;
  8825. letter-spacing:normal;
  8826. color:#000000;
  8827. vertical-align:none;
  8828. text-align:left;
  8829. text-transform:none;
  8830. background-color:transparent;
  8831. border-color:transparent;
  8832. }
  8833. #u25019_div {
  8834. border-width:0px;
  8835. position:absolute;
  8836. left:0px;
  8837. top:0px;
  8838. width:127px;
  8839. height:25px;
  8840. background:inherit;
  8841. background-color:rgba(255, 255, 255, 1);
  8842. border:none;
  8843. border-radius:0px;
  8844. -moz-box-shadow:none;
  8845. -webkit-box-shadow:none;
  8846. box-shadow:none;
  8847. font-family:'Microsoft YaHei', sans-serif;
  8848. font-weight:400;
  8849. font-style:normal;
  8850. font-size:10px;
  8851. }
  8852. #u25019 {
  8853. border-width:0px;
  8854. position:absolute;
  8855. left:236px;
  8856. top:205px;
  8857. width:127px;
  8858. height:25px;
  8859. display:flex;
  8860. font-family:'Microsoft YaHei', sans-serif;
  8861. font-weight:400;
  8862. font-style:normal;
  8863. font-size:10px;
  8864. }
  8865. #u25019 .text {
  8866. position:absolute;
  8867. align-self:center;
  8868. padding:2px 2px 2px 2px;
  8869. box-sizing:border-box;
  8870. width:100%;
  8871. }
  8872. #u25019_div.disabled {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:0px;
  8876. top:0px;
  8877. width:127px;
  8878. height:25px;
  8879. background:inherit;
  8880. background-color:rgba(240, 240, 240, 1);
  8881. border:none;
  8882. border-radius:0px;
  8883. -moz-box-shadow:none;
  8884. -webkit-box-shadow:none;
  8885. box-shadow:none;
  8886. font-family:'Microsoft YaHei', sans-serif;
  8887. font-weight:400;
  8888. font-style:normal;
  8889. font-size:10px;
  8890. }
  8891. #u25019.disabled {
  8892. }
  8893. #u25020 {
  8894. border-width:0px;
  8895. position:absolute;
  8896. left:0px;
  8897. top:0px;
  8898. width:0px;
  8899. height:0px;
  8900. }
  8901. #u25021_div {
  8902. border-width:0px;
  8903. position:absolute;
  8904. left:0px;
  8905. top:0px;
  8906. width:140px;
  8907. height:28px;
  8908. background:inherit;
  8909. background-color:rgba(255, 255, 255, 1);
  8910. box-sizing:border-box;
  8911. border-width:1px;
  8912. border-style:solid;
  8913. border-color:rgba(201, 201, 201, 1);
  8914. border-radius:4px;
  8915. -moz-box-shadow:none;
  8916. -webkit-box-shadow:none;
  8917. box-shadow:none;
  8918. font-family:'Microsoft YaHei', sans-serif;
  8919. font-weight:400;
  8920. font-style:normal;
  8921. font-size:14px;
  8922. color:#CCCCCC;
  8923. text-align:left;
  8924. }
  8925. #u25021 {
  8926. border-width:0px;
  8927. position:absolute;
  8928. left:1428px;
  8929. top:127px;
  8930. width:140px;
  8931. height:28px;
  8932. display:flex;
  8933. font-family:'Microsoft YaHei', sans-serif;
  8934. font-weight:400;
  8935. font-style:normal;
  8936. font-size:14px;
  8937. color:#CCCCCC;
  8938. text-align:left;
  8939. }
  8940. #u25021 .text {
  8941. position:absolute;
  8942. align-self:center;
  8943. padding:2px 8px 2px 8px;
  8944. box-sizing:border-box;
  8945. width:100%;
  8946. }
  8947. #u25021_text {
  8948. border-width:0px;
  8949. word-wrap:break-word;
  8950. text-transform:none;
  8951. visibility:hidden;
  8952. }
  8953. #u25022_input {
  8954. position:absolute;
  8955. left:0px;
  8956. top:0px;
  8957. width:114px;
  8958. height:26px;
  8959. padding:2px 2px 2px 2px;
  8960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8961. font-weight:400;
  8962. font-style:normal;
  8963. font-size:14px;
  8964. letter-spacing:normal;
  8965. color:#000000;
  8966. vertical-align:none;
  8967. text-align:left;
  8968. text-transform:none;
  8969. background-color:transparent;
  8970. border-color:transparent;
  8971. }
  8972. #u25022_input.disabled {
  8973. position:absolute;
  8974. left:0px;
  8975. top:0px;
  8976. width:114px;
  8977. height:26px;
  8978. padding:2px 2px 2px 2px;
  8979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:14px;
  8983. letter-spacing:normal;
  8984. color:#000000;
  8985. vertical-align:none;
  8986. text-align:left;
  8987. text-transform:none;
  8988. background-color:transparent;
  8989. border-color:transparent;
  8990. }
  8991. #u25022_div {
  8992. border-width:0px;
  8993. position:absolute;
  8994. left:0px;
  8995. top:0px;
  8996. width:114px;
  8997. height:26px;
  8998. background:inherit;
  8999. background-color:rgba(255, 255, 255, 1);
  9000. border:none;
  9001. border-radius:0px;
  9002. -moz-box-shadow:none;
  9003. -webkit-box-shadow:none;
  9004. box-shadow:none;
  9005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9006. font-weight:400;
  9007. font-style:normal;
  9008. font-size:14px;
  9009. }
  9010. #u25022 {
  9011. border-width:0px;
  9012. position:absolute;
  9013. left:1434px;
  9014. top:128px;
  9015. width:114px;
  9016. height:26px;
  9017. display:flex;
  9018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9019. font-weight:400;
  9020. font-style:normal;
  9021. font-size:14px;
  9022. }
  9023. #u25022 .text {
  9024. position:absolute;
  9025. align-self:center;
  9026. padding:2px 2px 2px 2px;
  9027. box-sizing:border-box;
  9028. width:100%;
  9029. }
  9030. #u25022_div.disabled {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:0px;
  9034. top:0px;
  9035. width:114px;
  9036. height:26px;
  9037. background:inherit;
  9038. background-color:rgba(240, 240, 240, 1);
  9039. border:none;
  9040. border-radius:0px;
  9041. -moz-box-shadow:none;
  9042. -webkit-box-shadow:none;
  9043. box-shadow:none;
  9044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9045. font-weight:400;
  9046. font-style:normal;
  9047. font-size:14px;
  9048. }
  9049. #u25022.disabled {
  9050. }
  9051. #u25023_img {
  9052. border-width:0px;
  9053. position:absolute;
  9054. left:0px;
  9055. top:0px;
  9056. width:13px;
  9057. height:15px;
  9058. }
  9059. #u25023 {
  9060. border-width:0px;
  9061. position:absolute;
  9062. left:1548px;
  9063. top:134px;
  9064. width:13px;
  9065. height:15px;
  9066. display:flex;
  9067. }
  9068. #u25023 .text {
  9069. position:absolute;
  9070. align-self:center;
  9071. padding:2px 2px 2px 2px;
  9072. box-sizing:border-box;
  9073. width:100%;
  9074. }
  9075. #u25023_text {
  9076. border-width:0px;
  9077. word-wrap:break-word;
  9078. text-transform:none;
  9079. visibility:hidden;
  9080. }
  9081. #u25024 {
  9082. border-width:0px;
  9083. position:absolute;
  9084. left:0px;
  9085. top:0px;
  9086. width:0px;
  9087. height:0px;
  9088. }
  9089. #u25025_div {
  9090. border-width:0px;
  9091. position:absolute;
  9092. left:0px;
  9093. top:0px;
  9094. width:140px;
  9095. height:30px;
  9096. background:inherit;
  9097. background-color:rgba(255, 255, 255, 1);
  9098. box-sizing:border-box;
  9099. border-width:1px;
  9100. border-style:solid;
  9101. border-color:rgba(215, 215, 215, 1);
  9102. border-radius:4px;
  9103. -moz-box-shadow:none;
  9104. -webkit-box-shadow:none;
  9105. box-shadow:none;
  9106. font-size:11px;
  9107. }
  9108. #u25025 {
  9109. border-width:0px;
  9110. position:absolute;
  9111. left:978px;
  9112. top:163px;
  9113. width:140px;
  9114. height:30px;
  9115. display:flex;
  9116. font-size:11px;
  9117. }
  9118. #u25025 .text {
  9119. position:absolute;
  9120. align-self:center;
  9121. padding:2px 2px 2px 2px;
  9122. box-sizing:border-box;
  9123. width:100%;
  9124. }
  9125. #u25025_text {
  9126. border-width:0px;
  9127. word-wrap:break-word;
  9128. text-transform:none;
  9129. visibility:hidden;
  9130. }
  9131. #u25026_input {
  9132. position:absolute;
  9133. left:0px;
  9134. top:0px;
  9135. width:126px;
  9136. height:23px;
  9137. padding:2px 2px 2px 2px;
  9138. font-family:'ArialMT', 'Arial', sans-serif;
  9139. font-weight:400;
  9140. font-style:normal;
  9141. font-size:11px;
  9142. letter-spacing:normal;
  9143. color:#AAAAAA;
  9144. vertical-align:none;
  9145. text-align:left;
  9146. text-transform:none;
  9147. background-color:transparent;
  9148. border-color:transparent;
  9149. }
  9150. #u25026_input.disabled {
  9151. position:absolute;
  9152. left:0px;
  9153. top:0px;
  9154. width:126px;
  9155. height:23px;
  9156. padding:2px 2px 2px 2px;
  9157. font-family:'ArialMT', 'Arial', sans-serif;
  9158. font-weight:400;
  9159. font-style:normal;
  9160. font-size:11px;
  9161. letter-spacing:normal;
  9162. color:#AAAAAA;
  9163. vertical-align:none;
  9164. text-align:left;
  9165. text-transform:none;
  9166. background-color:transparent;
  9167. border-color:transparent;
  9168. }
  9169. #u25026_div {
  9170. border-width:0px;
  9171. position:absolute;
  9172. left:0px;
  9173. top:0px;
  9174. width:126px;
  9175. height:23px;
  9176. background:inherit;
  9177. background-color:rgba(255, 255, 255, 1);
  9178. border:none;
  9179. border-radius:0px;
  9180. -moz-box-shadow:none;
  9181. -webkit-box-shadow:none;
  9182. box-shadow:none;
  9183. font-size:11px;
  9184. color:#AAAAAA;
  9185. }
  9186. #u25026 {
  9187. border-width:0px;
  9188. position:absolute;
  9189. left:985px;
  9190. top:165px;
  9191. width:126px;
  9192. height:23px;
  9193. display:flex;
  9194. font-size:11px;
  9195. color:#AAAAAA;
  9196. }
  9197. #u25026 .text {
  9198. position:absolute;
  9199. align-self:flex-start;
  9200. padding:2px 2px 2px 2px;
  9201. box-sizing:border-box;
  9202. width:100%;
  9203. }
  9204. #u25026_div.disabled {
  9205. border-width:0px;
  9206. position:absolute;
  9207. left:0px;
  9208. top:0px;
  9209. width:126px;
  9210. height:23px;
  9211. background:inherit;
  9212. background-color:rgba(240, 240, 240, 1);
  9213. border:none;
  9214. border-radius:0px;
  9215. -moz-box-shadow:none;
  9216. -webkit-box-shadow:none;
  9217. box-shadow:none;
  9218. font-size:11px;
  9219. color:#AAAAAA;
  9220. }
  9221. #u25026.disabled {
  9222. }
  9223. .u25026_input_option {
  9224. font-size:11px;
  9225. }
  9226. #u25027_div {
  9227. border-width:0px;
  9228. position:absolute;
  9229. left:0px;
  9230. top:0px;
  9231. width:100px;
  9232. height:30px;
  9233. background:inherit;
  9234. background-color:rgba(24, 144, 255, 1);
  9235. box-sizing:border-box;
  9236. border-width:1px;
  9237. border-style:solid;
  9238. border-color:rgba(0, 153, 255, 1);
  9239. border-radius:4px;
  9240. -moz-box-shadow:none;
  9241. -webkit-box-shadow:none;
  9242. box-shadow:none;
  9243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9244. font-weight:400;
  9245. font-style:normal;
  9246. font-size:14px;
  9247. color:#FFFFFF;
  9248. }
  9249. #u25027 {
  9250. border-width:0px;
  9251. position:absolute;
  9252. left:231px;
  9253. top:255px;
  9254. width:100px;
  9255. height:30px;
  9256. display:flex;
  9257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9258. font-weight:400;
  9259. font-style:normal;
  9260. font-size:14px;
  9261. color:#FFFFFF;
  9262. }
  9263. #u25027 .text {
  9264. position:absolute;
  9265. align-self:center;
  9266. padding:5px 0px 5px 0px;
  9267. box-sizing:border-box;
  9268. width:100%;
  9269. }
  9270. #u25027_text {
  9271. border-width:0px;
  9272. word-wrap:break-word;
  9273. text-transform:none;
  9274. }
  9275. #u25028 {
  9276. border-width:0px;
  9277. position:absolute;
  9278. left:0px;
  9279. top:0px;
  9280. width:0px;
  9281. height:0px;
  9282. }
  9283. #u25029_div {
  9284. border-width:0px;
  9285. position:absolute;
  9286. left:0px;
  9287. top:0px;
  9288. width:140px;
  9289. height:30px;
  9290. background:inherit;
  9291. background-color:rgba(255, 255, 255, 1);
  9292. box-sizing:border-box;
  9293. border-width:1px;
  9294. border-style:solid;
  9295. border-color:rgba(215, 215, 215, 1);
  9296. border-radius:4px;
  9297. -moz-box-shadow:none;
  9298. -webkit-box-shadow:none;
  9299. box-shadow:none;
  9300. font-size:11px;
  9301. }
  9302. #u25029 {
  9303. border-width:0px;
  9304. position:absolute;
  9305. left:1278px;
  9306. top:125px;
  9307. width:140px;
  9308. height:30px;
  9309. display:flex;
  9310. font-size:11px;
  9311. }
  9312. #u25029 .text {
  9313. position:absolute;
  9314. align-self:center;
  9315. padding:2px 2px 2px 2px;
  9316. box-sizing:border-box;
  9317. width:100%;
  9318. }
  9319. #u25029_text {
  9320. border-width:0px;
  9321. word-wrap:break-word;
  9322. text-transform:none;
  9323. visibility:hidden;
  9324. }
  9325. #u25030_input {
  9326. position:absolute;
  9327. left:0px;
  9328. top:0px;
  9329. width:126px;
  9330. height:23px;
  9331. padding:2px 2px 2px 2px;
  9332. font-family:'ArialMT', 'Arial', sans-serif;
  9333. font-weight:400;
  9334. font-style:normal;
  9335. font-size:11px;
  9336. letter-spacing:normal;
  9337. color:#AAAAAA;
  9338. vertical-align:none;
  9339. text-align:left;
  9340. text-transform:none;
  9341. background-color:transparent;
  9342. border-color:transparent;
  9343. }
  9344. #u25030_input.disabled {
  9345. position:absolute;
  9346. left:0px;
  9347. top:0px;
  9348. width:126px;
  9349. height:23px;
  9350. padding:2px 2px 2px 2px;
  9351. font-family:'ArialMT', 'Arial', sans-serif;
  9352. font-weight:400;
  9353. font-style:normal;
  9354. font-size:11px;
  9355. letter-spacing:normal;
  9356. color:#AAAAAA;
  9357. vertical-align:none;
  9358. text-align:left;
  9359. text-transform:none;
  9360. background-color:transparent;
  9361. border-color:transparent;
  9362. }
  9363. #u25030_div {
  9364. border-width:0px;
  9365. position:absolute;
  9366. left:0px;
  9367. top:0px;
  9368. width:126px;
  9369. height:23px;
  9370. background:inherit;
  9371. background-color:rgba(255, 255, 255, 1);
  9372. border:none;
  9373. border-radius:0px;
  9374. -moz-box-shadow:none;
  9375. -webkit-box-shadow:none;
  9376. box-shadow:none;
  9377. font-size:11px;
  9378. color:#AAAAAA;
  9379. }
  9380. #u25030 {
  9381. border-width:0px;
  9382. position:absolute;
  9383. left:1285px;
  9384. top:127px;
  9385. width:126px;
  9386. height:23px;
  9387. display:flex;
  9388. font-size:11px;
  9389. color:#AAAAAA;
  9390. }
  9391. #u25030 .text {
  9392. position:absolute;
  9393. align-self:flex-start;
  9394. padding:2px 2px 2px 2px;
  9395. box-sizing:border-box;
  9396. width:100%;
  9397. }
  9398. #u25030_div.disabled {
  9399. border-width:0px;
  9400. position:absolute;
  9401. left:0px;
  9402. top:0px;
  9403. width:126px;
  9404. height:23px;
  9405. background:inherit;
  9406. background-color:rgba(240, 240, 240, 1);
  9407. border:none;
  9408. border-radius:0px;
  9409. -moz-box-shadow:none;
  9410. -webkit-box-shadow:none;
  9411. box-shadow:none;
  9412. font-size:11px;
  9413. color:#AAAAAA;
  9414. }
  9415. #u25030.disabled {
  9416. }
  9417. .u25030_input_option {
  9418. font-size:11px;
  9419. }
  9420. #u25031 {
  9421. border-width:0px;
  9422. position:absolute;
  9423. left:0px;
  9424. top:0px;
  9425. width:0px;
  9426. height:0px;
  9427. }
  9428. #u25032_div {
  9429. border-width:0px;
  9430. position:absolute;
  9431. left:0px;
  9432. top:0px;
  9433. width:140px;
  9434. height:30px;
  9435. background:inherit;
  9436. background-color:rgba(255, 255, 255, 1);
  9437. box-sizing:border-box;
  9438. border-width:1px;
  9439. border-style:solid;
  9440. border-color:rgba(215, 215, 215, 1);
  9441. border-radius:4px;
  9442. -moz-box-shadow:none;
  9443. -webkit-box-shadow:none;
  9444. box-shadow:none;
  9445. font-size:11px;
  9446. }
  9447. #u25032 {
  9448. border-width:0px;
  9449. position:absolute;
  9450. left:828px;
  9451. top:204px;
  9452. width:140px;
  9453. height:30px;
  9454. display:flex;
  9455. font-size:11px;
  9456. }
  9457. #u25032 .text {
  9458. position:absolute;
  9459. align-self:center;
  9460. padding:2px 2px 2px 2px;
  9461. box-sizing:border-box;
  9462. width:100%;
  9463. }
  9464. #u25032_text {
  9465. border-width:0px;
  9466. word-wrap:break-word;
  9467. text-transform:none;
  9468. visibility:hidden;
  9469. }
  9470. #u25033_input {
  9471. position:absolute;
  9472. left:0px;
  9473. top:0px;
  9474. width:126px;
  9475. height:23px;
  9476. padding:2px 2px 2px 2px;
  9477. font-family:'ArialMT', 'Arial', sans-serif;
  9478. font-weight:400;
  9479. font-style:normal;
  9480. font-size:11px;
  9481. letter-spacing:normal;
  9482. color:#AAAAAA;
  9483. vertical-align:none;
  9484. text-align:left;
  9485. text-transform:none;
  9486. background-color:transparent;
  9487. border-color:transparent;
  9488. }
  9489. #u25033_input.disabled {
  9490. position:absolute;
  9491. left:0px;
  9492. top:0px;
  9493. width:126px;
  9494. height:23px;
  9495. padding:2px 2px 2px 2px;
  9496. font-family:'ArialMT', 'Arial', sans-serif;
  9497. font-weight:400;
  9498. font-style:normal;
  9499. font-size:11px;
  9500. letter-spacing:normal;
  9501. color:#AAAAAA;
  9502. vertical-align:none;
  9503. text-align:left;
  9504. text-transform:none;
  9505. background-color:transparent;
  9506. border-color:transparent;
  9507. }
  9508. #u25033_div {
  9509. border-width:0px;
  9510. position:absolute;
  9511. left:0px;
  9512. top:0px;
  9513. width:126px;
  9514. height:23px;
  9515. background:inherit;
  9516. background-color:rgba(255, 255, 255, 1);
  9517. border:none;
  9518. border-radius:0px;
  9519. -moz-box-shadow:none;
  9520. -webkit-box-shadow:none;
  9521. box-shadow:none;
  9522. font-size:11px;
  9523. color:#AAAAAA;
  9524. }
  9525. #u25033 {
  9526. border-width:0px;
  9527. position:absolute;
  9528. left:835px;
  9529. top:206px;
  9530. width:126px;
  9531. height:23px;
  9532. display:flex;
  9533. font-size:11px;
  9534. color:#AAAAAA;
  9535. }
  9536. #u25033 .text {
  9537. position:absolute;
  9538. align-self:flex-start;
  9539. padding:2px 2px 2px 2px;
  9540. box-sizing:border-box;
  9541. width:100%;
  9542. }
  9543. #u25033_div.disabled {
  9544. border-width:0px;
  9545. position:absolute;
  9546. left:0px;
  9547. top:0px;
  9548. width:126px;
  9549. height:23px;
  9550. background:inherit;
  9551. background-color:rgba(240, 240, 240, 1);
  9552. border:none;
  9553. border-radius:0px;
  9554. -moz-box-shadow:none;
  9555. -webkit-box-shadow:none;
  9556. box-shadow:none;
  9557. font-size:11px;
  9558. color:#AAAAAA;
  9559. }
  9560. #u25033.disabled {
  9561. }
  9562. .u25033_input_option {
  9563. font-size:11px;
  9564. }
  9565. #u25034 {
  9566. border-width:0px;
  9567. position:absolute;
  9568. left:0px;
  9569. top:0px;
  9570. width:0px;
  9571. height:0px;
  9572. }
  9573. #u25035_div {
  9574. border-width:0px;
  9575. position:absolute;
  9576. left:0px;
  9577. top:0px;
  9578. width:140px;
  9579. height:30px;
  9580. background:inherit;
  9581. background-color:rgba(255, 255, 255, 1);
  9582. box-sizing:border-box;
  9583. border-width:1px;
  9584. border-style:solid;
  9585. border-color:rgba(215, 215, 215, 1);
  9586. border-radius:4px;
  9587. -moz-box-shadow:none;
  9588. -webkit-box-shadow:none;
  9589. box-shadow:none;
  9590. font-size:11px;
  9591. }
  9592. #u25035 {
  9593. border-width:0px;
  9594. position:absolute;
  9595. left:978px;
  9596. top:204px;
  9597. width:140px;
  9598. height:30px;
  9599. display:flex;
  9600. font-size:11px;
  9601. }
  9602. #u25035 .text {
  9603. position:absolute;
  9604. align-self:center;
  9605. padding:2px 2px 2px 2px;
  9606. box-sizing:border-box;
  9607. width:100%;
  9608. }
  9609. #u25035_text {
  9610. border-width:0px;
  9611. word-wrap:break-word;
  9612. text-transform:none;
  9613. visibility:hidden;
  9614. }
  9615. #u25036_input {
  9616. position:absolute;
  9617. left:0px;
  9618. top:0px;
  9619. width:126px;
  9620. height:23px;
  9621. padding:2px 2px 2px 2px;
  9622. font-family:'ArialMT', 'Arial', sans-serif;
  9623. font-weight:400;
  9624. font-style:normal;
  9625. font-size:11px;
  9626. letter-spacing:normal;
  9627. color:#AAAAAA;
  9628. vertical-align:none;
  9629. text-align:left;
  9630. text-transform:none;
  9631. background-color:transparent;
  9632. border-color:transparent;
  9633. }
  9634. #u25036_input.disabled {
  9635. position:absolute;
  9636. left:0px;
  9637. top:0px;
  9638. width:126px;
  9639. height:23px;
  9640. padding:2px 2px 2px 2px;
  9641. font-family:'ArialMT', 'Arial', sans-serif;
  9642. font-weight:400;
  9643. font-style:normal;
  9644. font-size:11px;
  9645. letter-spacing:normal;
  9646. color:#AAAAAA;
  9647. vertical-align:none;
  9648. text-align:left;
  9649. text-transform:none;
  9650. background-color:transparent;
  9651. border-color:transparent;
  9652. }
  9653. #u25036_div {
  9654. border-width:0px;
  9655. position:absolute;
  9656. left:0px;
  9657. top:0px;
  9658. width:126px;
  9659. height:23px;
  9660. background:inherit;
  9661. background-color:rgba(255, 255, 255, 1);
  9662. border:none;
  9663. border-radius:0px;
  9664. -moz-box-shadow:none;
  9665. -webkit-box-shadow:none;
  9666. box-shadow:none;
  9667. font-size:11px;
  9668. color:#AAAAAA;
  9669. }
  9670. #u25036 {
  9671. border-width:0px;
  9672. position:absolute;
  9673. left:985px;
  9674. top:206px;
  9675. width:126px;
  9676. height:23px;
  9677. display:flex;
  9678. font-size:11px;
  9679. color:#AAAAAA;
  9680. }
  9681. #u25036 .text {
  9682. position:absolute;
  9683. align-self:flex-start;
  9684. padding:2px 2px 2px 2px;
  9685. box-sizing:border-box;
  9686. width:100%;
  9687. }
  9688. #u25036_div.disabled {
  9689. border-width:0px;
  9690. position:absolute;
  9691. left:0px;
  9692. top:0px;
  9693. width:126px;
  9694. height:23px;
  9695. background:inherit;
  9696. background-color:rgba(240, 240, 240, 1);
  9697. border:none;
  9698. border-radius:0px;
  9699. -moz-box-shadow:none;
  9700. -webkit-box-shadow:none;
  9701. box-shadow:none;
  9702. font-size:11px;
  9703. color:#AAAAAA;
  9704. }
  9705. #u25036.disabled {
  9706. }
  9707. .u25036_input_option {
  9708. font-size:11px;
  9709. }
  9710. #u25037 {
  9711. border-width:0px;
  9712. position:absolute;
  9713. left:0px;
  9714. top:0px;
  9715. width:0px;
  9716. height:0px;
  9717. }
  9718. #u25038_div {
  9719. border-width:0px;
  9720. position:absolute;
  9721. left:0px;
  9722. top:0px;
  9723. width:140px;
  9724. height:30px;
  9725. background:inherit;
  9726. background-color:rgba(255, 255, 255, 1);
  9727. box-sizing:border-box;
  9728. border-width:1px;
  9729. border-style:solid;
  9730. border-color:rgba(215, 215, 215, 1);
  9731. border-radius:4px;
  9732. -moz-box-shadow:none;
  9733. -webkit-box-shadow:none;
  9734. box-shadow:none;
  9735. font-size:11px;
  9736. }
  9737. #u25038 {
  9738. border-width:0px;
  9739. position:absolute;
  9740. left:678px;
  9741. top:204px;
  9742. width:140px;
  9743. height:30px;
  9744. display:flex;
  9745. font-size:11px;
  9746. }
  9747. #u25038 .text {
  9748. position:absolute;
  9749. align-self:center;
  9750. padding:2px 2px 2px 2px;
  9751. box-sizing:border-box;
  9752. width:100%;
  9753. }
  9754. #u25038_text {
  9755. border-width:0px;
  9756. word-wrap:break-word;
  9757. text-transform:none;
  9758. visibility:hidden;
  9759. }
  9760. #u25039_input {
  9761. position:absolute;
  9762. left:0px;
  9763. top:0px;
  9764. width:126px;
  9765. height:23px;
  9766. padding:2px 2px 2px 2px;
  9767. font-family:'ArialMT', 'Arial', sans-serif;
  9768. font-weight:400;
  9769. font-style:normal;
  9770. font-size:11px;
  9771. letter-spacing:normal;
  9772. color:#AAAAAA;
  9773. vertical-align:none;
  9774. text-align:left;
  9775. text-transform:none;
  9776. background-color:transparent;
  9777. border-color:transparent;
  9778. }
  9779. #u25039_input.disabled {
  9780. position:absolute;
  9781. left:0px;
  9782. top:0px;
  9783. width:126px;
  9784. height:23px;
  9785. padding:2px 2px 2px 2px;
  9786. font-family:'ArialMT', 'Arial', sans-serif;
  9787. font-weight:400;
  9788. font-style:normal;
  9789. font-size:11px;
  9790. letter-spacing:normal;
  9791. color:#AAAAAA;
  9792. vertical-align:none;
  9793. text-align:left;
  9794. text-transform:none;
  9795. background-color:transparent;
  9796. border-color:transparent;
  9797. }
  9798. #u25039_div {
  9799. border-width:0px;
  9800. position:absolute;
  9801. left:0px;
  9802. top:0px;
  9803. width:126px;
  9804. height:23px;
  9805. background:inherit;
  9806. background-color:rgba(255, 255, 255, 1);
  9807. border:none;
  9808. border-radius:0px;
  9809. -moz-box-shadow:none;
  9810. -webkit-box-shadow:none;
  9811. box-shadow:none;
  9812. font-size:11px;
  9813. color:#AAAAAA;
  9814. }
  9815. #u25039 {
  9816. border-width:0px;
  9817. position:absolute;
  9818. left:685px;
  9819. top:206px;
  9820. width:126px;
  9821. height:23px;
  9822. display:flex;
  9823. font-size:11px;
  9824. color:#AAAAAA;
  9825. }
  9826. #u25039 .text {
  9827. position:absolute;
  9828. align-self:flex-start;
  9829. padding:2px 2px 2px 2px;
  9830. box-sizing:border-box;
  9831. width:100%;
  9832. }
  9833. #u25039_div.disabled {
  9834. border-width:0px;
  9835. position:absolute;
  9836. left:0px;
  9837. top:0px;
  9838. width:126px;
  9839. height:23px;
  9840. background:inherit;
  9841. background-color:rgba(240, 240, 240, 1);
  9842. border:none;
  9843. border-radius:0px;
  9844. -moz-box-shadow:none;
  9845. -webkit-box-shadow:none;
  9846. box-shadow:none;
  9847. font-size:11px;
  9848. color:#AAAAAA;
  9849. }
  9850. #u25039.disabled {
  9851. }
  9852. .u25039_input_option {
  9853. font-size:11px;
  9854. }
  9855. #u25040 {
  9856. border-width:0px;
  9857. position:absolute;
  9858. left:0px;
  9859. top:0px;
  9860. width:0px;
  9861. height:0px;
  9862. }
  9863. #u25041_div {
  9864. border-width:0px;
  9865. position:absolute;
  9866. left:0px;
  9867. top:0px;
  9868. width:140px;
  9869. height:30px;
  9870. background:inherit;
  9871. background-color:rgba(255, 255, 255, 1);
  9872. box-sizing:border-box;
  9873. border-width:1px;
  9874. border-style:solid;
  9875. border-color:rgba(215, 215, 215, 1);
  9876. border-radius:4px;
  9877. -moz-box-shadow:none;
  9878. -webkit-box-shadow:none;
  9879. box-shadow:none;
  9880. font-size:11px;
  9881. }
  9882. #u25041 {
  9883. border-width:0px;
  9884. position:absolute;
  9885. left:1128px;
  9886. top:125px;
  9887. width:140px;
  9888. height:30px;
  9889. display:flex;
  9890. font-size:11px;
  9891. }
  9892. #u25041 .text {
  9893. position:absolute;
  9894. align-self:center;
  9895. padding:2px 2px 2px 2px;
  9896. box-sizing:border-box;
  9897. width:100%;
  9898. }
  9899. #u25041_text {
  9900. border-width:0px;
  9901. word-wrap:break-word;
  9902. text-transform:none;
  9903. visibility:hidden;
  9904. }
  9905. #u25042_input {
  9906. position:absolute;
  9907. left:0px;
  9908. top:0px;
  9909. width:126px;
  9910. height:23px;
  9911. padding:2px 2px 2px 2px;
  9912. font-family:'ArialMT', 'Arial', sans-serif;
  9913. font-weight:400;
  9914. font-style:normal;
  9915. font-size:11px;
  9916. letter-spacing:normal;
  9917. color:#AAAAAA;
  9918. vertical-align:none;
  9919. text-align:left;
  9920. text-transform:none;
  9921. background-color:transparent;
  9922. border-color:transparent;
  9923. }
  9924. #u25042_input.disabled {
  9925. position:absolute;
  9926. left:0px;
  9927. top:0px;
  9928. width:126px;
  9929. height:23px;
  9930. padding:2px 2px 2px 2px;
  9931. font-family:'ArialMT', 'Arial', sans-serif;
  9932. font-weight:400;
  9933. font-style:normal;
  9934. font-size:11px;
  9935. letter-spacing:normal;
  9936. color:#AAAAAA;
  9937. vertical-align:none;
  9938. text-align:left;
  9939. text-transform:none;
  9940. background-color:transparent;
  9941. border-color:transparent;
  9942. }
  9943. #u25042_div {
  9944. border-width:0px;
  9945. position:absolute;
  9946. left:0px;
  9947. top:0px;
  9948. width:126px;
  9949. height:23px;
  9950. background:inherit;
  9951. background-color:rgba(255, 255, 255, 1);
  9952. border:none;
  9953. border-radius:0px;
  9954. -moz-box-shadow:none;
  9955. -webkit-box-shadow:none;
  9956. box-shadow:none;
  9957. font-size:11px;
  9958. color:#AAAAAA;
  9959. }
  9960. #u25042 {
  9961. border-width:0px;
  9962. position:absolute;
  9963. left:1135px;
  9964. top:127px;
  9965. width:126px;
  9966. height:23px;
  9967. display:flex;
  9968. font-size:11px;
  9969. color:#AAAAAA;
  9970. }
  9971. #u25042 .text {
  9972. position:absolute;
  9973. align-self:flex-start;
  9974. padding:2px 2px 2px 2px;
  9975. box-sizing:border-box;
  9976. width:100%;
  9977. }
  9978. #u25042_div.disabled {
  9979. border-width:0px;
  9980. position:absolute;
  9981. left:0px;
  9982. top:0px;
  9983. width:126px;
  9984. height:23px;
  9985. background:inherit;
  9986. background-color:rgba(240, 240, 240, 1);
  9987. border:none;
  9988. border-radius:0px;
  9989. -moz-box-shadow:none;
  9990. -webkit-box-shadow:none;
  9991. box-shadow:none;
  9992. font-size:11px;
  9993. color:#AAAAAA;
  9994. }
  9995. #u25042.disabled {
  9996. }
  9997. .u25042_input_option {
  9998. font-size:11px;
  9999. }
  10000. #u25043 {
  10001. border-width:0px;
  10002. position:absolute;
  10003. left:0px;
  10004. top:0px;
  10005. width:0px;
  10006. height:0px;
  10007. }
  10008. #u25044_div {
  10009. border-width:0px;
  10010. position:absolute;
  10011. left:0px;
  10012. top:0px;
  10013. width:140px;
  10014. height:30px;
  10015. background:inherit;
  10016. background-color:rgba(255, 255, 255, 1);
  10017. box-sizing:border-box;
  10018. border-width:1px;
  10019. border-style:solid;
  10020. border-color:rgba(201, 201, 201, 1);
  10021. border-radius:4px;
  10022. -moz-box-shadow:none;
  10023. -webkit-box-shadow:none;
  10024. box-shadow:none;
  10025. font-family:'Microsoft YaHei', sans-serif;
  10026. font-weight:400;
  10027. font-style:normal;
  10028. font-size:14px;
  10029. color:#CCCCCC;
  10030. text-align:left;
  10031. }
  10032. #u25044 {
  10033. border-width:0px;
  10034. position:absolute;
  10035. left:228px;
  10036. top:162px;
  10037. width:140px;
  10038. height:30px;
  10039. display:flex;
  10040. font-family:'Microsoft YaHei', sans-serif;
  10041. font-weight:400;
  10042. font-style:normal;
  10043. font-size:14px;
  10044. color:#CCCCCC;
  10045. text-align:left;
  10046. }
  10047. #u25044 .text {
  10048. position:absolute;
  10049. align-self:center;
  10050. padding:2px 8px 2px 8px;
  10051. box-sizing:border-box;
  10052. width:100%;
  10053. }
  10054. #u25044_text {
  10055. border-width:0px;
  10056. word-wrap:break-word;
  10057. text-transform:none;
  10058. visibility:hidden;
  10059. }
  10060. #u25045_input {
  10061. position:absolute;
  10062. left:0px;
  10063. top:0px;
  10064. width:127px;
  10065. height:25px;
  10066. padding:2px 2px 2px 2px;
  10067. font-family:'Microsoft YaHei', sans-serif;
  10068. font-weight:400;
  10069. font-style:normal;
  10070. font-size:10px;
  10071. letter-spacing:normal;
  10072. color:#000000;
  10073. vertical-align:none;
  10074. text-align:left;
  10075. text-transform:none;
  10076. background-color:transparent;
  10077. border-color:transparent;
  10078. }
  10079. #u25045_input.disabled {
  10080. position:absolute;
  10081. left:0px;
  10082. top:0px;
  10083. width:127px;
  10084. height:25px;
  10085. padding:2px 2px 2px 2px;
  10086. font-family:'Microsoft YaHei', sans-serif;
  10087. font-weight:400;
  10088. font-style:normal;
  10089. font-size:10px;
  10090. letter-spacing:normal;
  10091. color:#000000;
  10092. vertical-align:none;
  10093. text-align:left;
  10094. text-transform:none;
  10095. background-color:transparent;
  10096. border-color:transparent;
  10097. }
  10098. #u25045_div {
  10099. border-width:0px;
  10100. position:absolute;
  10101. left:0px;
  10102. top:0px;
  10103. width:127px;
  10104. height:25px;
  10105. background:inherit;
  10106. background-color:rgba(255, 255, 255, 1);
  10107. border:none;
  10108. border-radius:0px;
  10109. -moz-box-shadow:none;
  10110. -webkit-box-shadow:none;
  10111. box-shadow:none;
  10112. font-family:'Microsoft YaHei', sans-serif;
  10113. font-weight:400;
  10114. font-style:normal;
  10115. font-size:10px;
  10116. }
  10117. #u25045 {
  10118. border-width:0px;
  10119. position:absolute;
  10120. left:236px;
  10121. top:163px;
  10122. width:127px;
  10123. height:25px;
  10124. display:flex;
  10125. font-family:'Microsoft YaHei', sans-serif;
  10126. font-weight:400;
  10127. font-style:normal;
  10128. font-size:10px;
  10129. }
  10130. #u25045 .text {
  10131. position:absolute;
  10132. align-self:center;
  10133. padding:2px 2px 2px 2px;
  10134. box-sizing:border-box;
  10135. width:100%;
  10136. }
  10137. #u25045_div.disabled {
  10138. border-width:0px;
  10139. position:absolute;
  10140. left:0px;
  10141. top:0px;
  10142. width:127px;
  10143. height:25px;
  10144. background:inherit;
  10145. background-color:rgba(240, 240, 240, 1);
  10146. border:none;
  10147. border-radius:0px;
  10148. -moz-box-shadow:none;
  10149. -webkit-box-shadow:none;
  10150. box-shadow:none;
  10151. font-family:'Microsoft YaHei', sans-serif;
  10152. font-weight:400;
  10153. font-style:normal;
  10154. font-size:10px;
  10155. }
  10156. #u25045.disabled {
  10157. }
  10158. #u25046 {
  10159. border-width:0px;
  10160. position:absolute;
  10161. left:0px;
  10162. top:0px;
  10163. width:0px;
  10164. height:0px;
  10165. }
  10166. #u25047_div {
  10167. border-width:0px;
  10168. position:absolute;
  10169. left:0px;
  10170. top:0px;
  10171. width:140px;
  10172. height:30px;
  10173. background:inherit;
  10174. background-color:rgba(255, 255, 255, 1);
  10175. box-sizing:border-box;
  10176. border-width:1px;
  10177. border-style:solid;
  10178. border-color:rgba(201, 201, 201, 1);
  10179. border-radius:4px;
  10180. -moz-box-shadow:none;
  10181. -webkit-box-shadow:none;
  10182. box-shadow:none;
  10183. font-family:'Microsoft YaHei', sans-serif;
  10184. font-weight:400;
  10185. font-style:normal;
  10186. font-size:14px;
  10187. color:#CCCCCC;
  10188. text-align:left;
  10189. }
  10190. #u25047 {
  10191. border-width:0px;
  10192. position:absolute;
  10193. left:828px;
  10194. top:124px;
  10195. width:140px;
  10196. height:30px;
  10197. display:flex;
  10198. font-family:'Microsoft YaHei', sans-serif;
  10199. font-weight:400;
  10200. font-style:normal;
  10201. font-size:14px;
  10202. color:#CCCCCC;
  10203. text-align:left;
  10204. }
  10205. #u25047 .text {
  10206. position:absolute;
  10207. align-self:center;
  10208. padding:2px 8px 2px 8px;
  10209. box-sizing:border-box;
  10210. width:100%;
  10211. }
  10212. #u25047_text {
  10213. border-width:0px;
  10214. word-wrap:break-word;
  10215. text-transform:none;
  10216. visibility:hidden;
  10217. }
  10218. #u25048_input {
  10219. position:absolute;
  10220. left:0px;
  10221. top:0px;
  10222. width:127px;
  10223. height:25px;
  10224. padding:2px 2px 2px 2px;
  10225. font-family:'Microsoft YaHei', sans-serif;
  10226. font-weight:400;
  10227. font-style:normal;
  10228. font-size:10px;
  10229. letter-spacing:normal;
  10230. color:#000000;
  10231. vertical-align:none;
  10232. text-align:left;
  10233. text-transform:none;
  10234. background-color:transparent;
  10235. border-color:transparent;
  10236. }
  10237. #u25048_input.disabled {
  10238. position:absolute;
  10239. left:0px;
  10240. top:0px;
  10241. width:127px;
  10242. height:25px;
  10243. padding:2px 2px 2px 2px;
  10244. font-family:'Microsoft YaHei', sans-serif;
  10245. font-weight:400;
  10246. font-style:normal;
  10247. font-size:10px;
  10248. letter-spacing:normal;
  10249. color:#000000;
  10250. vertical-align:none;
  10251. text-align:left;
  10252. text-transform:none;
  10253. background-color:transparent;
  10254. border-color:transparent;
  10255. }
  10256. #u25048_div {
  10257. border-width:0px;
  10258. position:absolute;
  10259. left:0px;
  10260. top:0px;
  10261. width:127px;
  10262. height:25px;
  10263. background:inherit;
  10264. background-color:rgba(255, 255, 255, 1);
  10265. border:none;
  10266. border-radius:0px;
  10267. -moz-box-shadow:none;
  10268. -webkit-box-shadow:none;
  10269. box-shadow:none;
  10270. font-family:'Microsoft YaHei', sans-serif;
  10271. font-weight:400;
  10272. font-style:normal;
  10273. font-size:10px;
  10274. }
  10275. #u25048 {
  10276. border-width:0px;
  10277. position:absolute;
  10278. left:836px;
  10279. top:125px;
  10280. width:127px;
  10281. height:25px;
  10282. display:flex;
  10283. font-family:'Microsoft YaHei', sans-serif;
  10284. font-weight:400;
  10285. font-style:normal;
  10286. font-size:10px;
  10287. }
  10288. #u25048 .text {
  10289. position:absolute;
  10290. align-self:center;
  10291. padding:2px 2px 2px 2px;
  10292. box-sizing:border-box;
  10293. width:100%;
  10294. }
  10295. #u25048_div.disabled {
  10296. border-width:0px;
  10297. position:absolute;
  10298. left:0px;
  10299. top:0px;
  10300. width:127px;
  10301. height:25px;
  10302. background:inherit;
  10303. background-color:rgba(240, 240, 240, 1);
  10304. border:none;
  10305. border-radius:0px;
  10306. -moz-box-shadow:none;
  10307. -webkit-box-shadow:none;
  10308. box-shadow:none;
  10309. font-family:'Microsoft YaHei', sans-serif;
  10310. font-weight:400;
  10311. font-style:normal;
  10312. font-size:10px;
  10313. }
  10314. #u25048.disabled {
  10315. }
  10316. #u25049 {
  10317. border-width:0px;
  10318. position:absolute;
  10319. left:0px;
  10320. top:0px;
  10321. width:0px;
  10322. height:0px;
  10323. }
  10324. #u25050_div {
  10325. border-width:0px;
  10326. position:absolute;
  10327. left:0px;
  10328. top:0px;
  10329. width:140px;
  10330. height:30px;
  10331. background:inherit;
  10332. background-color:rgba(255, 255, 255, 1);
  10333. box-sizing:border-box;
  10334. border-width:1px;
  10335. border-style:solid;
  10336. border-color:rgba(201, 201, 201, 1);
  10337. border-radius:4px;
  10338. -moz-box-shadow:none;
  10339. -webkit-box-shadow:none;
  10340. box-shadow:none;
  10341. font-family:'Microsoft YaHei', sans-serif;
  10342. font-weight:400;
  10343. font-style:normal;
  10344. font-size:14px;
  10345. color:#CCCCCC;
  10346. text-align:left;
  10347. }
  10348. #u25050 {
  10349. border-width:0px;
  10350. position:absolute;
  10351. left:828px;
  10352. top:162px;
  10353. width:140px;
  10354. height:30px;
  10355. display:flex;
  10356. font-family:'Microsoft YaHei', sans-serif;
  10357. font-weight:400;
  10358. font-style:normal;
  10359. font-size:14px;
  10360. color:#CCCCCC;
  10361. text-align:left;
  10362. }
  10363. #u25050 .text {
  10364. position:absolute;
  10365. align-self:center;
  10366. padding:2px 8px 2px 8px;
  10367. box-sizing:border-box;
  10368. width:100%;
  10369. }
  10370. #u25050_text {
  10371. border-width:0px;
  10372. word-wrap:break-word;
  10373. text-transform:none;
  10374. visibility:hidden;
  10375. }
  10376. #u25051_input {
  10377. position:absolute;
  10378. left:0px;
  10379. top:0px;
  10380. width:127px;
  10381. height:25px;
  10382. padding:2px 2px 2px 2px;
  10383. font-family:'Microsoft YaHei', sans-serif;
  10384. font-weight:400;
  10385. font-style:normal;
  10386. font-size:10px;
  10387. letter-spacing:normal;
  10388. color:#000000;
  10389. vertical-align:none;
  10390. text-align:left;
  10391. text-transform:none;
  10392. background-color:transparent;
  10393. border-color:transparent;
  10394. }
  10395. #u25051_input.disabled {
  10396. position:absolute;
  10397. left:0px;
  10398. top:0px;
  10399. width:127px;
  10400. height:25px;
  10401. padding:2px 2px 2px 2px;
  10402. font-family:'Microsoft YaHei', sans-serif;
  10403. font-weight:400;
  10404. font-style:normal;
  10405. font-size:10px;
  10406. letter-spacing:normal;
  10407. color:#000000;
  10408. vertical-align:none;
  10409. text-align:left;
  10410. text-transform:none;
  10411. background-color:transparent;
  10412. border-color:transparent;
  10413. }
  10414. #u25051_div {
  10415. border-width:0px;
  10416. position:absolute;
  10417. left:0px;
  10418. top:0px;
  10419. width:127px;
  10420. height:25px;
  10421. background:inherit;
  10422. background-color:rgba(255, 255, 255, 1);
  10423. border:none;
  10424. border-radius:0px;
  10425. -moz-box-shadow:none;
  10426. -webkit-box-shadow:none;
  10427. box-shadow:none;
  10428. font-family:'Microsoft YaHei', sans-serif;
  10429. font-weight:400;
  10430. font-style:normal;
  10431. font-size:10px;
  10432. }
  10433. #u25051 {
  10434. border-width:0px;
  10435. position:absolute;
  10436. left:836px;
  10437. top:163px;
  10438. width:127px;
  10439. height:25px;
  10440. display:flex;
  10441. font-family:'Microsoft YaHei', sans-serif;
  10442. font-weight:400;
  10443. font-style:normal;
  10444. font-size:10px;
  10445. }
  10446. #u25051 .text {
  10447. position:absolute;
  10448. align-self:center;
  10449. padding:2px 2px 2px 2px;
  10450. box-sizing:border-box;
  10451. width:100%;
  10452. }
  10453. #u25051_div.disabled {
  10454. border-width:0px;
  10455. position:absolute;
  10456. left:0px;
  10457. top:0px;
  10458. width:127px;
  10459. height:25px;
  10460. background:inherit;
  10461. background-color:rgba(240, 240, 240, 1);
  10462. border:none;
  10463. border-radius:0px;
  10464. -moz-box-shadow:none;
  10465. -webkit-box-shadow:none;
  10466. box-shadow:none;
  10467. font-family:'Microsoft YaHei', sans-serif;
  10468. font-weight:400;
  10469. font-style:normal;
  10470. font-size:10px;
  10471. }
  10472. #u25051.disabled {
  10473. }
  10474. #u25052 {
  10475. border-width:0px;
  10476. position:absolute;
  10477. left:0px;
  10478. top:0px;
  10479. width:0px;
  10480. height:0px;
  10481. }
  10482. #u25053_div {
  10483. border-width:0px;
  10484. position:absolute;
  10485. left:0px;
  10486. top:0px;
  10487. width:140px;
  10488. height:30px;
  10489. background:inherit;
  10490. background-color:rgba(255, 255, 255, 1);
  10491. box-sizing:border-box;
  10492. border-width:1px;
  10493. border-style:solid;
  10494. border-color:rgba(215, 215, 215, 1);
  10495. border-radius:4px;
  10496. -moz-box-shadow:none;
  10497. -webkit-box-shadow:none;
  10498. box-shadow:none;
  10499. font-size:11px;
  10500. }
  10501. #u25053 {
  10502. border-width:0px;
  10503. position:absolute;
  10504. left:1428px;
  10505. top:162px;
  10506. width:140px;
  10507. height:30px;
  10508. display:flex;
  10509. font-size:11px;
  10510. }
  10511. #u25053 .text {
  10512. position:absolute;
  10513. align-self:center;
  10514. padding:2px 2px 2px 2px;
  10515. box-sizing:border-box;
  10516. width:100%;
  10517. }
  10518. #u25053_text {
  10519. border-width:0px;
  10520. word-wrap:break-word;
  10521. text-transform:none;
  10522. visibility:hidden;
  10523. }
  10524. #u25054_input {
  10525. position:absolute;
  10526. left:0px;
  10527. top:0px;
  10528. width:126px;
  10529. height:23px;
  10530. padding:2px 2px 2px 2px;
  10531. font-family:'ArialMT', 'Arial', sans-serif;
  10532. font-weight:400;
  10533. font-style:normal;
  10534. font-size:11px;
  10535. letter-spacing:normal;
  10536. color:#AAAAAA;
  10537. vertical-align:none;
  10538. text-align:left;
  10539. text-transform:none;
  10540. background-color:transparent;
  10541. border-color:transparent;
  10542. }
  10543. #u25054_input.disabled {
  10544. position:absolute;
  10545. left:0px;
  10546. top:0px;
  10547. width:126px;
  10548. height:23px;
  10549. padding:2px 2px 2px 2px;
  10550. font-family:'ArialMT', 'Arial', sans-serif;
  10551. font-weight:400;
  10552. font-style:normal;
  10553. font-size:11px;
  10554. letter-spacing:normal;
  10555. color:#AAAAAA;
  10556. vertical-align:none;
  10557. text-align:left;
  10558. text-transform:none;
  10559. background-color:transparent;
  10560. border-color:transparent;
  10561. }
  10562. #u25054_div {
  10563. border-width:0px;
  10564. position:absolute;
  10565. left:0px;
  10566. top:0px;
  10567. width:126px;
  10568. height:23px;
  10569. background:inherit;
  10570. background-color:rgba(255, 255, 255, 1);
  10571. border:none;
  10572. border-radius:0px;
  10573. -moz-box-shadow:none;
  10574. -webkit-box-shadow:none;
  10575. box-shadow:none;
  10576. font-size:11px;
  10577. color:#AAAAAA;
  10578. }
  10579. #u25054 {
  10580. border-width:0px;
  10581. position:absolute;
  10582. left:1435px;
  10583. top:164px;
  10584. width:126px;
  10585. height:23px;
  10586. display:flex;
  10587. font-size:11px;
  10588. color:#AAAAAA;
  10589. }
  10590. #u25054 .text {
  10591. position:absolute;
  10592. align-self:flex-start;
  10593. padding:2px 2px 2px 2px;
  10594. box-sizing:border-box;
  10595. width:100%;
  10596. }
  10597. #u25054_div.disabled {
  10598. border-width:0px;
  10599. position:absolute;
  10600. left:0px;
  10601. top:0px;
  10602. width:126px;
  10603. height:23px;
  10604. background:inherit;
  10605. background-color:rgba(240, 240, 240, 1);
  10606. border:none;
  10607. border-radius:0px;
  10608. -moz-box-shadow:none;
  10609. -webkit-box-shadow:none;
  10610. box-shadow:none;
  10611. font-size:11px;
  10612. color:#AAAAAA;
  10613. }
  10614. #u25054.disabled {
  10615. }
  10616. .u25054_input_option {
  10617. font-size:11px;
  10618. }
  10619. #u25055 {
  10620. border-width:0px;
  10621. position:absolute;
  10622. left:0px;
  10623. top:0px;
  10624. width:0px;
  10625. height:0px;
  10626. }
  10627. #u25056_div {
  10628. border-width:0px;
  10629. position:absolute;
  10630. left:0px;
  10631. top:0px;
  10632. width:140px;
  10633. height:30px;
  10634. background:inherit;
  10635. background-color:rgba(255, 255, 255, 1);
  10636. box-sizing:border-box;
  10637. border-width:1px;
  10638. border-style:solid;
  10639. border-color:rgba(201, 201, 201, 1);
  10640. border-radius:4px;
  10641. -moz-box-shadow:none;
  10642. -webkit-box-shadow:none;
  10643. box-shadow:none;
  10644. font-family:'Microsoft YaHei', sans-serif;
  10645. font-weight:400;
  10646. font-style:normal;
  10647. font-size:14px;
  10648. color:#CCCCCC;
  10649. text-align:left;
  10650. }
  10651. #u25056 {
  10652. border-width:0px;
  10653. position:absolute;
  10654. left:378px;
  10655. top:204px;
  10656. width:140px;
  10657. height:30px;
  10658. display:flex;
  10659. font-family:'Microsoft YaHei', sans-serif;
  10660. font-weight:400;
  10661. font-style:normal;
  10662. font-size:14px;
  10663. color:#CCCCCC;
  10664. text-align:left;
  10665. }
  10666. #u25056 .text {
  10667. position:absolute;
  10668. align-self:center;
  10669. padding:2px 8px 2px 8px;
  10670. box-sizing:border-box;
  10671. width:100%;
  10672. }
  10673. #u25056_text {
  10674. border-width:0px;
  10675. word-wrap:break-word;
  10676. text-transform:none;
  10677. visibility:hidden;
  10678. }
  10679. #u25057_input {
  10680. position:absolute;
  10681. left:0px;
  10682. top:0px;
  10683. width:127px;
  10684. height:25px;
  10685. padding:2px 2px 2px 2px;
  10686. font-family:'Microsoft YaHei', sans-serif;
  10687. font-weight:400;
  10688. font-style:normal;
  10689. font-size:10px;
  10690. letter-spacing:normal;
  10691. color:#000000;
  10692. vertical-align:none;
  10693. text-align:left;
  10694. text-transform:none;
  10695. background-color:transparent;
  10696. border-color:transparent;
  10697. }
  10698. #u25057_input.disabled {
  10699. position:absolute;
  10700. left:0px;
  10701. top:0px;
  10702. width:127px;
  10703. height:25px;
  10704. padding:2px 2px 2px 2px;
  10705. font-family:'Microsoft YaHei', sans-serif;
  10706. font-weight:400;
  10707. font-style:normal;
  10708. font-size:10px;
  10709. letter-spacing:normal;
  10710. color:#000000;
  10711. vertical-align:none;
  10712. text-align:left;
  10713. text-transform:none;
  10714. background-color:transparent;
  10715. border-color:transparent;
  10716. }
  10717. #u25057_div {
  10718. border-width:0px;
  10719. position:absolute;
  10720. left:0px;
  10721. top:0px;
  10722. width:127px;
  10723. height:25px;
  10724. background:inherit;
  10725. background-color:rgba(255, 255, 255, 1);
  10726. border:none;
  10727. border-radius:0px;
  10728. -moz-box-shadow:none;
  10729. -webkit-box-shadow:none;
  10730. box-shadow:none;
  10731. font-family:'Microsoft YaHei', sans-serif;
  10732. font-weight:400;
  10733. font-style:normal;
  10734. font-size:10px;
  10735. }
  10736. #u25057 {
  10737. border-width:0px;
  10738. position:absolute;
  10739. left:386px;
  10740. top:205px;
  10741. width:127px;
  10742. height:25px;
  10743. display:flex;
  10744. font-family:'Microsoft YaHei', sans-serif;
  10745. font-weight:400;
  10746. font-style:normal;
  10747. font-size:10px;
  10748. }
  10749. #u25057 .text {
  10750. position:absolute;
  10751. align-self:center;
  10752. padding:2px 2px 2px 2px;
  10753. box-sizing:border-box;
  10754. width:100%;
  10755. }
  10756. #u25057_div.disabled {
  10757. border-width:0px;
  10758. position:absolute;
  10759. left:0px;
  10760. top:0px;
  10761. width:127px;
  10762. height:25px;
  10763. background:inherit;
  10764. background-color:rgba(240, 240, 240, 1);
  10765. border:none;
  10766. border-radius:0px;
  10767. -moz-box-shadow:none;
  10768. -webkit-box-shadow:none;
  10769. box-shadow:none;
  10770. font-family:'Microsoft YaHei', sans-serif;
  10771. font-weight:400;
  10772. font-style:normal;
  10773. font-size:10px;
  10774. }
  10775. #u25057.disabled {
  10776. }
  10777. #u25058 {
  10778. border-width:0px;
  10779. position:absolute;
  10780. left:0px;
  10781. top:0px;
  10782. width:0px;
  10783. height:0px;
  10784. }
  10785. #u25059_div {
  10786. border-width:0px;
  10787. position:absolute;
  10788. left:0px;
  10789. top:0px;
  10790. width:140px;
  10791. height:30px;
  10792. background:inherit;
  10793. background-color:rgba(255, 255, 255, 1);
  10794. box-sizing:border-box;
  10795. border-width:1px;
  10796. border-style:solid;
  10797. border-color:rgba(201, 201, 201, 1);
  10798. border-radius:4px;
  10799. -moz-box-shadow:none;
  10800. -webkit-box-shadow:none;
  10801. box-shadow:none;
  10802. font-family:'Microsoft YaHei', sans-serif;
  10803. font-weight:400;
  10804. font-style:normal;
  10805. font-size:14px;
  10806. color:#CCCCCC;
  10807. text-align:left;
  10808. }
  10809. #u25059 {
  10810. border-width:0px;
  10811. position:absolute;
  10812. left:528px;
  10813. top:204px;
  10814. width:140px;
  10815. height:30px;
  10816. display:flex;
  10817. font-family:'Microsoft YaHei', sans-serif;
  10818. font-weight:400;
  10819. font-style:normal;
  10820. font-size:14px;
  10821. color:#CCCCCC;
  10822. text-align:left;
  10823. }
  10824. #u25059 .text {
  10825. position:absolute;
  10826. align-self:center;
  10827. padding:2px 8px 2px 8px;
  10828. box-sizing:border-box;
  10829. width:100%;
  10830. }
  10831. #u25059_text {
  10832. border-width:0px;
  10833. word-wrap:break-word;
  10834. text-transform:none;
  10835. visibility:hidden;
  10836. }
  10837. #u25060_input {
  10838. position:absolute;
  10839. left:0px;
  10840. top:0px;
  10841. width:127px;
  10842. height:25px;
  10843. padding:2px 2px 2px 2px;
  10844. font-family:'Microsoft YaHei', sans-serif;
  10845. font-weight:400;
  10846. font-style:normal;
  10847. font-size:10px;
  10848. letter-spacing:normal;
  10849. color:#000000;
  10850. vertical-align:none;
  10851. text-align:left;
  10852. text-transform:none;
  10853. background-color:transparent;
  10854. border-color:transparent;
  10855. }
  10856. #u25060_input.disabled {
  10857. position:absolute;
  10858. left:0px;
  10859. top:0px;
  10860. width:127px;
  10861. height:25px;
  10862. padding:2px 2px 2px 2px;
  10863. font-family:'Microsoft YaHei', sans-serif;
  10864. font-weight:400;
  10865. font-style:normal;
  10866. font-size:10px;
  10867. letter-spacing:normal;
  10868. color:#000000;
  10869. vertical-align:none;
  10870. text-align:left;
  10871. text-transform:none;
  10872. background-color:transparent;
  10873. border-color:transparent;
  10874. }
  10875. #u25060_div {
  10876. border-width:0px;
  10877. position:absolute;
  10878. left:0px;
  10879. top:0px;
  10880. width:127px;
  10881. height:25px;
  10882. background:inherit;
  10883. background-color:rgba(255, 255, 255, 1);
  10884. border:none;
  10885. border-radius:0px;
  10886. -moz-box-shadow:none;
  10887. -webkit-box-shadow:none;
  10888. box-shadow:none;
  10889. font-family:'Microsoft YaHei', sans-serif;
  10890. font-weight:400;
  10891. font-style:normal;
  10892. font-size:10px;
  10893. }
  10894. #u25060 {
  10895. border-width:0px;
  10896. position:absolute;
  10897. left:536px;
  10898. top:205px;
  10899. width:127px;
  10900. height:25px;
  10901. display:flex;
  10902. font-family:'Microsoft YaHei', sans-serif;
  10903. font-weight:400;
  10904. font-style:normal;
  10905. font-size:10px;
  10906. }
  10907. #u25060 .text {
  10908. position:absolute;
  10909. align-self:center;
  10910. padding:2px 2px 2px 2px;
  10911. box-sizing:border-box;
  10912. width:100%;
  10913. }
  10914. #u25060_div.disabled {
  10915. border-width:0px;
  10916. position:absolute;
  10917. left:0px;
  10918. top:0px;
  10919. width:127px;
  10920. height:25px;
  10921. background:inherit;
  10922. background-color:rgba(240, 240, 240, 1);
  10923. border:none;
  10924. border-radius:0px;
  10925. -moz-box-shadow:none;
  10926. -webkit-box-shadow:none;
  10927. box-shadow:none;
  10928. font-family:'Microsoft YaHei', sans-serif;
  10929. font-weight:400;
  10930. font-style:normal;
  10931. font-size:10px;
  10932. }
  10933. #u25060.disabled {
  10934. }
  10935. #u25061 {
  10936. border-width:0px;
  10937. position:absolute;
  10938. left:0px;
  10939. top:0px;
  10940. width:0px;
  10941. height:0px;
  10942. }
  10943. #u25062_div {
  10944. border-width:0px;
  10945. position:absolute;
  10946. left:0px;
  10947. top:0px;
  10948. width:140px;
  10949. height:30px;
  10950. background:inherit;
  10951. background-color:rgba(255, 255, 255, 1);
  10952. box-sizing:border-box;
  10953. border-width:1px;
  10954. border-style:solid;
  10955. border-color:rgba(215, 215, 215, 1);
  10956. border-radius:4px;
  10957. -moz-box-shadow:none;
  10958. -webkit-box-shadow:none;
  10959. box-shadow:none;
  10960. font-size:11px;
  10961. }
  10962. #u25062 {
  10963. border-width:0px;
  10964. position:absolute;
  10965. left:1128px;
  10966. top:204px;
  10967. width:140px;
  10968. height:30px;
  10969. display:flex;
  10970. font-size:11px;
  10971. }
  10972. #u25062 .text {
  10973. position:absolute;
  10974. align-self:center;
  10975. padding:2px 2px 2px 2px;
  10976. box-sizing:border-box;
  10977. width:100%;
  10978. }
  10979. #u25062_text {
  10980. border-width:0px;
  10981. word-wrap:break-word;
  10982. text-transform:none;
  10983. visibility:hidden;
  10984. }
  10985. #u25063_input {
  10986. position:absolute;
  10987. left:0px;
  10988. top:0px;
  10989. width:126px;
  10990. height:23px;
  10991. padding:2px 2px 2px 2px;
  10992. font-family:'ArialMT', 'Arial', sans-serif;
  10993. font-weight:400;
  10994. font-style:normal;
  10995. font-size:11px;
  10996. letter-spacing:normal;
  10997. color:#AAAAAA;
  10998. vertical-align:none;
  10999. text-align:left;
  11000. text-transform:none;
  11001. background-color:transparent;
  11002. border-color:transparent;
  11003. }
  11004. #u25063_input.disabled {
  11005. position:absolute;
  11006. left:0px;
  11007. top:0px;
  11008. width:126px;
  11009. height:23px;
  11010. padding:2px 2px 2px 2px;
  11011. font-family:'ArialMT', 'Arial', sans-serif;
  11012. font-weight:400;
  11013. font-style:normal;
  11014. font-size:11px;
  11015. letter-spacing:normal;
  11016. color:#AAAAAA;
  11017. vertical-align:none;
  11018. text-align:left;
  11019. text-transform:none;
  11020. background-color:transparent;
  11021. border-color:transparent;
  11022. }
  11023. #u25063_div {
  11024. border-width:0px;
  11025. position:absolute;
  11026. left:0px;
  11027. top:0px;
  11028. width:126px;
  11029. height:23px;
  11030. background:inherit;
  11031. background-color:rgba(255, 255, 255, 1);
  11032. border:none;
  11033. border-radius:0px;
  11034. -moz-box-shadow:none;
  11035. -webkit-box-shadow:none;
  11036. box-shadow:none;
  11037. font-size:11px;
  11038. color:#AAAAAA;
  11039. }
  11040. #u25063 {
  11041. border-width:0px;
  11042. position:absolute;
  11043. left:1135px;
  11044. top:206px;
  11045. width:126px;
  11046. height:23px;
  11047. display:flex;
  11048. font-size:11px;
  11049. color:#AAAAAA;
  11050. }
  11051. #u25063 .text {
  11052. position:absolute;
  11053. align-self:flex-start;
  11054. padding:2px 2px 2px 2px;
  11055. box-sizing:border-box;
  11056. width:100%;
  11057. }
  11058. #u25063_div.disabled {
  11059. border-width:0px;
  11060. position:absolute;
  11061. left:0px;
  11062. top:0px;
  11063. width:126px;
  11064. height:23px;
  11065. background:inherit;
  11066. background-color:rgba(240, 240, 240, 1);
  11067. border:none;
  11068. border-radius:0px;
  11069. -moz-box-shadow:none;
  11070. -webkit-box-shadow:none;
  11071. box-shadow:none;
  11072. font-size:11px;
  11073. color:#AAAAAA;
  11074. }
  11075. #u25063.disabled {
  11076. }
  11077. .u25063_input_option {
  11078. font-size:11px;
  11079. }
  11080. #u25064_div {
  11081. border-width:0px;
  11082. position:absolute;
  11083. left:0px;
  11084. top:0px;
  11085. width:1272px;
  11086. height:145px;
  11087. background:inherit;
  11088. background-color:rgba(255, 255, 255, 0);
  11089. box-sizing:border-box;
  11090. border-width:1px;
  11091. border-style:solid;
  11092. border-color:rgba(217, 0, 27, 1);
  11093. border-radius:3px;
  11094. -moz-box-shadow:none;
  11095. -webkit-box-shadow:none;
  11096. box-shadow:none;
  11097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11098. font-weight:400;
  11099. font-style:normal;
  11100. color:#D9001B;
  11101. line-height:25px;
  11102. }
  11103. #u25064 {
  11104. border-width:0px;
  11105. position:absolute;
  11106. left:247px;
  11107. top:702px;
  11108. width:1272px;
  11109. height:145px;
  11110. display:flex;
  11111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11112. font-weight:400;
  11113. font-style:normal;
  11114. color:#D9001B;
  11115. line-height:25px;
  11116. }
  11117. #u25064 .text {
  11118. position:absolute;
  11119. align-self:flex-start;
  11120. padding:10px 10px 10px 10px;
  11121. box-sizing:border-box;
  11122. width:100%;
  11123. }
  11124. #u25064_text {
  11125. border-width:0px;
  11126. word-wrap:break-word;
  11127. text-transform:none;
  11128. }
  11129. #u25065_div {
  11130. border-width:0px;
  11131. position:absolute;
  11132. left:0px;
  11133. top:0px;
  11134. width:79px;
  11135. height:30px;
  11136. background:inherit;
  11137. background-color:rgba(255, 255, 255, 1);
  11138. box-sizing:border-box;
  11139. border-width:1px;
  11140. border-style:solid;
  11141. border-color:rgba(170, 170, 170, 1);
  11142. border-radius:4px;
  11143. -moz-box-shadow:none;
  11144. -webkit-box-shadow:none;
  11145. box-shadow:none;
  11146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11147. font-weight:400;
  11148. font-style:normal;
  11149. font-size:12px;
  11150. color:#555555;
  11151. }
  11152. #u25065 {
  11153. border-width:0px;
  11154. position:absolute;
  11155. left:1489px;
  11156. top:256px;
  11157. width:79px;
  11158. height:30px;
  11159. display:flex;
  11160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11161. font-weight:400;
  11162. font-style:normal;
  11163. font-size:12px;
  11164. color:#555555;
  11165. }
  11166. #u25065 .text {
  11167. position:absolute;
  11168. align-self:center;
  11169. padding:5px 15px 5px 15px;
  11170. box-sizing:border-box;
  11171. width:100%;
  11172. }
  11173. #u25065_text {
  11174. border-width:0px;
  11175. white-space:nowrap;
  11176. text-transform:none;
  11177. }
  11178. #u25066_div {
  11179. border-width:0px;
  11180. position:absolute;
  11181. left:0px;
  11182. top:0px;
  11183. width:715px;
  11184. height:30px;
  11185. background:inherit;
  11186. background-color:rgba(255, 255, 255, 0);
  11187. border:none;
  11188. border-left:0px;
  11189. border-top:0px;
  11190. border-right:0px;
  11191. border-radius:0px;
  11192. border-bottom-right-radius:0px;
  11193. border-bottom-left-radius:0px;
  11194. -moz-box-shadow:none;
  11195. -webkit-box-shadow:none;
  11196. box-shadow:none;
  11197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11198. font-weight:400;
  11199. font-style:normal;
  11200. font-size:14px;
  11201. color:#D9001B;
  11202. }
  11203. #u25066 {
  11204. border-width:0px;
  11205. position:absolute;
  11206. left:548px;
  11207. top:74px;
  11208. width:715px;
  11209. height:30px;
  11210. display:flex;
  11211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11212. font-weight:400;
  11213. font-style:normal;
  11214. font-size:14px;
  11215. color:#D9001B;
  11216. }
  11217. #u25066 .text {
  11218. position:absolute;
  11219. align-self:center;
  11220. padding:5px 0px 5px 0px;
  11221. box-sizing:border-box;
  11222. width:100%;
  11223. }
  11224. #u25066_text {
  11225. border-width:0px;
  11226. white-space:nowrap;
  11227. text-transform:none;
  11228. }