styles.css 107 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-79px;
  6. width:2400px;
  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. #u38841_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:726px;
  25. height:1890px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  34. font-weight:400;
  35. font-style:normal;
  36. line-height:30px;
  37. }
  38. #u38841 {
  39. border-width:0px;
  40. position:absolute;
  41. left:79px;
  42. top:76px;
  43. width:726px;
  44. height:1890px;
  45. display:flex;
  46. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  47. font-weight:400;
  48. font-style:normal;
  49. line-height:30px;
  50. }
  51. #u38841 .text {
  52. position:absolute;
  53. align-self:flex-start;
  54. padding:0px 0px 0px 0px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u38841_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. }
  63. #u38842_div {
  64. border-width:0px;
  65. position:absolute;
  66. left:0px;
  67. top:0px;
  68. width:463px;
  69. height:1560px;
  70. background:inherit;
  71. background-color:rgba(255, 255, 255, 0);
  72. border:none;
  73. border-radius:0px;
  74. -moz-box-shadow:none;
  75. -webkit-box-shadow:none;
  76. box-shadow:none;
  77. line-height:30px;
  78. }
  79. #u38842 {
  80. border-width:0px;
  81. position:absolute;
  82. left:945px;
  83. top:76px;
  84. width:463px;
  85. height:1560px;
  86. display:flex;
  87. line-height:30px;
  88. }
  89. #u38842 .text {
  90. position:absolute;
  91. align-self:flex-start;
  92. padding:0px 0px 0px 0px;
  93. box-sizing:border-box;
  94. width:100%;
  95. }
  96. #u38842_text {
  97. border-width:0px;
  98. white-space:nowrap;
  99. text-transform:none;
  100. }
  101. #u38843_img {
  102. border-width:0px;
  103. position:absolute;
  104. left:0px;
  105. top:0px;
  106. width:976px;
  107. height:1001px;
  108. }
  109. #u38843 {
  110. border-width:0px;
  111. position:absolute;
  112. left:1503px;
  113. top:101px;
  114. width:976px;
  115. height:1001px;
  116. display:flex;
  117. }
  118. #u38843 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:2px 2px 2px 2px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u38843_text {
  126. border-width:0px;
  127. word-wrap:break-word;
  128. text-transform:none;
  129. visibility:hidden;
  130. }
  131. #u38844_div {
  132. border-width:0px;
  133. position:absolute;
  134. left:0px;
  135. top:0px;
  136. width:726px;
  137. height:360px;
  138. background:inherit;
  139. background-color:rgba(255, 255, 255, 0);
  140. border:none;
  141. border-radius:0px;
  142. -moz-box-shadow:none;
  143. -webkit-box-shadow:none;
  144. box-shadow:none;
  145. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  146. font-style:normal;
  147. line-height:30px;
  148. }
  149. #u38844 {
  150. border-width:0px;
  151. position:absolute;
  152. left:79px;
  153. top:1986px;
  154. width:726px;
  155. height:360px;
  156. display:flex;
  157. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  158. font-style:normal;
  159. line-height:30px;
  160. }
  161. #u38844 .text {
  162. position:absolute;
  163. align-self:flex-start;
  164. padding:0px 0px 0px 0px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u38844_text {
  169. border-width:0px;
  170. word-wrap:break-word;
  171. text-transform:none;
  172. }
  173. #u38845 {
  174. border-width:0px;
  175. position:absolute;
  176. left:79px;
  177. top:2346px;
  178. width:700px;
  179. height:986px;
  180. }
  181. #u38846_img {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:101px;
  187. height:34px;
  188. }
  189. #u38846 {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:101px;
  195. height:34px;
  196. display:flex;
  197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  198. font-weight:400;
  199. font-style:normal;
  200. color:#FFFFFF;
  201. line-height:30px;
  202. }
  203. #u38846 .text {
  204. position:absolute;
  205. align-self:center;
  206. padding:2px 2px 2px 2px;
  207. box-sizing:border-box;
  208. width:100%;
  209. }
  210. #u38846_text {
  211. border-width:0px;
  212. word-wrap:break-word;
  213. text-transform:none;
  214. }
  215. #u38847_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:99px;
  221. height:34px;
  222. }
  223. #u38847 {
  224. border-width:0px;
  225. position:absolute;
  226. left:101px;
  227. top:0px;
  228. width:99px;
  229. height:34px;
  230. display:flex;
  231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  232. font-weight:400;
  233. font-style:normal;
  234. color:#FFFFFF;
  235. line-height:30px;
  236. }
  237. #u38847 .text {
  238. position:absolute;
  239. align-self:center;
  240. padding:2px 2px 2px 2px;
  241. box-sizing:border-box;
  242. width:100%;
  243. }
  244. #u38847_text {
  245. border-width:0px;
  246. word-wrap:break-word;
  247. text-transform:none;
  248. }
  249. #u38848_img {
  250. border-width:0px;
  251. position:absolute;
  252. left:0px;
  253. top:0px;
  254. width:100px;
  255. height:34px;
  256. }
  257. #u38848 {
  258. border-width:0px;
  259. position:absolute;
  260. left:200px;
  261. top:0px;
  262. width:100px;
  263. height:34px;
  264. display:flex;
  265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  266. font-weight:400;
  267. font-style:normal;
  268. color:#FFFFFF;
  269. line-height:30px;
  270. }
  271. #u38848 .text {
  272. position:absolute;
  273. align-self:center;
  274. padding:2px 2px 2px 2px;
  275. box-sizing:border-box;
  276. width:100%;
  277. }
  278. #u38848_text {
  279. border-width:0px;
  280. word-wrap:break-word;
  281. text-transform:none;
  282. }
  283. #u38849_img {
  284. border-width:0px;
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:100px;
  289. height:34px;
  290. }
  291. #u38849 {
  292. border-width:0px;
  293. position:absolute;
  294. left:300px;
  295. top:0px;
  296. width:100px;
  297. height:34px;
  298. display:flex;
  299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  300. font-weight:400;
  301. font-style:normal;
  302. color:#FFFFFF;
  303. line-height:30px;
  304. }
  305. #u38849 .text {
  306. position:absolute;
  307. align-self:center;
  308. padding:2px 2px 2px 2px;
  309. box-sizing:border-box;
  310. width:100%;
  311. }
  312. #u38849_text {
  313. border-width:0px;
  314. word-wrap:break-word;
  315. text-transform:none;
  316. }
  317. #u38850_img {
  318. border-width:0px;
  319. position:absolute;
  320. left:0px;
  321. top:0px;
  322. width:100px;
  323. height:34px;
  324. }
  325. #u38850 {
  326. border-width:0px;
  327. position:absolute;
  328. left:400px;
  329. top:0px;
  330. width:100px;
  331. height:34px;
  332. display:flex;
  333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  334. font-weight:400;
  335. font-style:normal;
  336. color:#FFFFFF;
  337. line-height:30px;
  338. }
  339. #u38850 .text {
  340. position:absolute;
  341. align-self:center;
  342. padding:2px 2px 2px 2px;
  343. box-sizing:border-box;
  344. width:100%;
  345. }
  346. #u38850_text {
  347. border-width:0px;
  348. word-wrap:break-word;
  349. text-transform:none;
  350. }
  351. #u38851_img {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:100px;
  357. height:34px;
  358. }
  359. #u38851 {
  360. border-width:0px;
  361. position:absolute;
  362. left:500px;
  363. top:0px;
  364. width:100px;
  365. height:34px;
  366. display:flex;
  367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  368. font-weight:400;
  369. font-style:normal;
  370. color:#FFFFFF;
  371. line-height:30px;
  372. }
  373. #u38851 .text {
  374. position:absolute;
  375. align-self:center;
  376. padding:2px 2px 2px 2px;
  377. box-sizing:border-box;
  378. width:100%;
  379. }
  380. #u38851_text {
  381. border-width:0px;
  382. word-wrap:break-word;
  383. text-transform:none;
  384. }
  385. #u38852_img {
  386. border-width:0px;
  387. position:absolute;
  388. left:0px;
  389. top:0px;
  390. width:100px;
  391. height:34px;
  392. }
  393. #u38852 {
  394. border-width:0px;
  395. position:absolute;
  396. left:600px;
  397. top:0px;
  398. width:100px;
  399. height:34px;
  400. display:flex;
  401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  402. font-weight:400;
  403. font-style:normal;
  404. color:#FFFFFF;
  405. line-height:30px;
  406. }
  407. #u38852 .text {
  408. position:absolute;
  409. align-self:center;
  410. padding:2px 2px 2px 2px;
  411. box-sizing:border-box;
  412. width:100%;
  413. }
  414. #u38852_text {
  415. border-width:0px;
  416. word-wrap:break-word;
  417. text-transform:none;
  418. }
  419. #u38853_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:101px;
  425. height:34px;
  426. }
  427. #u38853 {
  428. border-width:0px;
  429. position:absolute;
  430. left:0px;
  431. top:34px;
  432. width:101px;
  433. height:34px;
  434. display:flex;
  435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  436. font-weight:400;
  437. font-style:normal;
  438. line-height:30px;
  439. }
  440. #u38853 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u38853_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u38854_img {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:99px;
  458. height:34px;
  459. }
  460. #u38854 {
  461. border-width:0px;
  462. position:absolute;
  463. left:101px;
  464. top:34px;
  465. width:99px;
  466. height:34px;
  467. display:flex;
  468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  469. font-weight:400;
  470. font-style:normal;
  471. line-height:30px;
  472. }
  473. #u38854 .text {
  474. position:absolute;
  475. align-self:center;
  476. padding:2px 2px 2px 2px;
  477. box-sizing:border-box;
  478. width:100%;
  479. }
  480. #u38854_text {
  481. border-width:0px;
  482. word-wrap:break-word;
  483. text-transform:none;
  484. }
  485. #u38855_img {
  486. border-width:0px;
  487. position:absolute;
  488. left:0px;
  489. top:0px;
  490. width:100px;
  491. height:34px;
  492. }
  493. #u38855 {
  494. border-width:0px;
  495. position:absolute;
  496. left:200px;
  497. top:34px;
  498. width:100px;
  499. height:34px;
  500. display:flex;
  501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  502. font-weight:400;
  503. font-style:normal;
  504. line-height:30px;
  505. }
  506. #u38855 .text {
  507. position:absolute;
  508. align-self:center;
  509. padding:2px 2px 2px 2px;
  510. box-sizing:border-box;
  511. width:100%;
  512. }
  513. #u38855_text {
  514. border-width:0px;
  515. word-wrap:break-word;
  516. text-transform:none;
  517. }
  518. #u38856_img {
  519. border-width:0px;
  520. position:absolute;
  521. left:0px;
  522. top:0px;
  523. width:100px;
  524. height:34px;
  525. }
  526. #u38856 {
  527. border-width:0px;
  528. position:absolute;
  529. left:300px;
  530. top:34px;
  531. width:100px;
  532. height:34px;
  533. display:flex;
  534. line-height:30px;
  535. }
  536. #u38856 .text {
  537. position:absolute;
  538. align-self:center;
  539. padding:2px 2px 2px 2px;
  540. box-sizing:border-box;
  541. width:100%;
  542. }
  543. #u38856_text {
  544. border-width:0px;
  545. word-wrap:break-word;
  546. text-transform:none;
  547. visibility:hidden;
  548. }
  549. #u38857_img {
  550. border-width:0px;
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:100px;
  555. height:34px;
  556. }
  557. #u38857 {
  558. border-width:0px;
  559. position:absolute;
  560. left:400px;
  561. top:34px;
  562. width:100px;
  563. height:34px;
  564. display:flex;
  565. line-height:30px;
  566. }
  567. #u38857 .text {
  568. position:absolute;
  569. align-self:center;
  570. padding:2px 2px 2px 2px;
  571. box-sizing:border-box;
  572. width:100%;
  573. }
  574. #u38857_text {
  575. border-width:0px;
  576. word-wrap:break-word;
  577. text-transform:none;
  578. visibility:hidden;
  579. }
  580. #u38858_img {
  581. border-width:0px;
  582. position:absolute;
  583. left:0px;
  584. top:0px;
  585. width:100px;
  586. height:34px;
  587. }
  588. #u38858 {
  589. border-width:0px;
  590. position:absolute;
  591. left:500px;
  592. top:34px;
  593. width:100px;
  594. height:34px;
  595. display:flex;
  596. line-height:30px;
  597. }
  598. #u38858 .text {
  599. position:absolute;
  600. align-self:center;
  601. padding:2px 2px 2px 2px;
  602. box-sizing:border-box;
  603. width:100%;
  604. }
  605. #u38858_text {
  606. border-width:0px;
  607. word-wrap:break-word;
  608. text-transform:none;
  609. visibility:hidden;
  610. }
  611. #u38859_img {
  612. border-width:0px;
  613. position:absolute;
  614. left:0px;
  615. top:0px;
  616. width:100px;
  617. height:34px;
  618. }
  619. #u38859 {
  620. border-width:0px;
  621. position:absolute;
  622. left:600px;
  623. top:34px;
  624. width:100px;
  625. height:34px;
  626. display:flex;
  627. line-height:30px;
  628. }
  629. #u38859 .text {
  630. position:absolute;
  631. align-self:center;
  632. padding:2px 2px 2px 2px;
  633. box-sizing:border-box;
  634. width:100%;
  635. }
  636. #u38859_text {
  637. border-width:0px;
  638. word-wrap:break-word;
  639. text-transform:none;
  640. visibility:hidden;
  641. }
  642. #u38860_img {
  643. border-width:0px;
  644. position:absolute;
  645. left:0px;
  646. top:0px;
  647. width:101px;
  648. height:34px;
  649. }
  650. #u38860 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:68px;
  655. width:101px;
  656. height:34px;
  657. display:flex;
  658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  659. font-weight:400;
  660. font-style:normal;
  661. line-height:30px;
  662. }
  663. #u38860 .text {
  664. position:absolute;
  665. align-self:center;
  666. padding:2px 2px 2px 2px;
  667. box-sizing:border-box;
  668. width:100%;
  669. }
  670. #u38860_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u38861_img {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:99px;
  681. height:34px;
  682. }
  683. #u38861 {
  684. border-width:0px;
  685. position:absolute;
  686. left:101px;
  687. top:68px;
  688. width:99px;
  689. height:34px;
  690. display:flex;
  691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  692. font-weight:400;
  693. font-style:normal;
  694. line-height:30px;
  695. }
  696. #u38861 .text {
  697. position:absolute;
  698. align-self:center;
  699. padding:2px 2px 2px 2px;
  700. box-sizing:border-box;
  701. width:100%;
  702. }
  703. #u38861_text {
  704. border-width:0px;
  705. word-wrap:break-word;
  706. text-transform:none;
  707. }
  708. #u38862_img {
  709. border-width:0px;
  710. position:absolute;
  711. left:0px;
  712. top:0px;
  713. width:100px;
  714. height:34px;
  715. }
  716. #u38862 {
  717. border-width:0px;
  718. position:absolute;
  719. left:200px;
  720. top:68px;
  721. width:100px;
  722. height:34px;
  723. display:flex;
  724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  725. font-weight:400;
  726. font-style:normal;
  727. line-height:30px;
  728. }
  729. #u38862 .text {
  730. position:absolute;
  731. align-self:center;
  732. padding:2px 2px 2px 2px;
  733. box-sizing:border-box;
  734. width:100%;
  735. }
  736. #u38862_text {
  737. border-width:0px;
  738. word-wrap:break-word;
  739. text-transform:none;
  740. }
  741. #u38863_img {
  742. border-width:0px;
  743. position:absolute;
  744. left:0px;
  745. top:0px;
  746. width:100px;
  747. height:34px;
  748. }
  749. #u38863 {
  750. border-width:0px;
  751. position:absolute;
  752. left:300px;
  753. top:68px;
  754. width:100px;
  755. height:34px;
  756. display:flex;
  757. line-height:30px;
  758. }
  759. #u38863 .text {
  760. position:absolute;
  761. align-self:center;
  762. padding:2px 2px 2px 2px;
  763. box-sizing:border-box;
  764. width:100%;
  765. }
  766. #u38863_text {
  767. border-width:0px;
  768. word-wrap:break-word;
  769. text-transform:none;
  770. visibility:hidden;
  771. }
  772. #u38864_img {
  773. border-width:0px;
  774. position:absolute;
  775. left:0px;
  776. top:0px;
  777. width:100px;
  778. height:34px;
  779. }
  780. #u38864 {
  781. border-width:0px;
  782. position:absolute;
  783. left:400px;
  784. top:68px;
  785. width:100px;
  786. height:34px;
  787. display:flex;
  788. line-height:30px;
  789. }
  790. #u38864 .text {
  791. position:absolute;
  792. align-self:center;
  793. padding:2px 2px 2px 2px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u38864_text {
  798. border-width:0px;
  799. word-wrap:break-word;
  800. text-transform:none;
  801. visibility:hidden;
  802. }
  803. #u38865_img {
  804. border-width:0px;
  805. position:absolute;
  806. left:0px;
  807. top:0px;
  808. width:100px;
  809. height:34px;
  810. }
  811. #u38865 {
  812. border-width:0px;
  813. position:absolute;
  814. left:500px;
  815. top:68px;
  816. width:100px;
  817. height:34px;
  818. display:flex;
  819. line-height:30px;
  820. }
  821. #u38865 .text {
  822. position:absolute;
  823. align-self:center;
  824. padding:2px 2px 2px 2px;
  825. box-sizing:border-box;
  826. width:100%;
  827. }
  828. #u38865_text {
  829. border-width:0px;
  830. word-wrap:break-word;
  831. text-transform:none;
  832. visibility:hidden;
  833. }
  834. #u38866_img {
  835. border-width:0px;
  836. position:absolute;
  837. left:0px;
  838. top:0px;
  839. width:100px;
  840. height:34px;
  841. }
  842. #u38866 {
  843. border-width:0px;
  844. position:absolute;
  845. left:600px;
  846. top:68px;
  847. width:100px;
  848. height:34px;
  849. display:flex;
  850. line-height:30px;
  851. }
  852. #u38866 .text {
  853. position:absolute;
  854. align-self:center;
  855. padding:2px 2px 2px 2px;
  856. box-sizing:border-box;
  857. width:100%;
  858. }
  859. #u38866_text {
  860. border-width:0px;
  861. word-wrap:break-word;
  862. text-transform:none;
  863. visibility:hidden;
  864. }
  865. #u38867_img {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:101px;
  871. height:34px;
  872. }
  873. #u38867 {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:102px;
  878. width:101px;
  879. height:34px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. line-height:30px;
  885. }
  886. #u38867 .text {
  887. position:absolute;
  888. align-self:center;
  889. padding:2px 2px 2px 2px;
  890. box-sizing:border-box;
  891. width:100%;
  892. }
  893. #u38867_text {
  894. border-width:0px;
  895. word-wrap:break-word;
  896. text-transform:none;
  897. }
  898. #u38868_img {
  899. border-width:0px;
  900. position:absolute;
  901. left:0px;
  902. top:0px;
  903. width:99px;
  904. height:34px;
  905. }
  906. #u38868 {
  907. border-width:0px;
  908. position:absolute;
  909. left:101px;
  910. top:102px;
  911. width:99px;
  912. height:34px;
  913. display:flex;
  914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  915. font-weight:400;
  916. font-style:normal;
  917. line-height:30px;
  918. }
  919. #u38868 .text {
  920. position:absolute;
  921. align-self:center;
  922. padding:2px 2px 2px 2px;
  923. box-sizing:border-box;
  924. width:100%;
  925. }
  926. #u38868_text {
  927. border-width:0px;
  928. word-wrap:break-word;
  929. text-transform:none;
  930. }
  931. #u38869_img {
  932. border-width:0px;
  933. position:absolute;
  934. left:0px;
  935. top:0px;
  936. width:100px;
  937. height:34px;
  938. }
  939. #u38869 {
  940. border-width:0px;
  941. position:absolute;
  942. left:200px;
  943. top:102px;
  944. width:100px;
  945. height:34px;
  946. display:flex;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. line-height:30px;
  951. }
  952. #u38869 .text {
  953. position:absolute;
  954. align-self:center;
  955. padding:2px 2px 2px 2px;
  956. box-sizing:border-box;
  957. width:100%;
  958. }
  959. #u38869_text {
  960. border-width:0px;
  961. word-wrap:break-word;
  962. text-transform:none;
  963. }
  964. #u38870_img {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:100px;
  970. height:34px;
  971. }
  972. #u38870 {
  973. border-width:0px;
  974. position:absolute;
  975. left:300px;
  976. top:102px;
  977. width:100px;
  978. height:34px;
  979. display:flex;
  980. line-height:30px;
  981. }
  982. #u38870 .text {
  983. position:absolute;
  984. align-self:center;
  985. padding:2px 2px 2px 2px;
  986. box-sizing:border-box;
  987. width:100%;
  988. }
  989. #u38870_text {
  990. border-width:0px;
  991. word-wrap:break-word;
  992. text-transform:none;
  993. visibility:hidden;
  994. }
  995. #u38871_img {
  996. border-width:0px;
  997. position:absolute;
  998. left:0px;
  999. top:0px;
  1000. width:100px;
  1001. height:34px;
  1002. }
  1003. #u38871 {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:400px;
  1007. top:102px;
  1008. width:100px;
  1009. height:34px;
  1010. display:flex;
  1011. line-height:30px;
  1012. }
  1013. #u38871 .text {
  1014. position:absolute;
  1015. align-self:center;
  1016. padding:2px 2px 2px 2px;
  1017. box-sizing:border-box;
  1018. width:100%;
  1019. }
  1020. #u38871_text {
  1021. border-width:0px;
  1022. word-wrap:break-word;
  1023. text-transform:none;
  1024. visibility:hidden;
  1025. }
  1026. #u38872_img {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:0px;
  1030. top:0px;
  1031. width:100px;
  1032. height:34px;
  1033. }
  1034. #u38872 {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:500px;
  1038. top:102px;
  1039. width:100px;
  1040. height:34px;
  1041. display:flex;
  1042. line-height:30px;
  1043. }
  1044. #u38872 .text {
  1045. position:absolute;
  1046. align-self:center;
  1047. padding:2px 2px 2px 2px;
  1048. box-sizing:border-box;
  1049. width:100%;
  1050. }
  1051. #u38872_text {
  1052. border-width:0px;
  1053. word-wrap:break-word;
  1054. text-transform:none;
  1055. visibility:hidden;
  1056. }
  1057. #u38873_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:100px;
  1063. height:34px;
  1064. }
  1065. #u38873 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:600px;
  1069. top:102px;
  1070. width:100px;
  1071. height:34px;
  1072. display:flex;
  1073. line-height:30px;
  1074. }
  1075. #u38873 .text {
  1076. position:absolute;
  1077. align-self:center;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u38873_text {
  1083. border-width:0px;
  1084. word-wrap:break-word;
  1085. text-transform:none;
  1086. visibility:hidden;
  1087. }
  1088. #u38874_img {
  1089. border-width:0px;
  1090. position:absolute;
  1091. left:0px;
  1092. top:0px;
  1093. width:101px;
  1094. height:34px;
  1095. }
  1096. #u38874 {
  1097. border-width:0px;
  1098. position:absolute;
  1099. left:0px;
  1100. top:136px;
  1101. width:101px;
  1102. height:34px;
  1103. display:flex;
  1104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1105. font-weight:400;
  1106. font-style:normal;
  1107. line-height:30px;
  1108. }
  1109. #u38874 .text {
  1110. position:absolute;
  1111. align-self:center;
  1112. padding:2px 2px 2px 2px;
  1113. box-sizing:border-box;
  1114. width:100%;
  1115. }
  1116. #u38874_text {
  1117. border-width:0px;
  1118. word-wrap:break-word;
  1119. text-transform:none;
  1120. }
  1121. #u38875_img {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:0px;
  1125. top:0px;
  1126. width:99px;
  1127. height:34px;
  1128. }
  1129. #u38875 {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:101px;
  1133. top:136px;
  1134. width:99px;
  1135. height:34px;
  1136. display:flex;
  1137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1138. font-weight:400;
  1139. font-style:normal;
  1140. line-height:30px;
  1141. }
  1142. #u38875 .text {
  1143. position:absolute;
  1144. align-self:center;
  1145. padding:2px 2px 2px 2px;
  1146. box-sizing:border-box;
  1147. width:100%;
  1148. }
  1149. #u38875_text {
  1150. border-width:0px;
  1151. word-wrap:break-word;
  1152. text-transform:none;
  1153. }
  1154. #u38876_img {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:100px;
  1160. height:34px;
  1161. }
  1162. #u38876 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:200px;
  1166. top:136px;
  1167. width:100px;
  1168. height:34px;
  1169. display:flex;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. line-height:30px;
  1174. }
  1175. #u38876 .text {
  1176. position:absolute;
  1177. align-self:center;
  1178. padding:2px 2px 2px 2px;
  1179. box-sizing:border-box;
  1180. width:100%;
  1181. }
  1182. #u38876_text {
  1183. border-width:0px;
  1184. word-wrap:break-word;
  1185. text-transform:none;
  1186. }
  1187. #u38877_img {
  1188. border-width:0px;
  1189. position:absolute;
  1190. left:0px;
  1191. top:0px;
  1192. width:100px;
  1193. height:34px;
  1194. }
  1195. #u38877 {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:300px;
  1199. top:136px;
  1200. width:100px;
  1201. height:34px;
  1202. display:flex;
  1203. line-height:30px;
  1204. }
  1205. #u38877 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u38877_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u38878_img {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:34px;
  1225. }
  1226. #u38878 {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:400px;
  1230. top:136px;
  1231. width:100px;
  1232. height:34px;
  1233. display:flex;
  1234. line-height:30px;
  1235. }
  1236. #u38878 .text {
  1237. position:absolute;
  1238. align-self:center;
  1239. padding:2px 2px 2px 2px;
  1240. box-sizing:border-box;
  1241. width:100%;
  1242. }
  1243. #u38878_text {
  1244. border-width:0px;
  1245. word-wrap:break-word;
  1246. text-transform:none;
  1247. visibility:hidden;
  1248. }
  1249. #u38879_img {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:0px;
  1253. top:0px;
  1254. width:100px;
  1255. height:34px;
  1256. }
  1257. #u38879 {
  1258. border-width:0px;
  1259. position:absolute;
  1260. left:500px;
  1261. top:136px;
  1262. width:100px;
  1263. height:34px;
  1264. display:flex;
  1265. line-height:30px;
  1266. }
  1267. #u38879 .text {
  1268. position:absolute;
  1269. align-self:center;
  1270. padding:2px 2px 2px 2px;
  1271. box-sizing:border-box;
  1272. width:100%;
  1273. }
  1274. #u38879_text {
  1275. border-width:0px;
  1276. word-wrap:break-word;
  1277. text-transform:none;
  1278. visibility:hidden;
  1279. }
  1280. #u38880_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:100px;
  1286. height:34px;
  1287. }
  1288. #u38880 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:600px;
  1292. top:136px;
  1293. width:100px;
  1294. height:34px;
  1295. display:flex;
  1296. line-height:30px;
  1297. }
  1298. #u38880 .text {
  1299. position:absolute;
  1300. align-self:center;
  1301. padding:2px 2px 2px 2px;
  1302. box-sizing:border-box;
  1303. width:100%;
  1304. }
  1305. #u38880_text {
  1306. border-width:0px;
  1307. word-wrap:break-word;
  1308. text-transform:none;
  1309. visibility:hidden;
  1310. }
  1311. #u38881_img {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:101px;
  1317. height:34px;
  1318. }
  1319. #u38881 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:0px;
  1323. top:170px;
  1324. width:101px;
  1325. height:34px;
  1326. display:flex;
  1327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1328. font-weight:400;
  1329. font-style:normal;
  1330. line-height:30px;
  1331. }
  1332. #u38881 .text {
  1333. position:absolute;
  1334. align-self:center;
  1335. padding:2px 2px 2px 2px;
  1336. box-sizing:border-box;
  1337. width:100%;
  1338. }
  1339. #u38881_text {
  1340. border-width:0px;
  1341. word-wrap:break-word;
  1342. text-transform:none;
  1343. }
  1344. #u38882_img {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:0px;
  1348. top:0px;
  1349. width:99px;
  1350. height:34px;
  1351. }
  1352. #u38882 {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:101px;
  1356. top:170px;
  1357. width:99px;
  1358. height:34px;
  1359. display:flex;
  1360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1361. font-weight:400;
  1362. font-style:normal;
  1363. line-height:30px;
  1364. }
  1365. #u38882 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u38882_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. }
  1377. #u38883_img {
  1378. border-width:0px;
  1379. position:absolute;
  1380. left:0px;
  1381. top:0px;
  1382. width:100px;
  1383. height:34px;
  1384. }
  1385. #u38883 {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:200px;
  1389. top:170px;
  1390. width:100px;
  1391. height:34px;
  1392. display:flex;
  1393. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  1394. font-weight:400;
  1395. font-style:normal;
  1396. line-height:30px;
  1397. }
  1398. #u38883 .text {
  1399. position:absolute;
  1400. align-self:center;
  1401. padding:2px 2px 2px 2px;
  1402. box-sizing:border-box;
  1403. width:100%;
  1404. }
  1405. #u38883_text {
  1406. border-width:0px;
  1407. word-wrap:break-word;
  1408. text-transform:none;
  1409. }
  1410. #u38884_img {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:100px;
  1416. height:34px;
  1417. }
  1418. #u38884 {
  1419. border-width:0px;
  1420. position:absolute;
  1421. left:300px;
  1422. top:170px;
  1423. width:100px;
  1424. height:34px;
  1425. display:flex;
  1426. line-height:30px;
  1427. }
  1428. #u38884 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:2px 2px 2px 2px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u38884_text {
  1436. border-width:0px;
  1437. word-wrap:break-word;
  1438. text-transform:none;
  1439. visibility:hidden;
  1440. }
  1441. #u38885_img {
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:0px;
  1445. top:0px;
  1446. width:100px;
  1447. height:34px;
  1448. }
  1449. #u38885 {
  1450. border-width:0px;
  1451. position:absolute;
  1452. left:400px;
  1453. top:170px;
  1454. width:100px;
  1455. height:34px;
  1456. display:flex;
  1457. line-height:30px;
  1458. }
  1459. #u38885 .text {
  1460. position:absolute;
  1461. align-self:center;
  1462. padding:2px 2px 2px 2px;
  1463. box-sizing:border-box;
  1464. width:100%;
  1465. }
  1466. #u38885_text {
  1467. border-width:0px;
  1468. word-wrap:break-word;
  1469. text-transform:none;
  1470. visibility:hidden;
  1471. }
  1472. #u38886_img {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:0px;
  1476. top:0px;
  1477. width:100px;
  1478. height:34px;
  1479. }
  1480. #u38886 {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:500px;
  1484. top:170px;
  1485. width:100px;
  1486. height:34px;
  1487. display:flex;
  1488. line-height:30px;
  1489. }
  1490. #u38886 .text {
  1491. position:absolute;
  1492. align-self:center;
  1493. padding:2px 2px 2px 2px;
  1494. box-sizing:border-box;
  1495. width:100%;
  1496. }
  1497. #u38886_text {
  1498. border-width:0px;
  1499. word-wrap:break-word;
  1500. text-transform:none;
  1501. visibility:hidden;
  1502. }
  1503. #u38887_img {
  1504. border-width:0px;
  1505. position:absolute;
  1506. left:0px;
  1507. top:0px;
  1508. width:100px;
  1509. height:34px;
  1510. }
  1511. #u38887 {
  1512. border-width:0px;
  1513. position:absolute;
  1514. left:600px;
  1515. top:170px;
  1516. width:100px;
  1517. height:34px;
  1518. display:flex;
  1519. line-height:30px;
  1520. }
  1521. #u38887 .text {
  1522. position:absolute;
  1523. align-self:center;
  1524. padding:2px 2px 2px 2px;
  1525. box-sizing:border-box;
  1526. width:100%;
  1527. }
  1528. #u38887_text {
  1529. border-width:0px;
  1530. word-wrap:break-word;
  1531. text-transform:none;
  1532. visibility:hidden;
  1533. }
  1534. #u38888_img {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:101px;
  1540. height:34px;
  1541. }
  1542. #u38888 {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:0px;
  1546. top:204px;
  1547. width:101px;
  1548. height:34px;
  1549. display:flex;
  1550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1551. font-weight:400;
  1552. font-style:normal;
  1553. line-height:30px;
  1554. }
  1555. #u38888 .text {
  1556. position:absolute;
  1557. align-self:center;
  1558. padding:2px 2px 2px 2px;
  1559. box-sizing:border-box;
  1560. width:100%;
  1561. }
  1562. #u38888_text {
  1563. border-width:0px;
  1564. word-wrap:break-word;
  1565. text-transform:none;
  1566. }
  1567. #u38889_img {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:0px;
  1571. top:0px;
  1572. width:99px;
  1573. height:34px;
  1574. }
  1575. #u38889 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:101px;
  1579. top:204px;
  1580. width:99px;
  1581. height:34px;
  1582. display:flex;
  1583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1584. font-weight:400;
  1585. font-style:normal;
  1586. line-height:30px;
  1587. }
  1588. #u38889 .text {
  1589. position:absolute;
  1590. align-self:center;
  1591. padding:2px 2px 2px 2px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u38889_text {
  1596. border-width:0px;
  1597. word-wrap:break-word;
  1598. text-transform:none;
  1599. }
  1600. #u38890_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:100px;
  1606. height:34px;
  1607. }
  1608. #u38890 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:200px;
  1612. top:204px;
  1613. width:100px;
  1614. height:34px;
  1615. display:flex;
  1616. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  1617. font-weight:400;
  1618. font-style:normal;
  1619. line-height:30px;
  1620. }
  1621. #u38890 .text {
  1622. position:absolute;
  1623. align-self:center;
  1624. padding:2px 2px 2px 2px;
  1625. box-sizing:border-box;
  1626. width:100%;
  1627. }
  1628. #u38890_text {
  1629. border-width:0px;
  1630. word-wrap:break-word;
  1631. text-transform:none;
  1632. }
  1633. #u38891_img {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:100px;
  1639. height:34px;
  1640. }
  1641. #u38891 {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:300px;
  1645. top:204px;
  1646. width:100px;
  1647. height:34px;
  1648. display:flex;
  1649. line-height:30px;
  1650. }
  1651. #u38891 .text {
  1652. position:absolute;
  1653. align-self:center;
  1654. padding:2px 2px 2px 2px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u38891_text {
  1659. border-width:0px;
  1660. word-wrap:break-word;
  1661. text-transform:none;
  1662. visibility:hidden;
  1663. }
  1664. #u38892_img {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:0px;
  1668. top:0px;
  1669. width:100px;
  1670. height:34px;
  1671. }
  1672. #u38892 {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:400px;
  1676. top:204px;
  1677. width:100px;
  1678. height:34px;
  1679. display:flex;
  1680. line-height:30px;
  1681. }
  1682. #u38892 .text {
  1683. position:absolute;
  1684. align-self:center;
  1685. padding:2px 2px 2px 2px;
  1686. box-sizing:border-box;
  1687. width:100%;
  1688. }
  1689. #u38892_text {
  1690. border-width:0px;
  1691. word-wrap:break-word;
  1692. text-transform:none;
  1693. visibility:hidden;
  1694. }
  1695. #u38893_img {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:100px;
  1701. height:34px;
  1702. }
  1703. #u38893 {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:500px;
  1707. top:204px;
  1708. width:100px;
  1709. height:34px;
  1710. display:flex;
  1711. line-height:30px;
  1712. }
  1713. #u38893 .text {
  1714. position:absolute;
  1715. align-self:center;
  1716. padding:2px 2px 2px 2px;
  1717. box-sizing:border-box;
  1718. width:100%;
  1719. }
  1720. #u38893_text {
  1721. border-width:0px;
  1722. word-wrap:break-word;
  1723. text-transform:none;
  1724. visibility:hidden;
  1725. }
  1726. #u38894_img {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:100px;
  1732. height:34px;
  1733. }
  1734. #u38894 {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:600px;
  1738. top:204px;
  1739. width:100px;
  1740. height:34px;
  1741. display:flex;
  1742. line-height:30px;
  1743. }
  1744. #u38894 .text {
  1745. position:absolute;
  1746. align-self:center;
  1747. padding:2px 2px 2px 2px;
  1748. box-sizing:border-box;
  1749. width:100%;
  1750. }
  1751. #u38894_text {
  1752. border-width:0px;
  1753. word-wrap:break-word;
  1754. text-transform:none;
  1755. visibility:hidden;
  1756. }
  1757. #u38895_img {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:0px;
  1761. top:0px;
  1762. width:101px;
  1763. height:34px;
  1764. }
  1765. #u38895 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:238px;
  1770. width:101px;
  1771. height:34px;
  1772. display:flex;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. line-height:30px;
  1777. }
  1778. #u38895 .text {
  1779. position:absolute;
  1780. align-self:center;
  1781. padding:2px 2px 2px 2px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u38895_text {
  1786. border-width:0px;
  1787. word-wrap:break-word;
  1788. text-transform:none;
  1789. }
  1790. #u38896_img {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:99px;
  1796. height:34px;
  1797. }
  1798. #u38896 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:101px;
  1802. top:238px;
  1803. width:99px;
  1804. height:34px;
  1805. display:flex;
  1806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1807. font-weight:400;
  1808. font-style:normal;
  1809. line-height:30px;
  1810. }
  1811. #u38896 .text {
  1812. position:absolute;
  1813. align-self:center;
  1814. padding:2px 2px 2px 2px;
  1815. box-sizing:border-box;
  1816. width:100%;
  1817. }
  1818. #u38896_text {
  1819. border-width:0px;
  1820. word-wrap:break-word;
  1821. text-transform:none;
  1822. }
  1823. #u38897_img {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:100px;
  1829. height:34px;
  1830. }
  1831. #u38897 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:200px;
  1835. top:238px;
  1836. width:100px;
  1837. height:34px;
  1838. display:flex;
  1839. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. line-height:30px;
  1843. }
  1844. #u38897 .text {
  1845. position:absolute;
  1846. align-self:center;
  1847. padding:2px 2px 2px 2px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u38897_text {
  1852. border-width:0px;
  1853. word-wrap:break-word;
  1854. text-transform:none;
  1855. }
  1856. #u38898_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:100px;
  1862. height:34px;
  1863. }
  1864. #u38898 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:300px;
  1868. top:238px;
  1869. width:100px;
  1870. height:34px;
  1871. display:flex;
  1872. line-height:30px;
  1873. }
  1874. #u38898 .text {
  1875. position:absolute;
  1876. align-self:center;
  1877. padding:2px 2px 2px 2px;
  1878. box-sizing:border-box;
  1879. width:100%;
  1880. }
  1881. #u38898_text {
  1882. border-width:0px;
  1883. word-wrap:break-word;
  1884. text-transform:none;
  1885. visibility:hidden;
  1886. }
  1887. #u38899_img {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:100px;
  1893. height:34px;
  1894. }
  1895. #u38899 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:400px;
  1899. top:238px;
  1900. width:100px;
  1901. height:34px;
  1902. display:flex;
  1903. line-height:30px;
  1904. }
  1905. #u38899 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:2px 2px 2px 2px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u38899_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. visibility:hidden;
  1917. }
  1918. #u38900_img {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:100px;
  1924. height:34px;
  1925. }
  1926. #u38900 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:500px;
  1930. top:238px;
  1931. width:100px;
  1932. height:34px;
  1933. display:flex;
  1934. line-height:30px;
  1935. }
  1936. #u38900 .text {
  1937. position:absolute;
  1938. align-self:center;
  1939. padding:2px 2px 2px 2px;
  1940. box-sizing:border-box;
  1941. width:100%;
  1942. }
  1943. #u38900_text {
  1944. border-width:0px;
  1945. word-wrap:break-word;
  1946. text-transform:none;
  1947. visibility:hidden;
  1948. }
  1949. #u38901_img {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:100px;
  1955. height:34px;
  1956. }
  1957. #u38901 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:600px;
  1961. top:238px;
  1962. width:100px;
  1963. height:34px;
  1964. display:flex;
  1965. line-height:30px;
  1966. }
  1967. #u38901 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:2px 2px 2px 2px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u38901_text {
  1975. border-width:0px;
  1976. word-wrap:break-word;
  1977. text-transform:none;
  1978. visibility:hidden;
  1979. }
  1980. #u38902_img {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:101px;
  1986. height:34px;
  1987. }
  1988. #u38902 {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:0px;
  1992. top:272px;
  1993. width:101px;
  1994. height:34px;
  1995. display:flex;
  1996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1997. font-weight:400;
  1998. font-style:normal;
  1999. line-height:30px;
  2000. }
  2001. #u38902 .text {
  2002. position:absolute;
  2003. align-self:center;
  2004. padding:2px 2px 2px 2px;
  2005. box-sizing:border-box;
  2006. width:100%;
  2007. }
  2008. #u38902_text {
  2009. border-width:0px;
  2010. word-wrap:break-word;
  2011. text-transform:none;
  2012. }
  2013. #u38903_img {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:99px;
  2019. height:34px;
  2020. }
  2021. #u38903 {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:101px;
  2025. top:272px;
  2026. width:99px;
  2027. height:34px;
  2028. display:flex;
  2029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2030. font-weight:400;
  2031. font-style:normal;
  2032. line-height:30px;
  2033. }
  2034. #u38903 .text {
  2035. position:absolute;
  2036. align-self:center;
  2037. padding:2px 2px 2px 2px;
  2038. box-sizing:border-box;
  2039. width:100%;
  2040. }
  2041. #u38903_text {
  2042. border-width:0px;
  2043. word-wrap:break-word;
  2044. text-transform:none;
  2045. }
  2046. #u38904_img {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:100px;
  2052. height:34px;
  2053. }
  2054. #u38904 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:200px;
  2058. top:272px;
  2059. width:100px;
  2060. height:34px;
  2061. display:flex;
  2062. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  2063. font-weight:400;
  2064. font-style:normal;
  2065. line-height:30px;
  2066. }
  2067. #u38904 .text {
  2068. position:absolute;
  2069. align-self:center;
  2070. padding:2px 2px 2px 2px;
  2071. box-sizing:border-box;
  2072. width:100%;
  2073. }
  2074. #u38904_text {
  2075. border-width:0px;
  2076. word-wrap:break-word;
  2077. text-transform:none;
  2078. }
  2079. #u38905_img {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:100px;
  2085. height:34px;
  2086. }
  2087. #u38905 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:300px;
  2091. top:272px;
  2092. width:100px;
  2093. height:34px;
  2094. display:flex;
  2095. line-height:30px;
  2096. }
  2097. #u38905 .text {
  2098. position:absolute;
  2099. align-self:center;
  2100. padding:2px 2px 2px 2px;
  2101. box-sizing:border-box;
  2102. width:100%;
  2103. }
  2104. #u38905_text {
  2105. border-width:0px;
  2106. word-wrap:break-word;
  2107. text-transform:none;
  2108. visibility:hidden;
  2109. }
  2110. #u38906_img {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:0px;
  2115. width:100px;
  2116. height:34px;
  2117. }
  2118. #u38906 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:400px;
  2122. top:272px;
  2123. width:100px;
  2124. height:34px;
  2125. display:flex;
  2126. line-height:30px;
  2127. }
  2128. #u38906 .text {
  2129. position:absolute;
  2130. align-self:center;
  2131. padding:2px 2px 2px 2px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u38906_text {
  2136. border-width:0px;
  2137. word-wrap:break-word;
  2138. text-transform:none;
  2139. visibility:hidden;
  2140. }
  2141. #u38907_img {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:100px;
  2147. height:34px;
  2148. }
  2149. #u38907 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:500px;
  2153. top:272px;
  2154. width:100px;
  2155. height:34px;
  2156. display:flex;
  2157. line-height:30px;
  2158. }
  2159. #u38907 .text {
  2160. position:absolute;
  2161. align-self:center;
  2162. padding:2px 2px 2px 2px;
  2163. box-sizing:border-box;
  2164. width:100%;
  2165. }
  2166. #u38907_text {
  2167. border-width:0px;
  2168. word-wrap:break-word;
  2169. text-transform:none;
  2170. visibility:hidden;
  2171. }
  2172. #u38908_img {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:100px;
  2178. height:34px;
  2179. }
  2180. #u38908 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:600px;
  2184. top:272px;
  2185. width:100px;
  2186. height:34px;
  2187. display:flex;
  2188. line-height:30px;
  2189. }
  2190. #u38908 .text {
  2191. position:absolute;
  2192. align-self:center;
  2193. padding:2px 2px 2px 2px;
  2194. box-sizing:border-box;
  2195. width:100%;
  2196. }
  2197. #u38908_text {
  2198. border-width:0px;
  2199. word-wrap:break-word;
  2200. text-transform:none;
  2201. visibility:hidden;
  2202. }
  2203. #u38909_img {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:0px;
  2207. top:0px;
  2208. width:101px;
  2209. height:34px;
  2210. }
  2211. #u38909 {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:306px;
  2216. width:101px;
  2217. height:34px;
  2218. display:flex;
  2219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2220. font-weight:400;
  2221. font-style:normal;
  2222. line-height:30px;
  2223. }
  2224. #u38909 .text {
  2225. position:absolute;
  2226. align-self:center;
  2227. padding:2px 2px 2px 2px;
  2228. box-sizing:border-box;
  2229. width:100%;
  2230. }
  2231. #u38909_text {
  2232. border-width:0px;
  2233. word-wrap:break-word;
  2234. text-transform:none;
  2235. }
  2236. #u38910_img {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:0px;
  2240. top:0px;
  2241. width:99px;
  2242. height:34px;
  2243. }
  2244. #u38910 {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:101px;
  2248. top:306px;
  2249. width:99px;
  2250. height:34px;
  2251. display:flex;
  2252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2253. font-weight:400;
  2254. font-style:normal;
  2255. line-height:30px;
  2256. }
  2257. #u38910 .text {
  2258. position:absolute;
  2259. align-self:center;
  2260. padding:2px 2px 2px 2px;
  2261. box-sizing:border-box;
  2262. width:100%;
  2263. }
  2264. #u38910_text {
  2265. border-width:0px;
  2266. word-wrap:break-word;
  2267. text-transform:none;
  2268. }
  2269. #u38911_img {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:0px;
  2273. top:0px;
  2274. width:100px;
  2275. height:34px;
  2276. }
  2277. #u38911 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:200px;
  2281. top:306px;
  2282. width:100px;
  2283. height:34px;
  2284. display:flex;
  2285. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  2286. font-weight:400;
  2287. font-style:normal;
  2288. line-height:30px;
  2289. }
  2290. #u38911 .text {
  2291. position:absolute;
  2292. align-self:center;
  2293. padding:2px 2px 2px 2px;
  2294. box-sizing:border-box;
  2295. width:100%;
  2296. }
  2297. #u38911_text {
  2298. border-width:0px;
  2299. word-wrap:break-word;
  2300. text-transform:none;
  2301. }
  2302. #u38912_img {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:100px;
  2308. height:34px;
  2309. }
  2310. #u38912 {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:300px;
  2314. top:306px;
  2315. width:100px;
  2316. height:34px;
  2317. display:flex;
  2318. line-height:30px;
  2319. }
  2320. #u38912 .text {
  2321. position:absolute;
  2322. align-self:center;
  2323. padding:2px 2px 2px 2px;
  2324. box-sizing:border-box;
  2325. width:100%;
  2326. }
  2327. #u38912_text {
  2328. border-width:0px;
  2329. word-wrap:break-word;
  2330. text-transform:none;
  2331. visibility:hidden;
  2332. }
  2333. #u38913_img {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:100px;
  2339. height:34px;
  2340. }
  2341. #u38913 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:400px;
  2345. top:306px;
  2346. width:100px;
  2347. height:34px;
  2348. display:flex;
  2349. line-height:30px;
  2350. }
  2351. #u38913 .text {
  2352. position:absolute;
  2353. align-self:center;
  2354. padding:2px 2px 2px 2px;
  2355. box-sizing:border-box;
  2356. width:100%;
  2357. }
  2358. #u38913_text {
  2359. border-width:0px;
  2360. word-wrap:break-word;
  2361. text-transform:none;
  2362. visibility:hidden;
  2363. }
  2364. #u38914_img {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:100px;
  2370. height:34px;
  2371. }
  2372. #u38914 {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:500px;
  2376. top:306px;
  2377. width:100px;
  2378. height:34px;
  2379. display:flex;
  2380. line-height:30px;
  2381. }
  2382. #u38914 .text {
  2383. position:absolute;
  2384. align-self:center;
  2385. padding:2px 2px 2px 2px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u38914_text {
  2390. border-width:0px;
  2391. word-wrap:break-word;
  2392. text-transform:none;
  2393. visibility:hidden;
  2394. }
  2395. #u38915_img {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:100px;
  2401. height:34px;
  2402. }
  2403. #u38915 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:600px;
  2407. top:306px;
  2408. width:100px;
  2409. height:34px;
  2410. display:flex;
  2411. line-height:30px;
  2412. }
  2413. #u38915 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:2px 2px 2px 2px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u38915_text {
  2421. border-width:0px;
  2422. word-wrap:break-word;
  2423. text-transform:none;
  2424. visibility:hidden;
  2425. }
  2426. #u38916_img {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:101px;
  2432. height:34px;
  2433. }
  2434. #u38916 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:340px;
  2439. width:101px;
  2440. height:34px;
  2441. display:flex;
  2442. line-height:30px;
  2443. }
  2444. #u38916 .text {
  2445. position:absolute;
  2446. align-self:center;
  2447. padding:2px 2px 2px 2px;
  2448. box-sizing:border-box;
  2449. width:100%;
  2450. }
  2451. #u38916_text {
  2452. border-width:0px;
  2453. word-wrap:break-word;
  2454. text-transform:none;
  2455. }
  2456. #u38917_img {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:0px;
  2460. top:0px;
  2461. width:99px;
  2462. height:34px;
  2463. }
  2464. #u38917 {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:101px;
  2468. top:340px;
  2469. width:99px;
  2470. height:34px;
  2471. display:flex;
  2472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2473. font-weight:400;
  2474. font-style:normal;
  2475. line-height:30px;
  2476. }
  2477. #u38917 .text {
  2478. position:absolute;
  2479. align-self:center;
  2480. padding:2px 2px 2px 2px;
  2481. box-sizing:border-box;
  2482. width:100%;
  2483. }
  2484. #u38917_text {
  2485. border-width:0px;
  2486. word-wrap:break-word;
  2487. text-transform:none;
  2488. }
  2489. #u38918_img {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:0px;
  2493. top:0px;
  2494. width:100px;
  2495. height:34px;
  2496. }
  2497. #u38918 {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:200px;
  2501. top:340px;
  2502. width:100px;
  2503. height:34px;
  2504. display:flex;
  2505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2506. font-weight:400;
  2507. font-style:normal;
  2508. line-height:30px;
  2509. }
  2510. #u38918 .text {
  2511. position:absolute;
  2512. align-self:center;
  2513. padding:2px 2px 2px 2px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u38918_text {
  2518. border-width:0px;
  2519. word-wrap:break-word;
  2520. text-transform:none;
  2521. }
  2522. #u38919_img {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:0px;
  2526. top:0px;
  2527. width:100px;
  2528. height:34px;
  2529. }
  2530. #u38919 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:300px;
  2534. top:340px;
  2535. width:100px;
  2536. height:34px;
  2537. display:flex;
  2538. line-height:30px;
  2539. }
  2540. #u38919 .text {
  2541. position:absolute;
  2542. align-self:center;
  2543. padding:2px 2px 2px 2px;
  2544. box-sizing:border-box;
  2545. width:100%;
  2546. }
  2547. #u38919_text {
  2548. border-width:0px;
  2549. word-wrap:break-word;
  2550. text-transform:none;
  2551. visibility:hidden;
  2552. }
  2553. #u38920_img {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:100px;
  2559. height:34px;
  2560. }
  2561. #u38920 {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:400px;
  2565. top:340px;
  2566. width:100px;
  2567. height:34px;
  2568. display:flex;
  2569. line-height:30px;
  2570. }
  2571. #u38920 .text {
  2572. position:absolute;
  2573. align-self:center;
  2574. padding:2px 2px 2px 2px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u38920_text {
  2579. border-width:0px;
  2580. word-wrap:break-word;
  2581. text-transform:none;
  2582. visibility:hidden;
  2583. }
  2584. #u38921_img {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:100px;
  2590. height:34px;
  2591. }
  2592. #u38921 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:500px;
  2596. top:340px;
  2597. width:100px;
  2598. height:34px;
  2599. display:flex;
  2600. line-height:30px;
  2601. }
  2602. #u38921 .text {
  2603. position:absolute;
  2604. align-self:center;
  2605. padding:2px 2px 2px 2px;
  2606. box-sizing:border-box;
  2607. width:100%;
  2608. }
  2609. #u38921_text {
  2610. border-width:0px;
  2611. word-wrap:break-word;
  2612. text-transform:none;
  2613. visibility:hidden;
  2614. }
  2615. #u38922_img {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:0px;
  2619. top:0px;
  2620. width:100px;
  2621. height:34px;
  2622. }
  2623. #u38922 {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:600px;
  2627. top:340px;
  2628. width:100px;
  2629. height:34px;
  2630. display:flex;
  2631. line-height:30px;
  2632. }
  2633. #u38922 .text {
  2634. position:absolute;
  2635. align-self:center;
  2636. padding:2px 2px 2px 2px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u38922_text {
  2641. border-width:0px;
  2642. word-wrap:break-word;
  2643. text-transform:none;
  2644. visibility:hidden;
  2645. }
  2646. #u38923_img {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:0px;
  2650. top:0px;
  2651. width:101px;
  2652. height:34px;
  2653. }
  2654. #u38923 {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:0px;
  2658. top:374px;
  2659. width:101px;
  2660. height:34px;
  2661. display:flex;
  2662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2663. font-weight:400;
  2664. font-style:normal;
  2665. line-height:30px;
  2666. }
  2667. #u38923 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 2px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u38923_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. }
  2679. #u38924_img {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:99px;
  2685. height:34px;
  2686. }
  2687. #u38924 {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:101px;
  2691. top:374px;
  2692. width:99px;
  2693. height:34px;
  2694. display:flex;
  2695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2696. font-weight:400;
  2697. font-style:normal;
  2698. line-height:30px;
  2699. }
  2700. #u38924 .text {
  2701. position:absolute;
  2702. align-self:center;
  2703. padding:2px 2px 2px 2px;
  2704. box-sizing:border-box;
  2705. width:100%;
  2706. }
  2707. #u38924_text {
  2708. border-width:0px;
  2709. word-wrap:break-word;
  2710. text-transform:none;
  2711. }
  2712. #u38925_img {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:100px;
  2718. height:34px;
  2719. }
  2720. #u38925 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:200px;
  2724. top:374px;
  2725. width:100px;
  2726. height:34px;
  2727. display:flex;
  2728. line-height:30px;
  2729. }
  2730. #u38925 .text {
  2731. position:absolute;
  2732. align-self:center;
  2733. padding:2px 2px 2px 2px;
  2734. box-sizing:border-box;
  2735. width:100%;
  2736. }
  2737. #u38925_text {
  2738. border-width:0px;
  2739. word-wrap:break-word;
  2740. text-transform:none;
  2741. }
  2742. #u38926_img {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:100px;
  2748. height:34px;
  2749. }
  2750. #u38926 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:300px;
  2754. top:374px;
  2755. width:100px;
  2756. height:34px;
  2757. display:flex;
  2758. line-height:30px;
  2759. }
  2760. #u38926 .text {
  2761. position:absolute;
  2762. align-self:center;
  2763. padding:2px 2px 2px 2px;
  2764. box-sizing:border-box;
  2765. width:100%;
  2766. }
  2767. #u38926_text {
  2768. border-width:0px;
  2769. word-wrap:break-word;
  2770. text-transform:none;
  2771. visibility:hidden;
  2772. }
  2773. #u38927_img {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:100px;
  2779. height:34px;
  2780. }
  2781. #u38927 {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:400px;
  2785. top:374px;
  2786. width:100px;
  2787. height:34px;
  2788. display:flex;
  2789. line-height:30px;
  2790. }
  2791. #u38927 .text {
  2792. position:absolute;
  2793. align-self:center;
  2794. padding:2px 2px 2px 2px;
  2795. box-sizing:border-box;
  2796. width:100%;
  2797. }
  2798. #u38927_text {
  2799. border-width:0px;
  2800. word-wrap:break-word;
  2801. text-transform:none;
  2802. visibility:hidden;
  2803. }
  2804. #u38928_img {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:0px;
  2808. top:0px;
  2809. width:100px;
  2810. height:34px;
  2811. }
  2812. #u38928 {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:500px;
  2816. top:374px;
  2817. width:100px;
  2818. height:34px;
  2819. display:flex;
  2820. line-height:30px;
  2821. }
  2822. #u38928 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:2px 2px 2px 2px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u38928_text {
  2830. border-width:0px;
  2831. word-wrap:break-word;
  2832. text-transform:none;
  2833. visibility:hidden;
  2834. }
  2835. #u38929_img {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:100px;
  2841. height:34px;
  2842. }
  2843. #u38929 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:600px;
  2847. top:374px;
  2848. width:100px;
  2849. height:34px;
  2850. display:flex;
  2851. line-height:30px;
  2852. }
  2853. #u38929 .text {
  2854. position:absolute;
  2855. align-self:center;
  2856. padding:2px 2px 2px 2px;
  2857. box-sizing:border-box;
  2858. width:100%;
  2859. }
  2860. #u38929_text {
  2861. border-width:0px;
  2862. word-wrap:break-word;
  2863. text-transform:none;
  2864. visibility:hidden;
  2865. }
  2866. #u38930_img {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:0px;
  2870. top:0px;
  2871. width:101px;
  2872. height:34px;
  2873. }
  2874. #u38930 {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:0px;
  2878. top:408px;
  2879. width:101px;
  2880. height:34px;
  2881. display:flex;
  2882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2883. font-weight:400;
  2884. font-style:normal;
  2885. line-height:30px;
  2886. }
  2887. #u38930 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 2px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u38930_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. }
  2899. #u38931_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:99px;
  2905. height:34px;
  2906. }
  2907. #u38931 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:101px;
  2911. top:408px;
  2912. width:99px;
  2913. height:34px;
  2914. display:flex;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. line-height:30px;
  2919. }
  2920. #u38931 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:2px 2px 2px 2px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u38931_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. }
  2932. #u38932_img {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:100px;
  2938. height:34px;
  2939. }
  2940. #u38932 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:200px;
  2944. top:408px;
  2945. width:100px;
  2946. height:34px;
  2947. display:flex;
  2948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2949. font-weight:400;
  2950. font-style:normal;
  2951. line-height:30px;
  2952. }
  2953. #u38932 .text {
  2954. position:absolute;
  2955. align-self:center;
  2956. padding:2px 2px 2px 2px;
  2957. box-sizing:border-box;
  2958. width:100%;
  2959. }
  2960. #u38932_text {
  2961. border-width:0px;
  2962. word-wrap:break-word;
  2963. text-transform:none;
  2964. }
  2965. #u38933_img {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:100px;
  2971. height:34px;
  2972. }
  2973. #u38933 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:300px;
  2977. top:408px;
  2978. width:100px;
  2979. height:34px;
  2980. display:flex;
  2981. line-height:30px;
  2982. }
  2983. #u38933 .text {
  2984. position:absolute;
  2985. align-self:center;
  2986. padding:2px 2px 2px 2px;
  2987. box-sizing:border-box;
  2988. width:100%;
  2989. }
  2990. #u38933_text {
  2991. border-width:0px;
  2992. word-wrap:break-word;
  2993. text-transform:none;
  2994. visibility:hidden;
  2995. }
  2996. #u38934_img {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:0px;
  3000. top:0px;
  3001. width:100px;
  3002. height:34px;
  3003. }
  3004. #u38934 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:400px;
  3008. top:408px;
  3009. width:100px;
  3010. height:34px;
  3011. display:flex;
  3012. line-height:30px;
  3013. }
  3014. #u38934 .text {
  3015. position:absolute;
  3016. align-self:center;
  3017. padding:2px 2px 2px 2px;
  3018. box-sizing:border-box;
  3019. width:100%;
  3020. }
  3021. #u38934_text {
  3022. border-width:0px;
  3023. word-wrap:break-word;
  3024. text-transform:none;
  3025. visibility:hidden;
  3026. }
  3027. #u38935_img {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:100px;
  3033. height:34px;
  3034. }
  3035. #u38935 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:500px;
  3039. top:408px;
  3040. width:100px;
  3041. height:34px;
  3042. display:flex;
  3043. line-height:30px;
  3044. }
  3045. #u38935 .text {
  3046. position:absolute;
  3047. align-self:center;
  3048. padding:2px 2px 2px 2px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u38935_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. visibility:hidden;
  3057. }
  3058. #u38936_img {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:100px;
  3064. height:34px;
  3065. }
  3066. #u38936 {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:600px;
  3070. top:408px;
  3071. width:100px;
  3072. height:34px;
  3073. display:flex;
  3074. line-height:30px;
  3075. }
  3076. #u38936 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:2px 2px 2px 2px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u38936_text {
  3084. border-width:0px;
  3085. word-wrap:break-word;
  3086. text-transform:none;
  3087. visibility:hidden;
  3088. }
  3089. #u38937_img {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:101px;
  3095. height:34px;
  3096. }
  3097. #u38937 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:442px;
  3102. width:101px;
  3103. height:34px;
  3104. display:flex;
  3105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. color:#D9001B;
  3109. line-height:30px;
  3110. }
  3111. #u38937 .text {
  3112. position:absolute;
  3113. align-self:center;
  3114. padding:2px 2px 2px 2px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u38937_text {
  3119. border-width:0px;
  3120. word-wrap:break-word;
  3121. text-transform:none;
  3122. }
  3123. #u38938_img {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:99px;
  3129. height:34px;
  3130. }
  3131. #u38938 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:101px;
  3135. top:442px;
  3136. width:99px;
  3137. height:34px;
  3138. display:flex;
  3139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. color:#D9001B;
  3143. line-height:30px;
  3144. }
  3145. #u38938 .text {
  3146. position:absolute;
  3147. align-self:center;
  3148. padding:2px 2px 2px 2px;
  3149. box-sizing:border-box;
  3150. width:100%;
  3151. }
  3152. #u38938_text {
  3153. border-width:0px;
  3154. word-wrap:break-word;
  3155. text-transform:none;
  3156. }
  3157. #u38939_img {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:100px;
  3163. height:34px;
  3164. }
  3165. #u38939 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:200px;
  3169. top:442px;
  3170. width:100px;
  3171. height:34px;
  3172. display:flex;
  3173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3174. font-weight:400;
  3175. font-style:normal;
  3176. line-height:30px;
  3177. }
  3178. #u38939 .text {
  3179. position:absolute;
  3180. align-self:center;
  3181. padding:2px 2px 2px 2px;
  3182. box-sizing:border-box;
  3183. width:100%;
  3184. }
  3185. #u38939_text {
  3186. border-width:0px;
  3187. word-wrap:break-word;
  3188. text-transform:none;
  3189. }
  3190. #u38940_img {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:100px;
  3196. height:34px;
  3197. }
  3198. #u38940 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:300px;
  3202. top:442px;
  3203. width:100px;
  3204. height:34px;
  3205. display:flex;
  3206. line-height:30px;
  3207. }
  3208. #u38940 .text {
  3209. position:absolute;
  3210. align-self:center;
  3211. padding:2px 2px 2px 2px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u38940_text {
  3216. border-width:0px;
  3217. word-wrap:break-word;
  3218. text-transform:none;
  3219. visibility:hidden;
  3220. }
  3221. #u38941_img {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:100px;
  3227. height:34px;
  3228. }
  3229. #u38941 {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:400px;
  3233. top:442px;
  3234. width:100px;
  3235. height:34px;
  3236. display:flex;
  3237. line-height:30px;
  3238. }
  3239. #u38941 .text {
  3240. position:absolute;
  3241. align-self:center;
  3242. padding:2px 2px 2px 2px;
  3243. box-sizing:border-box;
  3244. width:100%;
  3245. }
  3246. #u38941_text {
  3247. border-width:0px;
  3248. word-wrap:break-word;
  3249. text-transform:none;
  3250. visibility:hidden;
  3251. }
  3252. #u38942_img {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:0px;
  3256. top:0px;
  3257. width:100px;
  3258. height:34px;
  3259. }
  3260. #u38942 {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:500px;
  3264. top:442px;
  3265. width:100px;
  3266. height:34px;
  3267. display:flex;
  3268. line-height:30px;
  3269. }
  3270. #u38942 .text {
  3271. position:absolute;
  3272. align-self:center;
  3273. padding:2px 2px 2px 2px;
  3274. box-sizing:border-box;
  3275. width:100%;
  3276. }
  3277. #u38942_text {
  3278. border-width:0px;
  3279. word-wrap:break-word;
  3280. text-transform:none;
  3281. visibility:hidden;
  3282. }
  3283. #u38943_img {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:0px;
  3287. top:0px;
  3288. width:100px;
  3289. height:34px;
  3290. }
  3291. #u38943 {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:600px;
  3295. top:442px;
  3296. width:100px;
  3297. height:34px;
  3298. display:flex;
  3299. line-height:30px;
  3300. }
  3301. #u38943 .text {
  3302. position:absolute;
  3303. align-self:center;
  3304. padding:2px 2px 2px 2px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u38943_text {
  3309. border-width:0px;
  3310. word-wrap:break-word;
  3311. text-transform:none;
  3312. visibility:hidden;
  3313. }
  3314. #u38944_img {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:101px;
  3320. height:34px;
  3321. }
  3322. #u38944 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:0px;
  3326. top:476px;
  3327. width:101px;
  3328. height:34px;
  3329. display:flex;
  3330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3331. font-weight:400;
  3332. font-style:normal;
  3333. line-height:30px;
  3334. }
  3335. #u38944 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 2px 2px 2px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u38944_text {
  3343. border-width:0px;
  3344. word-wrap:break-word;
  3345. text-transform:none;
  3346. }
  3347. #u38945_img {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:99px;
  3353. height:34px;
  3354. }
  3355. #u38945 {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:101px;
  3359. top:476px;
  3360. width:99px;
  3361. height:34px;
  3362. display:flex;
  3363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3364. font-weight:400;
  3365. font-style:normal;
  3366. line-height:30px;
  3367. }
  3368. #u38945 .text {
  3369. position:absolute;
  3370. align-self:center;
  3371. padding:2px 2px 2px 2px;
  3372. box-sizing:border-box;
  3373. width:100%;
  3374. }
  3375. #u38945_text {
  3376. border-width:0px;
  3377. word-wrap:break-word;
  3378. text-transform:none;
  3379. }
  3380. #u38946_img {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:0px;
  3384. top:0px;
  3385. width:100px;
  3386. height:34px;
  3387. }
  3388. #u38946 {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:200px;
  3392. top:476px;
  3393. width:100px;
  3394. height:34px;
  3395. display:flex;
  3396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. line-height:30px;
  3400. }
  3401. #u38946 .text {
  3402. position:absolute;
  3403. align-self:center;
  3404. padding:2px 2px 2px 2px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u38946_text {
  3409. border-width:0px;
  3410. word-wrap:break-word;
  3411. text-transform:none;
  3412. }
  3413. #u38947_img {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:0px;
  3417. top:0px;
  3418. width:100px;
  3419. height:34px;
  3420. }
  3421. #u38947 {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:300px;
  3425. top:476px;
  3426. width:100px;
  3427. height:34px;
  3428. display:flex;
  3429. line-height:30px;
  3430. }
  3431. #u38947 .text {
  3432. position:absolute;
  3433. align-self:center;
  3434. padding:2px 2px 2px 2px;
  3435. box-sizing:border-box;
  3436. width:100%;
  3437. }
  3438. #u38947_text {
  3439. border-width:0px;
  3440. word-wrap:break-word;
  3441. text-transform:none;
  3442. visibility:hidden;
  3443. }
  3444. #u38948_img {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:0px;
  3448. top:0px;
  3449. width:100px;
  3450. height:34px;
  3451. }
  3452. #u38948 {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:400px;
  3456. top:476px;
  3457. width:100px;
  3458. height:34px;
  3459. display:flex;
  3460. line-height:30px;
  3461. }
  3462. #u38948 .text {
  3463. position:absolute;
  3464. align-self:center;
  3465. padding:2px 2px 2px 2px;
  3466. box-sizing:border-box;
  3467. width:100%;
  3468. }
  3469. #u38948_text {
  3470. border-width:0px;
  3471. word-wrap:break-word;
  3472. text-transform:none;
  3473. visibility:hidden;
  3474. }
  3475. #u38949_img {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:100px;
  3481. height:34px;
  3482. }
  3483. #u38949 {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:500px;
  3487. top:476px;
  3488. width:100px;
  3489. height:34px;
  3490. display:flex;
  3491. line-height:30px;
  3492. }
  3493. #u38949 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 2px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u38949_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. visibility:hidden;
  3505. }
  3506. #u38950_img {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:100px;
  3512. height:34px;
  3513. }
  3514. #u38950 {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:600px;
  3518. top:476px;
  3519. width:100px;
  3520. height:34px;
  3521. display:flex;
  3522. line-height:30px;
  3523. }
  3524. #u38950 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 2px 2px 2px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u38950_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. visibility:hidden;
  3536. }
  3537. #u38951_img {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:101px;
  3543. height:34px;
  3544. }
  3545. #u38951 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:510px;
  3550. width:101px;
  3551. height:34px;
  3552. display:flex;
  3553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3554. font-weight:400;
  3555. font-style:normal;
  3556. line-height:30px;
  3557. }
  3558. #u38951 .text {
  3559. position:absolute;
  3560. align-self:center;
  3561. padding:2px 2px 2px 2px;
  3562. box-sizing:border-box;
  3563. width:100%;
  3564. }
  3565. #u38951_text {
  3566. border-width:0px;
  3567. word-wrap:break-word;
  3568. text-transform:none;
  3569. }
  3570. #u38952_img {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:99px;
  3576. height:34px;
  3577. }
  3578. #u38952 {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:101px;
  3582. top:510px;
  3583. width:99px;
  3584. height:34px;
  3585. display:flex;
  3586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. line-height:30px;
  3590. }
  3591. #u38952 .text {
  3592. position:absolute;
  3593. align-self:center;
  3594. padding:2px 2px 2px 2px;
  3595. box-sizing:border-box;
  3596. width:100%;
  3597. }
  3598. #u38952_text {
  3599. border-width:0px;
  3600. word-wrap:break-word;
  3601. text-transform:none;
  3602. }
  3603. #u38953_img {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:0px;
  3607. top:0px;
  3608. width:100px;
  3609. height:34px;
  3610. }
  3611. #u38953 {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:200px;
  3615. top:510px;
  3616. width:100px;
  3617. height:34px;
  3618. display:flex;
  3619. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  3620. font-weight:400;
  3621. font-style:normal;
  3622. line-height:30px;
  3623. }
  3624. #u38953 .text {
  3625. position:absolute;
  3626. align-self:center;
  3627. padding:2px 2px 2px 2px;
  3628. box-sizing:border-box;
  3629. width:100%;
  3630. }
  3631. #u38953_text {
  3632. border-width:0px;
  3633. word-wrap:break-word;
  3634. text-transform:none;
  3635. }
  3636. #u38954_img {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:100px;
  3642. height:34px;
  3643. }
  3644. #u38954 {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:300px;
  3648. top:510px;
  3649. width:100px;
  3650. height:34px;
  3651. display:flex;
  3652. line-height:30px;
  3653. }
  3654. #u38954 .text {
  3655. position:absolute;
  3656. align-self:center;
  3657. padding:2px 2px 2px 2px;
  3658. box-sizing:border-box;
  3659. width:100%;
  3660. }
  3661. #u38954_text {
  3662. border-width:0px;
  3663. word-wrap:break-word;
  3664. text-transform:none;
  3665. visibility:hidden;
  3666. }
  3667. #u38955_img {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:0px;
  3671. top:0px;
  3672. width:100px;
  3673. height:34px;
  3674. }
  3675. #u38955 {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:400px;
  3679. top:510px;
  3680. width:100px;
  3681. height:34px;
  3682. display:flex;
  3683. line-height:30px;
  3684. }
  3685. #u38955 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:2px 2px 2px 2px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u38955_text {
  3693. border-width:0px;
  3694. word-wrap:break-word;
  3695. text-transform:none;
  3696. visibility:hidden;
  3697. }
  3698. #u38956_img {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:100px;
  3704. height:34px;
  3705. }
  3706. #u38956 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:500px;
  3710. top:510px;
  3711. width:100px;
  3712. height:34px;
  3713. display:flex;
  3714. line-height:30px;
  3715. }
  3716. #u38956 .text {
  3717. position:absolute;
  3718. align-self:center;
  3719. padding:2px 2px 2px 2px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u38956_text {
  3724. border-width:0px;
  3725. word-wrap:break-word;
  3726. text-transform:none;
  3727. visibility:hidden;
  3728. }
  3729. #u38957_img {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:100px;
  3735. height:34px;
  3736. }
  3737. #u38957 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:600px;
  3741. top:510px;
  3742. width:100px;
  3743. height:34px;
  3744. display:flex;
  3745. line-height:30px;
  3746. }
  3747. #u38957 .text {
  3748. position:absolute;
  3749. align-self:center;
  3750. padding:2px 2px 2px 2px;
  3751. box-sizing:border-box;
  3752. width:100%;
  3753. }
  3754. #u38957_text {
  3755. border-width:0px;
  3756. word-wrap:break-word;
  3757. text-transform:none;
  3758. visibility:hidden;
  3759. }
  3760. #u38958_img {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:0px;
  3764. top:0px;
  3765. width:101px;
  3766. height:34px;
  3767. }
  3768. #u38958 {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:544px;
  3773. width:101px;
  3774. height:34px;
  3775. display:flex;
  3776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3777. font-weight:400;
  3778. font-style:normal;
  3779. line-height:30px;
  3780. }
  3781. #u38958 .text {
  3782. position:absolute;
  3783. align-self:center;
  3784. padding:2px 2px 2px 2px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u38958_text {
  3789. border-width:0px;
  3790. word-wrap:break-word;
  3791. text-transform:none;
  3792. }
  3793. #u38959_img {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:99px;
  3799. height:34px;
  3800. }
  3801. #u38959 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:101px;
  3805. top:544px;
  3806. width:99px;
  3807. height:34px;
  3808. display:flex;
  3809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3810. font-weight:400;
  3811. font-style:normal;
  3812. line-height:30px;
  3813. }
  3814. #u38959 .text {
  3815. position:absolute;
  3816. align-self:center;
  3817. padding:2px 2px 2px 2px;
  3818. box-sizing:border-box;
  3819. width:100%;
  3820. }
  3821. #u38959_text {
  3822. border-width:0px;
  3823. word-wrap:break-word;
  3824. text-transform:none;
  3825. }
  3826. #u38960_img {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:0px;
  3830. top:0px;
  3831. width:100px;
  3832. height:34px;
  3833. }
  3834. #u38960 {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:200px;
  3838. top:544px;
  3839. width:100px;
  3840. height:34px;
  3841. display:flex;
  3842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3843. font-weight:400;
  3844. font-style:normal;
  3845. line-height:30px;
  3846. }
  3847. #u38960 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:2px 2px 2px 2px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u38960_text {
  3855. border-width:0px;
  3856. word-wrap:break-word;
  3857. text-transform:none;
  3858. }
  3859. #u38961_img {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:0px;
  3863. top:0px;
  3864. width:100px;
  3865. height:34px;
  3866. }
  3867. #u38961 {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:300px;
  3871. top:544px;
  3872. width:100px;
  3873. height:34px;
  3874. display:flex;
  3875. line-height:30px;
  3876. }
  3877. #u38961 .text {
  3878. position:absolute;
  3879. align-self:center;
  3880. padding:2px 2px 2px 2px;
  3881. box-sizing:border-box;
  3882. width:100%;
  3883. }
  3884. #u38961_text {
  3885. border-width:0px;
  3886. word-wrap:break-word;
  3887. text-transform:none;
  3888. visibility:hidden;
  3889. }
  3890. #u38962_img {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:100px;
  3896. height:34px;
  3897. }
  3898. #u38962 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:400px;
  3902. top:544px;
  3903. width:100px;
  3904. height:34px;
  3905. display:flex;
  3906. line-height:30px;
  3907. }
  3908. #u38962 .text {
  3909. position:absolute;
  3910. align-self:center;
  3911. padding:2px 2px 2px 2px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u38962_text {
  3916. border-width:0px;
  3917. word-wrap:break-word;
  3918. text-transform:none;
  3919. visibility:hidden;
  3920. }
  3921. #u38963_img {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:100px;
  3927. height:34px;
  3928. }
  3929. #u38963 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:500px;
  3933. top:544px;
  3934. width:100px;
  3935. height:34px;
  3936. display:flex;
  3937. line-height:30px;
  3938. }
  3939. #u38963 .text {
  3940. position:absolute;
  3941. align-self:center;
  3942. padding:2px 2px 2px 2px;
  3943. box-sizing:border-box;
  3944. width:100%;
  3945. }
  3946. #u38963_text {
  3947. border-width:0px;
  3948. word-wrap:break-word;
  3949. text-transform:none;
  3950. visibility:hidden;
  3951. }
  3952. #u38964_img {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:100px;
  3958. height:34px;
  3959. }
  3960. #u38964 {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:600px;
  3964. top:544px;
  3965. width:100px;
  3966. height:34px;
  3967. display:flex;
  3968. line-height:30px;
  3969. }
  3970. #u38964 .text {
  3971. position:absolute;
  3972. align-self:center;
  3973. padding:2px 2px 2px 2px;
  3974. box-sizing:border-box;
  3975. width:100%;
  3976. }
  3977. #u38964_text {
  3978. border-width:0px;
  3979. word-wrap:break-word;
  3980. text-transform:none;
  3981. visibility:hidden;
  3982. }
  3983. #u38965_img {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:101px;
  3989. height:34px;
  3990. }
  3991. #u38965 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:578px;
  3996. width:101px;
  3997. height:34px;
  3998. display:flex;
  3999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4000. font-weight:400;
  4001. font-style:normal;
  4002. line-height:30px;
  4003. }
  4004. #u38965 .text {
  4005. position:absolute;
  4006. align-self:center;
  4007. padding:2px 2px 2px 2px;
  4008. box-sizing:border-box;
  4009. width:100%;
  4010. }
  4011. #u38965_text {
  4012. border-width:0px;
  4013. word-wrap:break-word;
  4014. text-transform:none;
  4015. }
  4016. #u38966_img {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:0px;
  4020. top:0px;
  4021. width:99px;
  4022. height:34px;
  4023. }
  4024. #u38966 {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:101px;
  4028. top:578px;
  4029. width:99px;
  4030. height:34px;
  4031. display:flex;
  4032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4033. font-weight:400;
  4034. font-style:normal;
  4035. line-height:30px;
  4036. }
  4037. #u38966 .text {
  4038. position:absolute;
  4039. align-self:center;
  4040. padding:2px 2px 2px 2px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u38966_text {
  4045. border-width:0px;
  4046. word-wrap:break-word;
  4047. text-transform:none;
  4048. }
  4049. #u38967_img {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:100px;
  4055. height:34px;
  4056. }
  4057. #u38967 {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:200px;
  4061. top:578px;
  4062. width:100px;
  4063. height:34px;
  4064. display:flex;
  4065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4066. font-weight:400;
  4067. font-style:normal;
  4068. line-height:30px;
  4069. }
  4070. #u38967 .text {
  4071. position:absolute;
  4072. align-self:center;
  4073. padding:2px 2px 2px 2px;
  4074. box-sizing:border-box;
  4075. width:100%;
  4076. }
  4077. #u38967_text {
  4078. border-width:0px;
  4079. word-wrap:break-word;
  4080. text-transform:none;
  4081. }
  4082. #u38968_img {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:0px;
  4086. top:0px;
  4087. width:100px;
  4088. height:34px;
  4089. }
  4090. #u38968 {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:300px;
  4094. top:578px;
  4095. width:100px;
  4096. height:34px;
  4097. display:flex;
  4098. line-height:30px;
  4099. }
  4100. #u38968 .text {
  4101. position:absolute;
  4102. align-self:center;
  4103. padding:2px 2px 2px 2px;
  4104. box-sizing:border-box;
  4105. width:100%;
  4106. }
  4107. #u38968_text {
  4108. border-width:0px;
  4109. word-wrap:break-word;
  4110. text-transform:none;
  4111. visibility:hidden;
  4112. }
  4113. #u38969_img {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:100px;
  4119. height:34px;
  4120. }
  4121. #u38969 {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:400px;
  4125. top:578px;
  4126. width:100px;
  4127. height:34px;
  4128. display:flex;
  4129. line-height:30px;
  4130. }
  4131. #u38969 .text {
  4132. position:absolute;
  4133. align-self:center;
  4134. padding:2px 2px 2px 2px;
  4135. box-sizing:border-box;
  4136. width:100%;
  4137. }
  4138. #u38969_text {
  4139. border-width:0px;
  4140. word-wrap:break-word;
  4141. text-transform:none;
  4142. visibility:hidden;
  4143. }
  4144. #u38970_img {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:100px;
  4150. height:34px;
  4151. }
  4152. #u38970 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:500px;
  4156. top:578px;
  4157. width:100px;
  4158. height:34px;
  4159. display:flex;
  4160. line-height:30px;
  4161. }
  4162. #u38970 .text {
  4163. position:absolute;
  4164. align-self:center;
  4165. padding:2px 2px 2px 2px;
  4166. box-sizing:border-box;
  4167. width:100%;
  4168. }
  4169. #u38970_text {
  4170. border-width:0px;
  4171. word-wrap:break-word;
  4172. text-transform:none;
  4173. visibility:hidden;
  4174. }
  4175. #u38971_img {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:0px;
  4179. top:0px;
  4180. width:100px;
  4181. height:34px;
  4182. }
  4183. #u38971 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:600px;
  4187. top:578px;
  4188. width:100px;
  4189. height:34px;
  4190. display:flex;
  4191. line-height:30px;
  4192. }
  4193. #u38971 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 2px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u38971_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. visibility:hidden;
  4205. }
  4206. #u38972_img {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:101px;
  4212. height:34px;
  4213. }
  4214. #u38972 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:612px;
  4219. width:101px;
  4220. height:34px;
  4221. display:flex;
  4222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4223. font-weight:400;
  4224. font-style:normal;
  4225. line-height:30px;
  4226. }
  4227. #u38972 .text {
  4228. position:absolute;
  4229. align-self:center;
  4230. padding:2px 2px 2px 2px;
  4231. box-sizing:border-box;
  4232. width:100%;
  4233. }
  4234. #u38972_text {
  4235. border-width:0px;
  4236. word-wrap:break-word;
  4237. text-transform:none;
  4238. }
  4239. #u38973_img {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:0px;
  4243. top:0px;
  4244. width:99px;
  4245. height:34px;
  4246. }
  4247. #u38973 {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:101px;
  4251. top:612px;
  4252. width:99px;
  4253. height:34px;
  4254. display:flex;
  4255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4256. font-weight:400;
  4257. font-style:normal;
  4258. line-height:30px;
  4259. }
  4260. #u38973 .text {
  4261. position:absolute;
  4262. align-self:center;
  4263. padding:2px 2px 2px 2px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u38973_text {
  4268. border-width:0px;
  4269. word-wrap:break-word;
  4270. text-transform:none;
  4271. }
  4272. #u38974_img {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:0px;
  4276. top:0px;
  4277. width:100px;
  4278. height:34px;
  4279. }
  4280. #u38974 {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:200px;
  4284. top:612px;
  4285. width:100px;
  4286. height:34px;
  4287. display:flex;
  4288. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  4289. font-weight:400;
  4290. font-style:normal;
  4291. line-height:30px;
  4292. }
  4293. #u38974 .text {
  4294. position:absolute;
  4295. align-self:center;
  4296. padding:2px 2px 2px 2px;
  4297. box-sizing:border-box;
  4298. width:100%;
  4299. }
  4300. #u38974_text {
  4301. border-width:0px;
  4302. word-wrap:break-word;
  4303. text-transform:none;
  4304. }
  4305. #u38975_img {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:100px;
  4311. height:34px;
  4312. }
  4313. #u38975 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:300px;
  4317. top:612px;
  4318. width:100px;
  4319. height:34px;
  4320. display:flex;
  4321. line-height:30px;
  4322. }
  4323. #u38975 .text {
  4324. position:absolute;
  4325. align-self:center;
  4326. padding:2px 2px 2px 2px;
  4327. box-sizing:border-box;
  4328. width:100%;
  4329. }
  4330. #u38975_text {
  4331. border-width:0px;
  4332. word-wrap:break-word;
  4333. text-transform:none;
  4334. visibility:hidden;
  4335. }
  4336. #u38976_img {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:0px;
  4340. top:0px;
  4341. width:100px;
  4342. height:34px;
  4343. }
  4344. #u38976 {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:400px;
  4348. top:612px;
  4349. width:100px;
  4350. height:34px;
  4351. display:flex;
  4352. line-height:30px;
  4353. }
  4354. #u38976 .text {
  4355. position:absolute;
  4356. align-self:center;
  4357. padding:2px 2px 2px 2px;
  4358. box-sizing:border-box;
  4359. width:100%;
  4360. }
  4361. #u38976_text {
  4362. border-width:0px;
  4363. word-wrap:break-word;
  4364. text-transform:none;
  4365. visibility:hidden;
  4366. }
  4367. #u38977_img {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:100px;
  4373. height:34px;
  4374. }
  4375. #u38977 {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:500px;
  4379. top:612px;
  4380. width:100px;
  4381. height:34px;
  4382. display:flex;
  4383. line-height:30px;
  4384. }
  4385. #u38977 .text {
  4386. position:absolute;
  4387. align-self:center;
  4388. padding:2px 2px 2px 2px;
  4389. box-sizing:border-box;
  4390. width:100%;
  4391. }
  4392. #u38977_text {
  4393. border-width:0px;
  4394. word-wrap:break-word;
  4395. text-transform:none;
  4396. visibility:hidden;
  4397. }
  4398. #u38978_img {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:100px;
  4404. height:34px;
  4405. }
  4406. #u38978 {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:600px;
  4410. top:612px;
  4411. width:100px;
  4412. height:34px;
  4413. display:flex;
  4414. line-height:30px;
  4415. }
  4416. #u38978 .text {
  4417. position:absolute;
  4418. align-self:center;
  4419. padding:2px 2px 2px 2px;
  4420. box-sizing:border-box;
  4421. width:100%;
  4422. }
  4423. #u38978_text {
  4424. border-width:0px;
  4425. word-wrap:break-word;
  4426. text-transform:none;
  4427. visibility:hidden;
  4428. }
  4429. #u38979_img {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:0px;
  4433. top:0px;
  4434. width:101px;
  4435. height:34px;
  4436. }
  4437. #u38979 {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:646px;
  4442. width:101px;
  4443. height:34px;
  4444. display:flex;
  4445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4446. font-weight:400;
  4447. font-style:normal;
  4448. line-height:30px;
  4449. }
  4450. #u38979 .text {
  4451. position:absolute;
  4452. align-self:center;
  4453. padding:2px 2px 2px 2px;
  4454. box-sizing:border-box;
  4455. width:100%;
  4456. }
  4457. #u38979_text {
  4458. border-width:0px;
  4459. word-wrap:break-word;
  4460. text-transform:none;
  4461. }
  4462. #u38980_img {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:0px;
  4466. top:0px;
  4467. width:99px;
  4468. height:34px;
  4469. }
  4470. #u38980 {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:101px;
  4474. top:646px;
  4475. width:99px;
  4476. height:34px;
  4477. display:flex;
  4478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4479. font-weight:400;
  4480. font-style:normal;
  4481. line-height:30px;
  4482. }
  4483. #u38980 .text {
  4484. position:absolute;
  4485. align-self:center;
  4486. padding:2px 2px 2px 2px;
  4487. box-sizing:border-box;
  4488. width:100%;
  4489. }
  4490. #u38980_text {
  4491. border-width:0px;
  4492. word-wrap:break-word;
  4493. text-transform:none;
  4494. }
  4495. #u38981_img {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:0px;
  4499. top:0px;
  4500. width:100px;
  4501. height:34px;
  4502. }
  4503. #u38981 {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:200px;
  4507. top:646px;
  4508. width:100px;
  4509. height:34px;
  4510. display:flex;
  4511. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  4512. font-weight:400;
  4513. font-style:normal;
  4514. line-height:30px;
  4515. }
  4516. #u38981 .text {
  4517. position:absolute;
  4518. align-self:center;
  4519. padding:2px 2px 2px 2px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u38981_text {
  4524. border-width:0px;
  4525. word-wrap:break-word;
  4526. text-transform:none;
  4527. }
  4528. #u38982_img {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:100px;
  4534. height:34px;
  4535. }
  4536. #u38982 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:300px;
  4540. top:646px;
  4541. width:100px;
  4542. height:34px;
  4543. display:flex;
  4544. line-height:30px;
  4545. }
  4546. #u38982 .text {
  4547. position:absolute;
  4548. align-self:center;
  4549. padding:2px 2px 2px 2px;
  4550. box-sizing:border-box;
  4551. width:100%;
  4552. }
  4553. #u38982_text {
  4554. border-width:0px;
  4555. word-wrap:break-word;
  4556. text-transform:none;
  4557. visibility:hidden;
  4558. }
  4559. #u38983_img {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:0px;
  4563. top:0px;
  4564. width:100px;
  4565. height:34px;
  4566. }
  4567. #u38983 {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:400px;
  4571. top:646px;
  4572. width:100px;
  4573. height:34px;
  4574. display:flex;
  4575. line-height:30px;
  4576. }
  4577. #u38983 .text {
  4578. position:absolute;
  4579. align-self:center;
  4580. padding:2px 2px 2px 2px;
  4581. box-sizing:border-box;
  4582. width:100%;
  4583. }
  4584. #u38983_text {
  4585. border-width:0px;
  4586. word-wrap:break-word;
  4587. text-transform:none;
  4588. visibility:hidden;
  4589. }
  4590. #u38984_img {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:0px;
  4594. top:0px;
  4595. width:100px;
  4596. height:34px;
  4597. }
  4598. #u38984 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:500px;
  4602. top:646px;
  4603. width:100px;
  4604. height:34px;
  4605. display:flex;
  4606. line-height:30px;
  4607. }
  4608. #u38984 .text {
  4609. position:absolute;
  4610. align-self:center;
  4611. padding:2px 2px 2px 2px;
  4612. box-sizing:border-box;
  4613. width:100%;
  4614. }
  4615. #u38984_text {
  4616. border-width:0px;
  4617. word-wrap:break-word;
  4618. text-transform:none;
  4619. visibility:hidden;
  4620. }
  4621. #u38985_img {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:0px;
  4625. top:0px;
  4626. width:100px;
  4627. height:34px;
  4628. }
  4629. #u38985 {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:600px;
  4633. top:646px;
  4634. width:100px;
  4635. height:34px;
  4636. display:flex;
  4637. line-height:30px;
  4638. }
  4639. #u38985 .text {
  4640. position:absolute;
  4641. align-self:center;
  4642. padding:2px 2px 2px 2px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u38985_text {
  4647. border-width:0px;
  4648. word-wrap:break-word;
  4649. text-transform:none;
  4650. visibility:hidden;
  4651. }
  4652. #u38986_img {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:101px;
  4658. height:34px;
  4659. }
  4660. #u38986 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:0px;
  4664. top:680px;
  4665. width:101px;
  4666. height:34px;
  4667. display:flex;
  4668. line-height:30px;
  4669. }
  4670. #u38986 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:2px 2px 2px 2px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u38986_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. visibility:hidden;
  4682. }
  4683. #u38987_img {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:99px;
  4689. height:34px;
  4690. }
  4691. #u38987 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:101px;
  4695. top:680px;
  4696. width:99px;
  4697. height:34px;
  4698. display:flex;
  4699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. line-height:30px;
  4703. }
  4704. #u38987 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:2px 2px 2px 2px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u38987_text {
  4712. border-width:0px;
  4713. word-wrap:break-word;
  4714. text-transform:none;
  4715. visibility:hidden;
  4716. }
  4717. #u38988_img {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:100px;
  4723. height:34px;
  4724. }
  4725. #u38988 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:200px;
  4729. top:680px;
  4730. width:100px;
  4731. height:34px;
  4732. display:flex;
  4733. line-height:30px;
  4734. }
  4735. #u38988 .text {
  4736. position:absolute;
  4737. align-self:center;
  4738. padding:2px 2px 2px 2px;
  4739. box-sizing:border-box;
  4740. width:100%;
  4741. }
  4742. #u38988_text {
  4743. border-width:0px;
  4744. word-wrap:break-word;
  4745. text-transform:none;
  4746. visibility:hidden;
  4747. }
  4748. #u38989_img {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:0px;
  4752. top:0px;
  4753. width:100px;
  4754. height:34px;
  4755. }
  4756. #u38989 {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:300px;
  4760. top:680px;
  4761. width:100px;
  4762. height:34px;
  4763. display:flex;
  4764. line-height:30px;
  4765. }
  4766. #u38989 .text {
  4767. position:absolute;
  4768. align-self:center;
  4769. padding:2px 2px 2px 2px;
  4770. box-sizing:border-box;
  4771. width:100%;
  4772. }
  4773. #u38989_text {
  4774. border-width:0px;
  4775. word-wrap:break-word;
  4776. text-transform:none;
  4777. visibility:hidden;
  4778. }
  4779. #u38990_img {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:100px;
  4785. height:34px;
  4786. }
  4787. #u38990 {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:400px;
  4791. top:680px;
  4792. width:100px;
  4793. height:34px;
  4794. display:flex;
  4795. line-height:30px;
  4796. }
  4797. #u38990 .text {
  4798. position:absolute;
  4799. align-self:center;
  4800. padding:2px 2px 2px 2px;
  4801. box-sizing:border-box;
  4802. width:100%;
  4803. }
  4804. #u38990_text {
  4805. border-width:0px;
  4806. word-wrap:break-word;
  4807. text-transform:none;
  4808. visibility:hidden;
  4809. }
  4810. #u38991_img {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:100px;
  4816. height:34px;
  4817. }
  4818. #u38991 {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:500px;
  4822. top:680px;
  4823. width:100px;
  4824. height:34px;
  4825. display:flex;
  4826. line-height:30px;
  4827. }
  4828. #u38991 .text {
  4829. position:absolute;
  4830. align-self:center;
  4831. padding:2px 2px 2px 2px;
  4832. box-sizing:border-box;
  4833. width:100%;
  4834. }
  4835. #u38991_text {
  4836. border-width:0px;
  4837. word-wrap:break-word;
  4838. text-transform:none;
  4839. visibility:hidden;
  4840. }
  4841. #u38992_img {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:0px;
  4845. top:0px;
  4846. width:100px;
  4847. height:34px;
  4848. }
  4849. #u38992 {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:600px;
  4853. top:680px;
  4854. width:100px;
  4855. height:34px;
  4856. display:flex;
  4857. line-height:30px;
  4858. }
  4859. #u38992 .text {
  4860. position:absolute;
  4861. align-self:center;
  4862. padding:2px 2px 2px 2px;
  4863. box-sizing:border-box;
  4864. width:100%;
  4865. }
  4866. #u38992_text {
  4867. border-width:0px;
  4868. word-wrap:break-word;
  4869. text-transform:none;
  4870. visibility:hidden;
  4871. }
  4872. #u38993_img {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:0px;
  4876. top:0px;
  4877. width:101px;
  4878. height:34px;
  4879. }
  4880. #u38993 {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:0px;
  4884. top:714px;
  4885. width:101px;
  4886. height:34px;
  4887. display:flex;
  4888. line-height:30px;
  4889. }
  4890. #u38993 .text {
  4891. position:absolute;
  4892. align-self:center;
  4893. padding:2px 2px 2px 2px;
  4894. box-sizing:border-box;
  4895. width:100%;
  4896. }
  4897. #u38993_text {
  4898. border-width:0px;
  4899. word-wrap:break-word;
  4900. text-transform:none;
  4901. visibility:hidden;
  4902. }
  4903. #u38994_img {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:99px;
  4909. height:34px;
  4910. }
  4911. #u38994 {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:101px;
  4915. top:714px;
  4916. width:99px;
  4917. height:34px;
  4918. display:flex;
  4919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4920. font-weight:400;
  4921. font-style:normal;
  4922. line-height:30px;
  4923. }
  4924. #u38994 .text {
  4925. position:absolute;
  4926. align-self:center;
  4927. padding:2px 2px 2px 2px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u38994_text {
  4932. border-width:0px;
  4933. word-wrap:break-word;
  4934. text-transform:none;
  4935. visibility:hidden;
  4936. }
  4937. #u38995_img {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:100px;
  4943. height:34px;
  4944. }
  4945. #u38995 {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:200px;
  4949. top:714px;
  4950. width:100px;
  4951. height:34px;
  4952. display:flex;
  4953. line-height:30px;
  4954. }
  4955. #u38995 .text {
  4956. position:absolute;
  4957. align-self:center;
  4958. padding:2px 2px 2px 2px;
  4959. box-sizing:border-box;
  4960. width:100%;
  4961. }
  4962. #u38995_text {
  4963. border-width:0px;
  4964. word-wrap:break-word;
  4965. text-transform:none;
  4966. visibility:hidden;
  4967. }
  4968. #u38996_img {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:0px;
  4972. top:0px;
  4973. width:100px;
  4974. height:34px;
  4975. }
  4976. #u38996 {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:300px;
  4980. top:714px;
  4981. width:100px;
  4982. height:34px;
  4983. display:flex;
  4984. line-height:30px;
  4985. }
  4986. #u38996 .text {
  4987. position:absolute;
  4988. align-self:center;
  4989. padding:2px 2px 2px 2px;
  4990. box-sizing:border-box;
  4991. width:100%;
  4992. }
  4993. #u38996_text {
  4994. border-width:0px;
  4995. word-wrap:break-word;
  4996. text-transform:none;
  4997. visibility:hidden;
  4998. }
  4999. #u38997_img {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:0px;
  5003. top:0px;
  5004. width:100px;
  5005. height:34px;
  5006. }
  5007. #u38997 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:400px;
  5011. top:714px;
  5012. width:100px;
  5013. height:34px;
  5014. display:flex;
  5015. line-height:30px;
  5016. }
  5017. #u38997 .text {
  5018. position:absolute;
  5019. align-self:center;
  5020. padding:2px 2px 2px 2px;
  5021. box-sizing:border-box;
  5022. width:100%;
  5023. }
  5024. #u38997_text {
  5025. border-width:0px;
  5026. word-wrap:break-word;
  5027. text-transform:none;
  5028. visibility:hidden;
  5029. }
  5030. #u38998_img {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:100px;
  5036. height:34px;
  5037. }
  5038. #u38998 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:500px;
  5042. top:714px;
  5043. width:100px;
  5044. height:34px;
  5045. display:flex;
  5046. line-height:30px;
  5047. }
  5048. #u38998 .text {
  5049. position:absolute;
  5050. align-self:center;
  5051. padding:2px 2px 2px 2px;
  5052. box-sizing:border-box;
  5053. width:100%;
  5054. }
  5055. #u38998_text {
  5056. border-width:0px;
  5057. word-wrap:break-word;
  5058. text-transform:none;
  5059. visibility:hidden;
  5060. }
  5061. #u38999_img {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:0px;
  5065. top:0px;
  5066. width:100px;
  5067. height:34px;
  5068. }
  5069. #u38999 {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:600px;
  5073. top:714px;
  5074. width:100px;
  5075. height:34px;
  5076. display:flex;
  5077. line-height:30px;
  5078. }
  5079. #u38999 .text {
  5080. position:absolute;
  5081. align-self:center;
  5082. padding:2px 2px 2px 2px;
  5083. box-sizing:border-box;
  5084. width:100%;
  5085. }
  5086. #u38999_text {
  5087. border-width:0px;
  5088. word-wrap:break-word;
  5089. text-transform:none;
  5090. visibility:hidden;
  5091. }
  5092. #u39000_img {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:0px;
  5096. top:0px;
  5097. width:101px;
  5098. height:34px;
  5099. }
  5100. #u39000 {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:748px;
  5105. width:101px;
  5106. height:34px;
  5107. display:flex;
  5108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5109. font-weight:400;
  5110. font-style:normal;
  5111. color:#FFFFFF;
  5112. line-height:30px;
  5113. }
  5114. #u39000 .text {
  5115. position:absolute;
  5116. align-self:center;
  5117. padding:2px 2px 2px 2px;
  5118. box-sizing:border-box;
  5119. width:100%;
  5120. }
  5121. #u39000_text {
  5122. border-width:0px;
  5123. word-wrap:break-word;
  5124. text-transform:none;
  5125. }
  5126. #u39001_img {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:99px;
  5132. height:34px;
  5133. }
  5134. #u39001 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:101px;
  5138. top:748px;
  5139. width:99px;
  5140. height:34px;
  5141. display:flex;
  5142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5143. font-weight:400;
  5144. font-style:normal;
  5145. color:#FFFFFF;
  5146. line-height:30px;
  5147. }
  5148. #u39001 .text {
  5149. position:absolute;
  5150. align-self:center;
  5151. padding:2px 2px 2px 2px;
  5152. box-sizing:border-box;
  5153. width:100%;
  5154. }
  5155. #u39001_text {
  5156. border-width:0px;
  5157. word-wrap:break-word;
  5158. text-transform:none;
  5159. }
  5160. #u39002_img {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:0px;
  5164. top:0px;
  5165. width:100px;
  5166. height:34px;
  5167. }
  5168. #u39002 {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:200px;
  5172. top:748px;
  5173. width:100px;
  5174. height:34px;
  5175. display:flex;
  5176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. color:#FFFFFF;
  5180. line-height:30px;
  5181. }
  5182. #u39002 .text {
  5183. position:absolute;
  5184. align-self:center;
  5185. padding:2px 2px 2px 2px;
  5186. box-sizing:border-box;
  5187. width:100%;
  5188. }
  5189. #u39002_text {
  5190. border-width:0px;
  5191. word-wrap:break-word;
  5192. text-transform:none;
  5193. }
  5194. #u39003_img {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:0px;
  5198. top:0px;
  5199. width:100px;
  5200. height:34px;
  5201. }
  5202. #u39003 {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:300px;
  5206. top:748px;
  5207. width:100px;
  5208. height:34px;
  5209. display:flex;
  5210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5211. font-weight:400;
  5212. font-style:normal;
  5213. color:#FFFFFF;
  5214. line-height:30px;
  5215. }
  5216. #u39003 .text {
  5217. position:absolute;
  5218. align-self:center;
  5219. padding:2px 2px 2px 2px;
  5220. box-sizing:border-box;
  5221. width:100%;
  5222. }
  5223. #u39003_text {
  5224. border-width:0px;
  5225. word-wrap:break-word;
  5226. text-transform:none;
  5227. }
  5228. #u39004_img {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:0px;
  5232. top:0px;
  5233. width:100px;
  5234. height:34px;
  5235. }
  5236. #u39004 {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:400px;
  5240. top:748px;
  5241. width:100px;
  5242. height:34px;
  5243. display:flex;
  5244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5245. font-weight:400;
  5246. font-style:normal;
  5247. color:#FFFFFF;
  5248. line-height:30px;
  5249. }
  5250. #u39004 .text {
  5251. position:absolute;
  5252. align-self:center;
  5253. padding:2px 2px 2px 2px;
  5254. box-sizing:border-box;
  5255. width:100%;
  5256. }
  5257. #u39004_text {
  5258. border-width:0px;
  5259. word-wrap:break-word;
  5260. text-transform:none;
  5261. }
  5262. #u39005_img {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:0px;
  5266. top:0px;
  5267. width:100px;
  5268. height:34px;
  5269. }
  5270. #u39005 {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:500px;
  5274. top:748px;
  5275. width:100px;
  5276. height:34px;
  5277. display:flex;
  5278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5279. font-weight:400;
  5280. font-style:normal;
  5281. color:#FFFFFF;
  5282. line-height:30px;
  5283. }
  5284. #u39005 .text {
  5285. position:absolute;
  5286. align-self:center;
  5287. padding:2px 2px 2px 2px;
  5288. box-sizing:border-box;
  5289. width:100%;
  5290. }
  5291. #u39005_text {
  5292. border-width:0px;
  5293. word-wrap:break-word;
  5294. text-transform:none;
  5295. }
  5296. #u39006_img {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:100px;
  5302. height:34px;
  5303. }
  5304. #u39006 {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:600px;
  5308. top:748px;
  5309. width:100px;
  5310. height:34px;
  5311. display:flex;
  5312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5313. font-weight:400;
  5314. font-style:normal;
  5315. color:#FFFFFF;
  5316. line-height:30px;
  5317. }
  5318. #u39006 .text {
  5319. position:absolute;
  5320. align-self:center;
  5321. padding:2px 2px 2px 2px;
  5322. box-sizing:border-box;
  5323. width:100%;
  5324. }
  5325. #u39006_text {
  5326. border-width:0px;
  5327. word-wrap:break-word;
  5328. text-transform:none;
  5329. visibility:hidden;
  5330. }
  5331. #u39007_img {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:0px;
  5335. top:0px;
  5336. width:101px;
  5337. height:34px;
  5338. }
  5339. #u39007 {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:0px;
  5343. top:782px;
  5344. width:101px;
  5345. height:34px;
  5346. display:flex;
  5347. line-height:30px;
  5348. }
  5349. #u39007 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:2px 2px 2px 2px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u39007_text {
  5357. border-width:0px;
  5358. word-wrap:break-word;
  5359. text-transform:none;
  5360. visibility:hidden;
  5361. }
  5362. #u39008_img {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:99px;
  5368. height:34px;
  5369. }
  5370. #u39008 {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:101px;
  5374. top:782px;
  5375. width:99px;
  5376. height:34px;
  5377. display:flex;
  5378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5379. font-weight:400;
  5380. font-style:normal;
  5381. line-height:30px;
  5382. }
  5383. #u39008 .text {
  5384. position:absolute;
  5385. align-self:center;
  5386. padding:2px 2px 2px 2px;
  5387. box-sizing:border-box;
  5388. width:100%;
  5389. }
  5390. #u39008_text {
  5391. border-width:0px;
  5392. word-wrap:break-word;
  5393. text-transform:none;
  5394. visibility:hidden;
  5395. }
  5396. #u39009_img {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:0px;
  5400. top:0px;
  5401. width:100px;
  5402. height:34px;
  5403. }
  5404. #u39009 {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:200px;
  5408. top:782px;
  5409. width:100px;
  5410. height:34px;
  5411. display:flex;
  5412. line-height:30px;
  5413. }
  5414. #u39009 .text {
  5415. position:absolute;
  5416. align-self:center;
  5417. padding:2px 2px 2px 2px;
  5418. box-sizing:border-box;
  5419. width:100%;
  5420. }
  5421. #u39009_text {
  5422. border-width:0px;
  5423. word-wrap:break-word;
  5424. text-transform:none;
  5425. visibility:hidden;
  5426. }
  5427. #u39010_img {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:0px;
  5431. top:0px;
  5432. width:100px;
  5433. height:34px;
  5434. }
  5435. #u39010 {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:300px;
  5439. top:782px;
  5440. width:100px;
  5441. height:34px;
  5442. display:flex;
  5443. line-height:30px;
  5444. }
  5445. #u39010 .text {
  5446. position:absolute;
  5447. align-self:center;
  5448. padding:2px 2px 2px 2px;
  5449. box-sizing:border-box;
  5450. width:100%;
  5451. }
  5452. #u39010_text {
  5453. border-width:0px;
  5454. word-wrap:break-word;
  5455. text-transform:none;
  5456. visibility:hidden;
  5457. }
  5458. #u39011_img {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:100px;
  5464. height:34px;
  5465. }
  5466. #u39011 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:400px;
  5470. top:782px;
  5471. width:100px;
  5472. height:34px;
  5473. display:flex;
  5474. line-height:30px;
  5475. }
  5476. #u39011 .text {
  5477. position:absolute;
  5478. align-self:center;
  5479. padding:2px 2px 2px 2px;
  5480. box-sizing:border-box;
  5481. width:100%;
  5482. }
  5483. #u39011_text {
  5484. border-width:0px;
  5485. word-wrap:break-word;
  5486. text-transform:none;
  5487. visibility:hidden;
  5488. }
  5489. #u39012_img {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:100px;
  5495. height:34px;
  5496. }
  5497. #u39012 {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:500px;
  5501. top:782px;
  5502. width:100px;
  5503. height:34px;
  5504. display:flex;
  5505. line-height:30px;
  5506. }
  5507. #u39012 .text {
  5508. position:absolute;
  5509. align-self:center;
  5510. padding:2px 2px 2px 2px;
  5511. box-sizing:border-box;
  5512. width:100%;
  5513. }
  5514. #u39012_text {
  5515. border-width:0px;
  5516. word-wrap:break-word;
  5517. text-transform:none;
  5518. visibility:hidden;
  5519. }
  5520. #u39013_img {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:100px;
  5526. height:34px;
  5527. }
  5528. #u39013 {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:600px;
  5532. top:782px;
  5533. width:100px;
  5534. height:34px;
  5535. display:flex;
  5536. line-height:30px;
  5537. }
  5538. #u39013 .text {
  5539. position:absolute;
  5540. align-self:center;
  5541. padding:2px 2px 2px 2px;
  5542. box-sizing:border-box;
  5543. width:100%;
  5544. }
  5545. #u39013_text {
  5546. border-width:0px;
  5547. word-wrap:break-word;
  5548. text-transform:none;
  5549. visibility:hidden;
  5550. }
  5551. #u39014_img {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:101px;
  5557. height:34px;
  5558. }
  5559. #u39014 {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:0px;
  5563. top:816px;
  5564. width:101px;
  5565. height:34px;
  5566. display:flex;
  5567. line-height:30px;
  5568. }
  5569. #u39014 .text {
  5570. position:absolute;
  5571. align-self:center;
  5572. padding:2px 2px 2px 2px;
  5573. box-sizing:border-box;
  5574. width:100%;
  5575. }
  5576. #u39014_text {
  5577. border-width:0px;
  5578. word-wrap:break-word;
  5579. text-transform:none;
  5580. visibility:hidden;
  5581. }
  5582. #u39015_img {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:0px;
  5586. top:0px;
  5587. width:99px;
  5588. height:34px;
  5589. }
  5590. #u39015 {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:101px;
  5594. top:816px;
  5595. width:99px;
  5596. height:34px;
  5597. display:flex;
  5598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5599. font-weight:400;
  5600. font-style:normal;
  5601. line-height:30px;
  5602. }
  5603. #u39015 .text {
  5604. position:absolute;
  5605. align-self:center;
  5606. padding:2px 2px 2px 2px;
  5607. box-sizing:border-box;
  5608. width:100%;
  5609. }
  5610. #u39015_text {
  5611. border-width:0px;
  5612. word-wrap:break-word;
  5613. text-transform:none;
  5614. visibility:hidden;
  5615. }
  5616. #u39016_img {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:0px;
  5620. top:0px;
  5621. width:100px;
  5622. height:34px;
  5623. }
  5624. #u39016 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:200px;
  5628. top:816px;
  5629. width:100px;
  5630. height:34px;
  5631. display:flex;
  5632. line-height:30px;
  5633. }
  5634. #u39016 .text {
  5635. position:absolute;
  5636. align-self:center;
  5637. padding:2px 2px 2px 2px;
  5638. box-sizing:border-box;
  5639. width:100%;
  5640. }
  5641. #u39016_text {
  5642. border-width:0px;
  5643. word-wrap:break-word;
  5644. text-transform:none;
  5645. visibility:hidden;
  5646. }
  5647. #u39017_img {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:0px;
  5651. top:0px;
  5652. width:100px;
  5653. height:34px;
  5654. }
  5655. #u39017 {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:300px;
  5659. top:816px;
  5660. width:100px;
  5661. height:34px;
  5662. display:flex;
  5663. line-height:30px;
  5664. }
  5665. #u39017 .text {
  5666. position:absolute;
  5667. align-self:center;
  5668. padding:2px 2px 2px 2px;
  5669. box-sizing:border-box;
  5670. width:100%;
  5671. }
  5672. #u39017_text {
  5673. border-width:0px;
  5674. word-wrap:break-word;
  5675. text-transform:none;
  5676. visibility:hidden;
  5677. }
  5678. #u39018_img {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:0px;
  5682. top:0px;
  5683. width:100px;
  5684. height:34px;
  5685. }
  5686. #u39018 {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:400px;
  5690. top:816px;
  5691. width:100px;
  5692. height:34px;
  5693. display:flex;
  5694. line-height:30px;
  5695. }
  5696. #u39018 .text {
  5697. position:absolute;
  5698. align-self:center;
  5699. padding:2px 2px 2px 2px;
  5700. box-sizing:border-box;
  5701. width:100%;
  5702. }
  5703. #u39018_text {
  5704. border-width:0px;
  5705. word-wrap:break-word;
  5706. text-transform:none;
  5707. visibility:hidden;
  5708. }
  5709. #u39019_img {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:0px;
  5713. top:0px;
  5714. width:100px;
  5715. height:34px;
  5716. }
  5717. #u39019 {
  5718. border-width:0px;
  5719. position:absolute;
  5720. left:500px;
  5721. top:816px;
  5722. width:100px;
  5723. height:34px;
  5724. display:flex;
  5725. line-height:30px;
  5726. }
  5727. #u39019 .text {
  5728. position:absolute;
  5729. align-self:center;
  5730. padding:2px 2px 2px 2px;
  5731. box-sizing:border-box;
  5732. width:100%;
  5733. }
  5734. #u39019_text {
  5735. border-width:0px;
  5736. word-wrap:break-word;
  5737. text-transform:none;
  5738. visibility:hidden;
  5739. }
  5740. #u39020_img {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:0px;
  5744. top:0px;
  5745. width:100px;
  5746. height:34px;
  5747. }
  5748. #u39020 {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:600px;
  5752. top:816px;
  5753. width:100px;
  5754. height:34px;
  5755. display:flex;
  5756. line-height:30px;
  5757. }
  5758. #u39020 .text {
  5759. position:absolute;
  5760. align-self:center;
  5761. padding:2px 2px 2px 2px;
  5762. box-sizing:border-box;
  5763. width:100%;
  5764. }
  5765. #u39020_text {
  5766. border-width:0px;
  5767. word-wrap:break-word;
  5768. text-transform:none;
  5769. visibility:hidden;
  5770. }
  5771. #u39021_img {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:0px;
  5775. top:0px;
  5776. width:101px;
  5777. height:34px;
  5778. }
  5779. #u39021 {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:0px;
  5783. top:850px;
  5784. width:101px;
  5785. height:34px;
  5786. display:flex;
  5787. line-height:30px;
  5788. }
  5789. #u39021 .text {
  5790. position:absolute;
  5791. align-self:center;
  5792. padding:2px 2px 2px 2px;
  5793. box-sizing:border-box;
  5794. width:100%;
  5795. }
  5796. #u39021_text {
  5797. border-width:0px;
  5798. word-wrap:break-word;
  5799. text-transform:none;
  5800. visibility:hidden;
  5801. }
  5802. #u39022_img {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:99px;
  5808. height:34px;
  5809. }
  5810. #u39022 {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:101px;
  5814. top:850px;
  5815. width:99px;
  5816. height:34px;
  5817. display:flex;
  5818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5819. font-weight:400;
  5820. font-style:normal;
  5821. line-height:30px;
  5822. }
  5823. #u39022 .text {
  5824. position:absolute;
  5825. align-self:center;
  5826. padding:2px 2px 2px 2px;
  5827. box-sizing:border-box;
  5828. width:100%;
  5829. }
  5830. #u39022_text {
  5831. border-width:0px;
  5832. word-wrap:break-word;
  5833. text-transform:none;
  5834. visibility:hidden;
  5835. }
  5836. #u39023_img {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:100px;
  5842. height:34px;
  5843. }
  5844. #u39023 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:200px;
  5848. top:850px;
  5849. width:100px;
  5850. height:34px;
  5851. display:flex;
  5852. line-height:30px;
  5853. }
  5854. #u39023 .text {
  5855. position:absolute;
  5856. align-self:center;
  5857. padding:2px 2px 2px 2px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u39023_text {
  5862. border-width:0px;
  5863. word-wrap:break-word;
  5864. text-transform:none;
  5865. visibility:hidden;
  5866. }
  5867. #u39024_img {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:100px;
  5873. height:34px;
  5874. }
  5875. #u39024 {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:300px;
  5879. top:850px;
  5880. width:100px;
  5881. height:34px;
  5882. display:flex;
  5883. line-height:30px;
  5884. }
  5885. #u39024 .text {
  5886. position:absolute;
  5887. align-self:center;
  5888. padding:2px 2px 2px 2px;
  5889. box-sizing:border-box;
  5890. width:100%;
  5891. }
  5892. #u39024_text {
  5893. border-width:0px;
  5894. word-wrap:break-word;
  5895. text-transform:none;
  5896. visibility:hidden;
  5897. }
  5898. #u39025_img {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:100px;
  5904. height:34px;
  5905. }
  5906. #u39025 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:400px;
  5910. top:850px;
  5911. width:100px;
  5912. height:34px;
  5913. display:flex;
  5914. line-height:30px;
  5915. }
  5916. #u39025 .text {
  5917. position:absolute;
  5918. align-self:center;
  5919. padding:2px 2px 2px 2px;
  5920. box-sizing:border-box;
  5921. width:100%;
  5922. }
  5923. #u39025_text {
  5924. border-width:0px;
  5925. word-wrap:break-word;
  5926. text-transform:none;
  5927. visibility:hidden;
  5928. }
  5929. #u39026_img {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:0px;
  5933. top:0px;
  5934. width:100px;
  5935. height:34px;
  5936. }
  5937. #u39026 {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:500px;
  5941. top:850px;
  5942. width:100px;
  5943. height:34px;
  5944. display:flex;
  5945. line-height:30px;
  5946. }
  5947. #u39026 .text {
  5948. position:absolute;
  5949. align-self:center;
  5950. padding:2px 2px 2px 2px;
  5951. box-sizing:border-box;
  5952. width:100%;
  5953. }
  5954. #u39026_text {
  5955. border-width:0px;
  5956. word-wrap:break-word;
  5957. text-transform:none;
  5958. visibility:hidden;
  5959. }
  5960. #u39027_img {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:100px;
  5966. height:34px;
  5967. }
  5968. #u39027 {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:600px;
  5972. top:850px;
  5973. width:100px;
  5974. height:34px;
  5975. display:flex;
  5976. line-height:30px;
  5977. }
  5978. #u39027 .text {
  5979. position:absolute;
  5980. align-self:center;
  5981. padding:2px 2px 2px 2px;
  5982. box-sizing:border-box;
  5983. width:100%;
  5984. }
  5985. #u39027_text {
  5986. border-width:0px;
  5987. word-wrap:break-word;
  5988. text-transform:none;
  5989. visibility:hidden;
  5990. }
  5991. #u39028_img {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:0px;
  5995. top:0px;
  5996. width:101px;
  5997. height:34px;
  5998. }
  5999. #u39028 {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:0px;
  6003. top:884px;
  6004. width:101px;
  6005. height:34px;
  6006. display:flex;
  6007. line-height:30px;
  6008. }
  6009. #u39028 .text {
  6010. position:absolute;
  6011. align-self:center;
  6012. padding:2px 2px 2px 2px;
  6013. box-sizing:border-box;
  6014. width:100%;
  6015. }
  6016. #u39028_text {
  6017. border-width:0px;
  6018. word-wrap:break-word;
  6019. text-transform:none;
  6020. visibility:hidden;
  6021. }
  6022. #u39029_img {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:0px;
  6026. top:0px;
  6027. width:99px;
  6028. height:34px;
  6029. }
  6030. #u39029 {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:101px;
  6034. top:884px;
  6035. width:99px;
  6036. height:34px;
  6037. display:flex;
  6038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6039. font-weight:400;
  6040. font-style:normal;
  6041. line-height:30px;
  6042. }
  6043. #u39029 .text {
  6044. position:absolute;
  6045. align-self:center;
  6046. padding:2px 2px 2px 2px;
  6047. box-sizing:border-box;
  6048. width:100%;
  6049. }
  6050. #u39029_text {
  6051. border-width:0px;
  6052. word-wrap:break-word;
  6053. text-transform:none;
  6054. visibility:hidden;
  6055. }
  6056. #u39030_img {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:0px;
  6060. top:0px;
  6061. width:100px;
  6062. height:34px;
  6063. }
  6064. #u39030 {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:200px;
  6068. top:884px;
  6069. width:100px;
  6070. height:34px;
  6071. display:flex;
  6072. line-height:30px;
  6073. }
  6074. #u39030 .text {
  6075. position:absolute;
  6076. align-self:center;
  6077. padding:2px 2px 2px 2px;
  6078. box-sizing:border-box;
  6079. width:100%;
  6080. }
  6081. #u39030_text {
  6082. border-width:0px;
  6083. word-wrap:break-word;
  6084. text-transform:none;
  6085. visibility:hidden;
  6086. }
  6087. #u39031_img {
  6088. border-width:0px;
  6089. position:absolute;
  6090. left:0px;
  6091. top:0px;
  6092. width:100px;
  6093. height:34px;
  6094. }
  6095. #u39031 {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:300px;
  6099. top:884px;
  6100. width:100px;
  6101. height:34px;
  6102. display:flex;
  6103. line-height:30px;
  6104. }
  6105. #u39031 .text {
  6106. position:absolute;
  6107. align-self:center;
  6108. padding:2px 2px 2px 2px;
  6109. box-sizing:border-box;
  6110. width:100%;
  6111. }
  6112. #u39031_text {
  6113. border-width:0px;
  6114. word-wrap:break-word;
  6115. text-transform:none;
  6116. visibility:hidden;
  6117. }
  6118. #u39032_img {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:100px;
  6124. height:34px;
  6125. }
  6126. #u39032 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:400px;
  6130. top:884px;
  6131. width:100px;
  6132. height:34px;
  6133. display:flex;
  6134. line-height:30px;
  6135. }
  6136. #u39032 .text {
  6137. position:absolute;
  6138. align-self:center;
  6139. padding:2px 2px 2px 2px;
  6140. box-sizing:border-box;
  6141. width:100%;
  6142. }
  6143. #u39032_text {
  6144. border-width:0px;
  6145. word-wrap:break-word;
  6146. text-transform:none;
  6147. visibility:hidden;
  6148. }
  6149. #u39033_img {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:0px;
  6153. top:0px;
  6154. width:100px;
  6155. height:34px;
  6156. }
  6157. #u39033 {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:500px;
  6161. top:884px;
  6162. width:100px;
  6163. height:34px;
  6164. display:flex;
  6165. line-height:30px;
  6166. }
  6167. #u39033 .text {
  6168. position:absolute;
  6169. align-self:center;
  6170. padding:2px 2px 2px 2px;
  6171. box-sizing:border-box;
  6172. width:100%;
  6173. }
  6174. #u39033_text {
  6175. border-width:0px;
  6176. word-wrap:break-word;
  6177. text-transform:none;
  6178. visibility:hidden;
  6179. }
  6180. #u39034_img {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:0px;
  6184. top:0px;
  6185. width:100px;
  6186. height:34px;
  6187. }
  6188. #u39034 {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:600px;
  6192. top:884px;
  6193. width:100px;
  6194. height:34px;
  6195. display:flex;
  6196. line-height:30px;
  6197. }
  6198. #u39034 .text {
  6199. position:absolute;
  6200. align-self:center;
  6201. padding:2px 2px 2px 2px;
  6202. box-sizing:border-box;
  6203. width:100%;
  6204. }
  6205. #u39034_text {
  6206. border-width:0px;
  6207. word-wrap:break-word;
  6208. text-transform:none;
  6209. visibility:hidden;
  6210. }
  6211. #u39035_img {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:0px;
  6215. top:0px;
  6216. width:101px;
  6217. height:34px;
  6218. }
  6219. #u39035 {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:0px;
  6223. top:918px;
  6224. width:101px;
  6225. height:34px;
  6226. display:flex;
  6227. line-height:30px;
  6228. }
  6229. #u39035 .text {
  6230. position:absolute;
  6231. align-self:center;
  6232. padding:2px 2px 2px 2px;
  6233. box-sizing:border-box;
  6234. width:100%;
  6235. }
  6236. #u39035_text {
  6237. border-width:0px;
  6238. word-wrap:break-word;
  6239. text-transform:none;
  6240. visibility:hidden;
  6241. }
  6242. #u39036_img {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:0px;
  6246. top:0px;
  6247. width:99px;
  6248. height:34px;
  6249. }
  6250. #u39036 {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:101px;
  6254. top:918px;
  6255. width:99px;
  6256. height:34px;
  6257. display:flex;
  6258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6259. font-weight:400;
  6260. font-style:normal;
  6261. line-height:30px;
  6262. }
  6263. #u39036 .text {
  6264. position:absolute;
  6265. align-self:center;
  6266. padding:2px 2px 2px 2px;
  6267. box-sizing:border-box;
  6268. width:100%;
  6269. }
  6270. #u39036_text {
  6271. border-width:0px;
  6272. word-wrap:break-word;
  6273. text-transform:none;
  6274. visibility:hidden;
  6275. }
  6276. #u39037_img {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:100px;
  6282. height:34px;
  6283. }
  6284. #u39037 {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:200px;
  6288. top:918px;
  6289. width:100px;
  6290. height:34px;
  6291. display:flex;
  6292. line-height:30px;
  6293. }
  6294. #u39037 .text {
  6295. position:absolute;
  6296. align-self:center;
  6297. padding:2px 2px 2px 2px;
  6298. box-sizing:border-box;
  6299. width:100%;
  6300. }
  6301. #u39037_text {
  6302. border-width:0px;
  6303. word-wrap:break-word;
  6304. text-transform:none;
  6305. visibility:hidden;
  6306. }
  6307. #u39038_img {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:0px;
  6311. top:0px;
  6312. width:100px;
  6313. height:34px;
  6314. }
  6315. #u39038 {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:300px;
  6319. top:918px;
  6320. width:100px;
  6321. height:34px;
  6322. display:flex;
  6323. line-height:30px;
  6324. }
  6325. #u39038 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:2px 2px 2px 2px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u39038_text {
  6333. border-width:0px;
  6334. word-wrap:break-word;
  6335. text-transform:none;
  6336. visibility:hidden;
  6337. }
  6338. #u39039_img {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:100px;
  6344. height:34px;
  6345. }
  6346. #u39039 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:400px;
  6350. top:918px;
  6351. width:100px;
  6352. height:34px;
  6353. display:flex;
  6354. line-height:30px;
  6355. }
  6356. #u39039 .text {
  6357. position:absolute;
  6358. align-self:center;
  6359. padding:2px 2px 2px 2px;
  6360. box-sizing:border-box;
  6361. width:100%;
  6362. }
  6363. #u39039_text {
  6364. border-width:0px;
  6365. word-wrap:break-word;
  6366. text-transform:none;
  6367. visibility:hidden;
  6368. }
  6369. #u39040_img {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:100px;
  6375. height:34px;
  6376. }
  6377. #u39040 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:500px;
  6381. top:918px;
  6382. width:100px;
  6383. height:34px;
  6384. display:flex;
  6385. line-height:30px;
  6386. }
  6387. #u39040 .text {
  6388. position:absolute;
  6389. align-self:center;
  6390. padding:2px 2px 2px 2px;
  6391. box-sizing:border-box;
  6392. width:100%;
  6393. }
  6394. #u39040_text {
  6395. border-width:0px;
  6396. word-wrap:break-word;
  6397. text-transform:none;
  6398. visibility:hidden;
  6399. }
  6400. #u39041_img {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:100px;
  6406. height:34px;
  6407. }
  6408. #u39041 {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:600px;
  6412. top:918px;
  6413. width:100px;
  6414. height:34px;
  6415. display:flex;
  6416. line-height:30px;
  6417. }
  6418. #u39041 .text {
  6419. position:absolute;
  6420. align-self:center;
  6421. padding:2px 2px 2px 2px;
  6422. box-sizing:border-box;
  6423. width:100%;
  6424. }
  6425. #u39041_text {
  6426. border-width:0px;
  6427. word-wrap:break-word;
  6428. text-transform:none;
  6429. visibility:hidden;
  6430. }
  6431. #u39042_img {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:0px;
  6435. top:0px;
  6436. width:101px;
  6437. height:34px;
  6438. }
  6439. #u39042 {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:952px;
  6444. width:101px;
  6445. height:34px;
  6446. display:flex;
  6447. line-height:30px;
  6448. }
  6449. #u39042 .text {
  6450. position:absolute;
  6451. align-self:center;
  6452. padding:2px 2px 2px 2px;
  6453. box-sizing:border-box;
  6454. width:100%;
  6455. }
  6456. #u39042_text {
  6457. border-width:0px;
  6458. word-wrap:break-word;
  6459. text-transform:none;
  6460. visibility:hidden;
  6461. }
  6462. #u39043_img {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:0px;
  6466. top:0px;
  6467. width:99px;
  6468. height:34px;
  6469. }
  6470. #u39043 {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:101px;
  6474. top:952px;
  6475. width:99px;
  6476. height:34px;
  6477. display:flex;
  6478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6479. font-weight:400;
  6480. font-style:normal;
  6481. line-height:30px;
  6482. }
  6483. #u39043 .text {
  6484. position:absolute;
  6485. align-self:center;
  6486. padding:2px 2px 2px 2px;
  6487. box-sizing:border-box;
  6488. width:100%;
  6489. }
  6490. #u39043_text {
  6491. border-width:0px;
  6492. word-wrap:break-word;
  6493. text-transform:none;
  6494. visibility:hidden;
  6495. }
  6496. #u39044_img {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:0px;
  6500. top:0px;
  6501. width:100px;
  6502. height:34px;
  6503. }
  6504. #u39044 {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:200px;
  6508. top:952px;
  6509. width:100px;
  6510. height:34px;
  6511. display:flex;
  6512. line-height:30px;
  6513. }
  6514. #u39044 .text {
  6515. position:absolute;
  6516. align-self:center;
  6517. padding:2px 2px 2px 2px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u39044_text {
  6522. border-width:0px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. visibility:hidden;
  6526. }
  6527. #u39045_img {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:100px;
  6533. height:34px;
  6534. }
  6535. #u39045 {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:300px;
  6539. top:952px;
  6540. width:100px;
  6541. height:34px;
  6542. display:flex;
  6543. line-height:30px;
  6544. }
  6545. #u39045 .text {
  6546. position:absolute;
  6547. align-self:center;
  6548. padding:2px 2px 2px 2px;
  6549. box-sizing:border-box;
  6550. width:100%;
  6551. }
  6552. #u39045_text {
  6553. border-width:0px;
  6554. word-wrap:break-word;
  6555. text-transform:none;
  6556. visibility:hidden;
  6557. }
  6558. #u39046_img {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:0px;
  6562. top:0px;
  6563. width:100px;
  6564. height:34px;
  6565. }
  6566. #u39046 {
  6567. border-width:0px;
  6568. position:absolute;
  6569. left:400px;
  6570. top:952px;
  6571. width:100px;
  6572. height:34px;
  6573. display:flex;
  6574. line-height:30px;
  6575. }
  6576. #u39046 .text {
  6577. position:absolute;
  6578. align-self:center;
  6579. padding:2px 2px 2px 2px;
  6580. box-sizing:border-box;
  6581. width:100%;
  6582. }
  6583. #u39046_text {
  6584. border-width:0px;
  6585. word-wrap:break-word;
  6586. text-transform:none;
  6587. visibility:hidden;
  6588. }
  6589. #u39047_img {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:100px;
  6595. height:34px;
  6596. }
  6597. #u39047 {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:500px;
  6601. top:952px;
  6602. width:100px;
  6603. height:34px;
  6604. display:flex;
  6605. line-height:30px;
  6606. }
  6607. #u39047 .text {
  6608. position:absolute;
  6609. align-self:center;
  6610. padding:2px 2px 2px 2px;
  6611. box-sizing:border-box;
  6612. width:100%;
  6613. }
  6614. #u39047_text {
  6615. border-width:0px;
  6616. word-wrap:break-word;
  6617. text-transform:none;
  6618. visibility:hidden;
  6619. }
  6620. #u39048_img {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:0px;
  6624. top:0px;
  6625. width:100px;
  6626. height:34px;
  6627. }
  6628. #u39048 {
  6629. border-width:0px;
  6630. position:absolute;
  6631. left:600px;
  6632. top:952px;
  6633. width:100px;
  6634. height:34px;
  6635. display:flex;
  6636. line-height:30px;
  6637. }
  6638. #u39048 .text {
  6639. position:absolute;
  6640. align-self:center;
  6641. padding:2px 2px 2px 2px;
  6642. box-sizing:border-box;
  6643. width:100%;
  6644. }
  6645. #u39048_text {
  6646. border-width:0px;
  6647. word-wrap:break-word;
  6648. text-transform:none;
  6649. visibility:hidden;
  6650. }
  6651. #u39049_div {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:726px;
  6657. height:180px;
  6658. background:inherit;
  6659. background-color:rgba(255, 255, 255, 0);
  6660. border:none;
  6661. border-radius:0px;
  6662. -moz-box-shadow:none;
  6663. -webkit-box-shadow:none;
  6664. box-shadow:none;
  6665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6666. font-weight:400;
  6667. font-style:normal;
  6668. line-height:30px;
  6669. }
  6670. #u39049 {
  6671. border-width:0px;
  6672. position:absolute;
  6673. left:971px;
  6674. top:2016px;
  6675. width:726px;
  6676. height:180px;
  6677. display:flex;
  6678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6679. font-weight:400;
  6680. font-style:normal;
  6681. line-height:30px;
  6682. }
  6683. #u39049 .text {
  6684. position:absolute;
  6685. align-self:flex-start;
  6686. padding:0px 0px 0px 0px;
  6687. box-sizing:border-box;
  6688. width:100%;
  6689. }
  6690. #u39049_text {
  6691. border-width:0px;
  6692. word-wrap:break-word;
  6693. text-transform:none;
  6694. }