styles.css 157 KB

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