styles.css 194 KB

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