styles.css 206 KB

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