styles.css 154 KB

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