styles.css 172 KB

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