styles.css 140 KB

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