styles.css 169 KB

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