styles.css 189 KB

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