styles.css 158 KB

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