styles.css 129 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1510px;
  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. #u34523 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u34524_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1510px;
  33. height:785px;
  34. background:inherit;
  35. background-color:rgba(84, 100, 125, 1);
  36. border:none;
  37. border-radius:0px;
  38. -moz-box-shadow:none;
  39. -webkit-box-shadow:none;
  40. box-shadow:none;
  41. }
  42. #u34524 {
  43. border-width:0px;
  44. position:absolute;
  45. left:0px;
  46. top:73px;
  47. width:1510px;
  48. height:785px;
  49. display:flex;
  50. }
  51. #u34524 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u34524_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u34525_img {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:976px;
  70. height:722px;
  71. }
  72. #u34525 {
  73. border-width:0px;
  74. position:absolute;
  75. left:269px;
  76. top:88px;
  77. width:976px;
  78. height:722px;
  79. display:flex;
  80. }
  81. #u34525 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u34525_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u34526_img {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:1510px;
  100. height:858px;
  101. }
  102. #u34526 {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:1510px;
  108. height:858px;
  109. display:flex;
  110. }
  111. #u34526 .text {
  112. position:absolute;
  113. align-self:center;
  114. padding:2px 2px 2px 2px;
  115. box-sizing:border-box;
  116. width:100%;
  117. }
  118. #u34526_text {
  119. border-width:0px;
  120. word-wrap:break-word;
  121. text-transform:none;
  122. visibility:hidden;
  123. }
  124. #u34527 {
  125. border-width:0px;
  126. position:absolute;
  127. left:458px;
  128. top:32px;
  129. width:558px;
  130. height:30px;
  131. }
  132. #u34527_state0 {
  133. border-width:0px;
  134. position:absolute;
  135. left:0px;
  136. top:0px;
  137. width:558px;
  138. height:30px;
  139. -ms-overflow-x:hidden;
  140. overflow-x:hidden;
  141. -ms-overflow-y:hidden;
  142. overflow-y:hidden;
  143. background-image:none;
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. }
  150. #u34527_state0_content {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:1px;
  156. height:1px;
  157. }
  158. #u34528_div {
  159. border-width:0px;
  160. position:absolute;
  161. left:0px;
  162. top:0px;
  163. width:660px;
  164. height:30px;
  165. background:inherit;
  166. background-color:rgba(255, 255, 255, 0);
  167. border:none;
  168. border-left:0px;
  169. border-top:0px;
  170. border-right:0px;
  171. border-radius:0px;
  172. border-bottom-right-radius:0px;
  173. border-bottom-left-radius:0px;
  174. -moz-box-shadow:none;
  175. -webkit-box-shadow:none;
  176. box-shadow:none;
  177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  178. font-style:normal;
  179. font-size:12px;
  180. line-height:30px;
  181. }
  182. #u34528 {
  183. border-width:0px;
  184. position:absolute;
  185. left:0px;
  186. top:0px;
  187. width:660px;
  188. height:30px;
  189. display:flex;
  190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  191. font-style:normal;
  192. font-size:12px;
  193. line-height:30px;
  194. }
  195. #u34528 .text {
  196. position:absolute;
  197. align-self:flex-start;
  198. padding:0px 0px 0px 0px;
  199. box-sizing:border-box;
  200. width:100%;
  201. }
  202. #u34528_text {
  203. border-width:0px;
  204. white-space:nowrap;
  205. text-transform:none;
  206. }
  207. #u34529 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u34530_div {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:100px;
  221. height:40px;
  222. background:inherit;
  223. background-color:rgba(245, 154, 35, 1);
  224. box-sizing:border-box;
  225. border-width:1px;
  226. border-style:solid;
  227. border-color:rgba(245, 154, 35, 1);
  228. border-radius:4px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  233. font-weight:400;
  234. font-style:normal;
  235. font-size:14px;
  236. color:#FFFFFF;
  237. }
  238. #u34530 {
  239. border-width:0px;
  240. position:absolute;
  241. left:1200px;
  242. top:87px;
  243. width:100px;
  244. height:40px;
  245. display:flex;
  246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  247. font-weight:400;
  248. font-style:normal;
  249. font-size:14px;
  250. color:#FFFFFF;
  251. }
  252. #u34530 .text {
  253. position:absolute;
  254. align-self:center;
  255. padding:2px 2px 2px 20px;
  256. box-sizing:border-box;
  257. width:100%;
  258. }
  259. #u34530_text {
  260. border-width:0px;
  261. word-wrap:break-word;
  262. text-transform:none;
  263. }
  264. #u34531_img {
  265. border-width:0px;
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:16px;
  270. height:15px;
  271. }
  272. #u34531 {
  273. border-width:0px;
  274. position:absolute;
  275. left:1209px;
  276. top:99px;
  277. width:16px;
  278. height:15px;
  279. display:flex;
  280. }
  281. #u34531 .text {
  282. position:absolute;
  283. align-self:center;
  284. padding:2px 2px 2px 2px;
  285. box-sizing:border-box;
  286. width:100%;
  287. }
  288. #u34531_text {
  289. border-width:0px;
  290. word-wrap:break-word;
  291. text-transform:none;
  292. visibility:hidden;
  293. }
  294. #u34532 {
  295. border-width:0px;
  296. position:absolute;
  297. left:0px;
  298. top:0px;
  299. width:0px;
  300. height:0px;
  301. }
  302. #u34533_div {
  303. border-width:0px;
  304. position:absolute;
  305. left:0px;
  306. top:0px;
  307. width:80px;
  308. height:40px;
  309. background:inherit;
  310. background-color:rgba(245, 154, 35, 0.0980392156862745);
  311. box-sizing:border-box;
  312. border-width:1px;
  313. border-style:solid;
  314. border-color:rgba(245, 154, 35, 1);
  315. border-radius:4px;
  316. -moz-box-shadow:none;
  317. -webkit-box-shadow:none;
  318. box-shadow:none;
  319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  320. font-weight:400;
  321. font-style:normal;
  322. font-size:14px;
  323. color:#F59A23;
  324. }
  325. #u34533 {
  326. border-width:0px;
  327. position:absolute;
  328. left:1400px;
  329. top:87px;
  330. width:80px;
  331. height:40px;
  332. display:flex;
  333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  334. font-weight:400;
  335. font-style:normal;
  336. font-size:14px;
  337. color:#F59A23;
  338. }
  339. #u34533 .text {
  340. position:absolute;
  341. align-self:center;
  342. padding:2px 10px 2px 2px;
  343. box-sizing:border-box;
  344. width:100%;
  345. }
  346. #u34533_text {
  347. border-width:0px;
  348. word-wrap:break-word;
  349. text-transform:none;
  350. }
  351. #u34534_img {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:7px;
  357. height:4px;
  358. }
  359. #u34534 {
  360. border-width:0px;
  361. position:absolute;
  362. left:1467px;
  363. top:105px;
  364. width:7px;
  365. height:4px;
  366. display:flex;
  367. }
  368. #u34534 .text {
  369. position:absolute;
  370. align-self:center;
  371. padding:2px 2px 2px 2px;
  372. box-sizing:border-box;
  373. width:100%;
  374. }
  375. #u34534_text {
  376. border-width:0px;
  377. word-wrap:break-word;
  378. text-transform:none;
  379. visibility:hidden;
  380. }
  381. #u34535 {
  382. border-width:0px;
  383. position:absolute;
  384. left:0px;
  385. top:0px;
  386. width:0px;
  387. height:0px;
  388. }
  389. #u34536_div {
  390. border-width:0px;
  391. position:absolute;
  392. left:0px;
  393. top:0px;
  394. width:80px;
  395. height:30px;
  396. background:inherit;
  397. background-color:rgba(245, 154, 35, 1);
  398. box-sizing:border-box;
  399. border-width:1px;
  400. border-style:solid;
  401. border-color:rgba(245, 154, 35, 1);
  402. border-radius:4px;
  403. border-top-right-radius:0px;
  404. border-bottom-right-radius:0px;
  405. -moz-box-shadow:none;
  406. -webkit-box-shadow:none;
  407. box-shadow:none;
  408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  409. font-weight:400;
  410. font-style:normal;
  411. font-size:15px;
  412. color:#FFFFFF;
  413. }
  414. #u34536 {
  415. border-width:0px;
  416. position:absolute;
  417. left:577px;
  418. top:82px;
  419. width:80px;
  420. height:30px;
  421. display:flex;
  422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  423. font-weight:400;
  424. font-style:normal;
  425. font-size:15px;
  426. color:#FFFFFF;
  427. }
  428. #u34536 .text {
  429. position:absolute;
  430. align-self:center;
  431. padding:2px 2px 2px 2px;
  432. box-sizing:border-box;
  433. width:100%;
  434. }
  435. #u34536_text {
  436. border-width:0px;
  437. word-wrap:break-word;
  438. text-transform:none;
  439. }
  440. #u34537_div {
  441. border-width:0px;
  442. position:absolute;
  443. left:0px;
  444. top:0px;
  445. width:80px;
  446. height:30px;
  447. background:inherit;
  448. background-color:rgba(245, 154, 35, 0.0980392156862745);
  449. box-sizing:border-box;
  450. border-width:1px;
  451. border-style:solid;
  452. border-color:rgba(245, 154, 35, 1);
  453. border-radius:0px;
  454. border-top-right-radius:0px;
  455. border-bottom-right-radius:0px;
  456. -moz-box-shadow:none;
  457. -webkit-box-shadow:none;
  458. box-shadow:none;
  459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  460. font-weight:400;
  461. font-style:normal;
  462. font-size:15px;
  463. color:#FFFFFF;
  464. }
  465. #u34537 {
  466. border-width:0px;
  467. position:absolute;
  468. left:657px;
  469. top:82px;
  470. width:80px;
  471. height:30px;
  472. display:flex;
  473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  474. font-weight:400;
  475. font-style:normal;
  476. font-size:15px;
  477. color:#FFFFFF;
  478. }
  479. #u34537 .text {
  480. position:absolute;
  481. align-self:center;
  482. padding:2px 2px 2px 2px;
  483. box-sizing:border-box;
  484. width:100%;
  485. }
  486. #u34537_text {
  487. border-width:0px;
  488. word-wrap:break-word;
  489. text-transform:none;
  490. }
  491. #u34538_div {
  492. border-width:0px;
  493. position:absolute;
  494. left:0px;
  495. top:0px;
  496. width:80px;
  497. height:30px;
  498. background:inherit;
  499. background-color:rgba(245, 154, 35, 0.0980392156862745);
  500. box-sizing:border-box;
  501. border-width:1px;
  502. border-style:solid;
  503. border-color:rgba(245, 154, 35, 1);
  504. border-radius:0px;
  505. border-top-right-radius:0px;
  506. border-bottom-right-radius:0px;
  507. -moz-box-shadow:none;
  508. -webkit-box-shadow:none;
  509. box-shadow:none;
  510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  511. font-weight:400;
  512. font-style:normal;
  513. font-size:15px;
  514. color:#FFFFFF;
  515. }
  516. #u34538 {
  517. border-width:0px;
  518. position:absolute;
  519. left:737px;
  520. top:82px;
  521. width:80px;
  522. height:30px;
  523. display:flex;
  524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  525. font-weight:400;
  526. font-style:normal;
  527. font-size:15px;
  528. color:#FFFFFF;
  529. }
  530. #u34538 .text {
  531. position:absolute;
  532. align-self:center;
  533. padding:2px 2px 2px 2px;
  534. box-sizing:border-box;
  535. width:100%;
  536. }
  537. #u34538_text {
  538. border-width:0px;
  539. word-wrap:break-word;
  540. text-transform:none;
  541. }
  542. #u34539_div {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:80px;
  548. height:30px;
  549. background:inherit;
  550. background-color:rgba(245, 154, 35, 0.0980392156862745);
  551. box-sizing:border-box;
  552. border-width:1px;
  553. border-style:solid;
  554. border-color:rgba(245, 154, 35, 1);
  555. border-radius:0px;
  556. border-top-right-radius:0px;
  557. border-bottom-right-radius:0px;
  558. -moz-box-shadow:none;
  559. -webkit-box-shadow:none;
  560. box-shadow:none;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:15px;
  565. color:#FFFFFF;
  566. }
  567. #u34539 {
  568. border-width:0px;
  569. position:absolute;
  570. left:817px;
  571. top:82px;
  572. width:80px;
  573. height:30px;
  574. display:flex;
  575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  576. font-weight:400;
  577. font-style:normal;
  578. font-size:15px;
  579. color:#FFFFFF;
  580. }
  581. #u34539 .text {
  582. position:absolute;
  583. align-self:center;
  584. padding:2px 2px 2px 2px;
  585. box-sizing:border-box;
  586. width:100%;
  587. }
  588. #u34539_text {
  589. border-width:0px;
  590. word-wrap:break-word;
  591. text-transform:none;
  592. }
  593. #u34540_div {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:77px;
  599. height:34px;
  600. background:inherit;
  601. background-color:rgba(255, 255, 255, 0);
  602. border:none;
  603. border-radius:0px;
  604. -moz-box-shadow:none;
  605. -webkit-box-shadow:none;
  606. box-shadow:none;
  607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  608. font-weight:400;
  609. font-style:normal;
  610. font-size:12px;
  611. color:#FB2B2B;
  612. text-align:left;
  613. line-height:30px;
  614. }
  615. #u34540 {
  616. border-width:0px;
  617. position:absolute;
  618. left:864px;
  619. top:756px;
  620. width:77px;
  621. height:34px;
  622. display:flex;
  623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  624. font-weight:400;
  625. font-style:normal;
  626. font-size:12px;
  627. color:#FB2B2B;
  628. text-align:left;
  629. line-height:30px;
  630. }
  631. #u34540 .text {
  632. position:absolute;
  633. align-self:center;
  634. padding:2px 2px 2px 2px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u34540_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u34541_div {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:240px;
  649. height:40px;
  650. background:inherit;
  651. background-color:rgba(245, 154, 35, 0.2);
  652. box-sizing:border-box;
  653. border-width:2px;
  654. border-style:solid;
  655. border-color:rgba(245, 154, 35, 1);
  656. border-left:0px;
  657. border-top:0px;
  658. border-right:0px;
  659. border-radius:0px;
  660. border-bottom-right-radius:0px;
  661. border-bottom-left-radius:0px;
  662. -moz-box-shadow:none;
  663. -webkit-box-shadow:none;
  664. box-shadow:none;
  665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  666. font-weight:400;
  667. font-style:normal;
  668. font-size:18px;
  669. color:#FFFFFF;
  670. text-align:left;
  671. }
  672. #u34541 {
  673. border-width:0px;
  674. position:absolute;
  675. left:31px;
  676. top:137px;
  677. width:240px;
  678. height:40px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:18px;
  684. color:#FFFFFF;
  685. text-align:left;
  686. }
  687. #u34541 .text {
  688. position:absolute;
  689. align-self:center;
  690. padding:2px 2px 2px 10px;
  691. box-sizing:border-box;
  692. width:100%;
  693. }
  694. #u34541_text {
  695. border-width:0px;
  696. word-wrap:break-word;
  697. text-transform:none;
  698. }
  699. #u34542 {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:0px;
  705. height:0px;
  706. }
  707. #u34543_img {
  708. border-width:0px;
  709. position:absolute;
  710. left:-5px;
  711. top:-5px;
  712. width:30px;
  713. height:40px;
  714. }
  715. #u34543 {
  716. border-width:0px;
  717. position:absolute;
  718. left:522px;
  719. top:360px;
  720. width:20px;
  721. height:30px;
  722. display:flex;
  723. }
  724. #u34543 .text {
  725. position:absolute;
  726. align-self:center;
  727. padding:2px 2px 2px 2px;
  728. box-sizing:border-box;
  729. width:100%;
  730. }
  731. #u34543_text {
  732. border-width:0px;
  733. word-wrap:break-word;
  734. text-transform:none;
  735. visibility:hidden;
  736. }
  737. #u34544_img {
  738. border-width:0px;
  739. position:absolute;
  740. left:-5px;
  741. top:-5px;
  742. width:30px;
  743. height:40px;
  744. }
  745. #u34544 {
  746. border-width:0px;
  747. position:absolute;
  748. left:587px;
  749. top:443px;
  750. width:20px;
  751. height:30px;
  752. display:flex;
  753. }
  754. #u34544 .text {
  755. position:absolute;
  756. align-self:center;
  757. padding:2px 2px 2px 2px;
  758. box-sizing:border-box;
  759. width:100%;
  760. }
  761. #u34544_text {
  762. border-width:0px;
  763. word-wrap:break-word;
  764. text-transform:none;
  765. visibility:hidden;
  766. }
  767. #u34545_img {
  768. border-width:0px;
  769. position:absolute;
  770. left:-5px;
  771. top:-5px;
  772. width:30px;
  773. height:40px;
  774. }
  775. #u34545 {
  776. border-width:0px;
  777. position:absolute;
  778. left:512px;
  779. top:446px;
  780. width:20px;
  781. height:30px;
  782. display:flex;
  783. }
  784. #u34545 .text {
  785. position:absolute;
  786. align-self:center;
  787. padding:2px 2px 2px 2px;
  788. box-sizing:border-box;
  789. width:100%;
  790. }
  791. #u34545_text {
  792. border-width:0px;
  793. word-wrap:break-word;
  794. text-transform:none;
  795. visibility:hidden;
  796. }
  797. #u34546_img {
  798. border-width:0px;
  799. position:absolute;
  800. left:-5px;
  801. top:-5px;
  802. width:30px;
  803. height:40px;
  804. }
  805. #u34546 {
  806. border-width:0px;
  807. position:absolute;
  808. left:415px;
  809. top:454px;
  810. width:20px;
  811. height:30px;
  812. display:flex;
  813. }
  814. #u34546 .text {
  815. position:absolute;
  816. align-self:center;
  817. padding:2px 2px 2px 2px;
  818. box-sizing:border-box;
  819. width:100%;
  820. }
  821. #u34546_text {
  822. border-width:0px;
  823. word-wrap:break-word;
  824. text-transform:none;
  825. visibility:hidden;
  826. }
  827. #u34547_img {
  828. border-width:0px;
  829. position:absolute;
  830. left:-5px;
  831. top:-5px;
  832. width:30px;
  833. height:40px;
  834. }
  835. #u34547 {
  836. border-width:0px;
  837. position:absolute;
  838. left:358px;
  839. top:446px;
  840. width:20px;
  841. height:30px;
  842. display:flex;
  843. }
  844. #u34547 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u34547_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u34548_img {
  858. border-width:0px;
  859. position:absolute;
  860. left:-5px;
  861. top:-5px;
  862. width:30px;
  863. height:40px;
  864. }
  865. #u34548 {
  866. border-width:0px;
  867. position:absolute;
  868. left:358px;
  869. top:377px;
  870. width:20px;
  871. height:30px;
  872. display:flex;
  873. }
  874. #u34548 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u34548_text {
  882. border-width:0px;
  883. word-wrap:break-word;
  884. text-transform:none;
  885. visibility:hidden;
  886. }
  887. #u34549_img {
  888. border-width:0px;
  889. position:absolute;
  890. left:-5px;
  891. top:-5px;
  892. width:30px;
  893. height:40px;
  894. }
  895. #u34549 {
  896. border-width:0px;
  897. position:absolute;
  898. left:782px;
  899. top:341px;
  900. width:20px;
  901. height:30px;
  902. display:flex;
  903. }
  904. #u34549 .text {
  905. position:absolute;
  906. align-self:center;
  907. padding:2px 2px 2px 2px;
  908. box-sizing:border-box;
  909. width:100%;
  910. }
  911. #u34549_text {
  912. border-width:0px;
  913. word-wrap:break-word;
  914. text-transform:none;
  915. visibility:hidden;
  916. }
  917. #u34550_img {
  918. border-width:0px;
  919. position:absolute;
  920. left:-5px;
  921. top:-5px;
  922. width:30px;
  923. height:40px;
  924. }
  925. #u34550 {
  926. border-width:0px;
  927. position:absolute;
  928. left:701px;
  929. top:409px;
  930. width:20px;
  931. height:30px;
  932. display:flex;
  933. }
  934. #u34550 .text {
  935. position:absolute;
  936. align-self:center;
  937. padding:2px 2px 2px 2px;
  938. box-sizing:border-box;
  939. width:100%;
  940. }
  941. #u34550_text {
  942. border-width:0px;
  943. word-wrap:break-word;
  944. text-transform:none;
  945. visibility:hidden;
  946. }
  947. #u34551_img {
  948. border-width:0px;
  949. position:absolute;
  950. left:-5px;
  951. top:-5px;
  952. width:30px;
  953. height:40px;
  954. }
  955. #u34551 {
  956. border-width:0px;
  957. position:absolute;
  958. left:698px;
  959. top:496px;
  960. width:20px;
  961. height:30px;
  962. display:flex;
  963. }
  964. #u34551 .text {
  965. position:absolute;
  966. align-self:center;
  967. padding:2px 2px 2px 2px;
  968. box-sizing:border-box;
  969. width:100%;
  970. }
  971. #u34551_text {
  972. border-width:0px;
  973. word-wrap:break-word;
  974. text-transform:none;
  975. visibility:hidden;
  976. }
  977. #u34552_img {
  978. border-width:0px;
  979. position:absolute;
  980. left:-5px;
  981. top:-5px;
  982. width:30px;
  983. height:40px;
  984. }
  985. #u34552 {
  986. border-width:0px;
  987. position:absolute;
  988. left:820px;
  989. top:487px;
  990. width:20px;
  991. height:30px;
  992. display:flex;
  993. }
  994. #u34552 .text {
  995. position:absolute;
  996. align-self:center;
  997. padding:2px 2px 2px 2px;
  998. box-sizing:border-box;
  999. width:100%;
  1000. }
  1001. #u34552_text {
  1002. border-width:0px;
  1003. word-wrap:break-word;
  1004. text-transform:none;
  1005. visibility:hidden;
  1006. }
  1007. #u34553_img {
  1008. border-width:0px;
  1009. position:absolute;
  1010. left:-5px;
  1011. top:-5px;
  1012. width:30px;
  1013. height:40px;
  1014. }
  1015. #u34553 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:918px;
  1019. top:336px;
  1020. width:20px;
  1021. height:30px;
  1022. display:flex;
  1023. }
  1024. #u34553 .text {
  1025. position:absolute;
  1026. align-self:center;
  1027. padding:2px 2px 2px 2px;
  1028. box-sizing:border-box;
  1029. width:100%;
  1030. }
  1031. #u34553_text {
  1032. border-width:0px;
  1033. word-wrap:break-word;
  1034. text-transform:none;
  1035. visibility:hidden;
  1036. }
  1037. #u34554_img {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:-5px;
  1041. top:-5px;
  1042. width:30px;
  1043. height:40px;
  1044. }
  1045. #u34554 {
  1046. border-width:0px;
  1047. position:absolute;
  1048. left:870px;
  1049. top:316px;
  1050. width:20px;
  1051. height:30px;
  1052. display:flex;
  1053. }
  1054. #u34554 .text {
  1055. position:absolute;
  1056. align-self:center;
  1057. padding:2px 2px 2px 2px;
  1058. box-sizing:border-box;
  1059. width:100%;
  1060. }
  1061. #u34554_text {
  1062. border-width:0px;
  1063. word-wrap:break-word;
  1064. text-transform:none;
  1065. visibility:hidden;
  1066. }
  1067. #u34555_img {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:-5px;
  1071. top:-5px;
  1072. width:30px;
  1073. height:40px;
  1074. }
  1075. #u34555 {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:865px;
  1079. top:351px;
  1080. width:20px;
  1081. height:30px;
  1082. display:flex;
  1083. }
  1084. #u34555 .text {
  1085. position:absolute;
  1086. align-self:center;
  1087. padding:2px 2px 2px 2px;
  1088. box-sizing:border-box;
  1089. width:100%;
  1090. }
  1091. #u34555_text {
  1092. border-width:0px;
  1093. word-wrap:break-word;
  1094. text-transform:none;
  1095. visibility:hidden;
  1096. }
  1097. #u34556_img {
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:-5px;
  1101. top:-5px;
  1102. width:30px;
  1103. height:40px;
  1104. }
  1105. #u34556 {
  1106. border-width:0px;
  1107. position:absolute;
  1108. left:820px;
  1109. top:351px;
  1110. width:20px;
  1111. height:30px;
  1112. display:flex;
  1113. }
  1114. #u34556 .text {
  1115. position:absolute;
  1116. align-self:center;
  1117. padding:2px 2px 2px 2px;
  1118. box-sizing:border-box;
  1119. width:100%;
  1120. }
  1121. #u34556_text {
  1122. border-width:0px;
  1123. word-wrap:break-word;
  1124. text-transform:none;
  1125. visibility:hidden;
  1126. }
  1127. #u34557_img {
  1128. border-width:0px;
  1129. position:absolute;
  1130. left:-5px;
  1131. top:-5px;
  1132. width:30px;
  1133. height:40px;
  1134. }
  1135. #u34557 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:776px;
  1139. top:336px;
  1140. width:20px;
  1141. height:30px;
  1142. display:flex;
  1143. }
  1144. #u34557 .text {
  1145. position:absolute;
  1146. align-self:center;
  1147. padding:2px 2px 2px 2px;
  1148. box-sizing:border-box;
  1149. width:100%;
  1150. }
  1151. #u34557_text {
  1152. border-width:0px;
  1153. word-wrap:break-word;
  1154. text-transform:none;
  1155. visibility:hidden;
  1156. }
  1157. #u34558_img {
  1158. border-width:0px;
  1159. position:absolute;
  1160. left:-5px;
  1161. top:-5px;
  1162. width:30px;
  1163. height:40px;
  1164. }
  1165. #u34558 {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:951px;
  1169. top:409px;
  1170. width:20px;
  1171. height:30px;
  1172. display:flex;
  1173. }
  1174. #u34558 .text {
  1175. position:absolute;
  1176. align-self:center;
  1177. padding:2px 2px 2px 2px;
  1178. box-sizing:border-box;
  1179. width:100%;
  1180. }
  1181. #u34558_text {
  1182. border-width:0px;
  1183. word-wrap:break-word;
  1184. text-transform:none;
  1185. visibility:hidden;
  1186. }
  1187. #u34559_img {
  1188. border-width:0px;
  1189. position:absolute;
  1190. left:-5px;
  1191. top:-5px;
  1192. width:30px;
  1193. height:40px;
  1194. }
  1195. #u34559 {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:936px;
  1199. top:576px;
  1200. width:20px;
  1201. height:30px;
  1202. display:flex;
  1203. }
  1204. #u34559 .text {
  1205. position:absolute;
  1206. align-self:center;
  1207. padding:2px 2px 2px 2px;
  1208. box-sizing:border-box;
  1209. width:100%;
  1210. }
  1211. #u34559_text {
  1212. border-width:0px;
  1213. word-wrap:break-word;
  1214. text-transform:none;
  1215. visibility:hidden;
  1216. }
  1217. #u34560_img {
  1218. border-width:0px;
  1219. position:absolute;
  1220. left:-5px;
  1221. top:-5px;
  1222. width:30px;
  1223. height:40px;
  1224. }
  1225. #u34560 {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:708px;
  1229. top:481px;
  1230. width:20px;
  1231. height:30px;
  1232. display:flex;
  1233. }
  1234. #u34560 .text {
  1235. position:absolute;
  1236. align-self:center;
  1237. padding:2px 2px 2px 2px;
  1238. box-sizing:border-box;
  1239. width:100%;
  1240. }
  1241. #u34560_text {
  1242. border-width:0px;
  1243. word-wrap:break-word;
  1244. text-transform:none;
  1245. visibility:hidden;
  1246. }
  1247. #u34561_img {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:-5px;
  1251. top:-5px;
  1252. width:30px;
  1253. height:40px;
  1254. }
  1255. #u34561 {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:830px;
  1259. top:591px;
  1260. width:20px;
  1261. height:30px;
  1262. display:flex;
  1263. }
  1264. #u34561 .text {
  1265. position:absolute;
  1266. align-self:center;
  1267. padding:2px 2px 2px 2px;
  1268. box-sizing:border-box;
  1269. width:100%;
  1270. }
  1271. #u34561_text {
  1272. border-width:0px;
  1273. word-wrap:break-word;
  1274. text-transform:none;
  1275. visibility:hidden;
  1276. }
  1277. #u34562_img {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:-5px;
  1281. top:-5px;
  1282. width:30px;
  1283. height:40px;
  1284. }
  1285. #u34562 {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:903px;
  1289. top:686px;
  1290. width:20px;
  1291. height:30px;
  1292. display:flex;
  1293. }
  1294. #u34562 .text {
  1295. position:absolute;
  1296. align-self:center;
  1297. padding:2px 2px 2px 2px;
  1298. box-sizing:border-box;
  1299. width:100%;
  1300. }
  1301. #u34562_text {
  1302. border-width:0px;
  1303. word-wrap:break-word;
  1304. text-transform:none;
  1305. visibility:hidden;
  1306. }
  1307. #u34563_img {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:-5px;
  1311. top:-5px;
  1312. width:30px;
  1313. height:40px;
  1314. }
  1315. #u34563 {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:1095px;
  1319. top:394px;
  1320. width:20px;
  1321. height:30px;
  1322. display:flex;
  1323. }
  1324. #u34563 .text {
  1325. position:absolute;
  1326. align-self:center;
  1327. padding:2px 2px 2px 2px;
  1328. box-sizing:border-box;
  1329. width:100%;
  1330. }
  1331. #u34563_text {
  1332. border-width:0px;
  1333. word-wrap:break-word;
  1334. text-transform:none;
  1335. visibility:hidden;
  1336. }
  1337. #u34564_div {
  1338. border-width:0px;
  1339. position:absolute;
  1340. left:0px;
  1341. top:0px;
  1342. width:240px;
  1343. height:40px;
  1344. background:inherit;
  1345. background-color:rgba(245, 154, 35, 0.2);
  1346. box-sizing:border-box;
  1347. border-width:2px;
  1348. border-style:solid;
  1349. border-color:rgba(245, 154, 35, 1);
  1350. border-left:0px;
  1351. border-top:0px;
  1352. border-right:0px;
  1353. border-radius:0px;
  1354. border-bottom-right-radius:0px;
  1355. border-bottom-left-radius:0px;
  1356. -moz-box-shadow:none;
  1357. -webkit-box-shadow:none;
  1358. box-shadow:none;
  1359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1360. font-weight:400;
  1361. font-style:normal;
  1362. font-size:18px;
  1363. color:#FFFFFF;
  1364. text-align:left;
  1365. }
  1366. #u34564 {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:1236px;
  1370. top:149px;
  1371. width:240px;
  1372. height:40px;
  1373. display:flex;
  1374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1375. font-weight:400;
  1376. font-style:normal;
  1377. font-size:18px;
  1378. color:#FFFFFF;
  1379. text-align:left;
  1380. }
  1381. #u34564 .text {
  1382. position:absolute;
  1383. align-self:center;
  1384. padding:2px 2px 2px 10px;
  1385. box-sizing:border-box;
  1386. width:100%;
  1387. }
  1388. #u34564_text {
  1389. border-width:0px;
  1390. word-wrap:break-word;
  1391. text-transform:none;
  1392. }
  1393. #u34565_img {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:80px;
  1399. height:80px;
  1400. }
  1401. #u34565 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:1246px;
  1405. top:209px;
  1406. width:80px;
  1407. height:80px;
  1408. display:flex;
  1409. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u34565 .text {
  1414. position:absolute;
  1415. align-self:center;
  1416. padding:2px 2px 2px 2px;
  1417. box-sizing:border-box;
  1418. width:100%;
  1419. }
  1420. #u34565_text {
  1421. border-width:0px;
  1422. word-wrap:break-word;
  1423. text-transform:none;
  1424. }
  1425. #u34566_div {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:0px;
  1429. top:0px;
  1430. width:82px;
  1431. height:64px;
  1432. background:inherit;
  1433. background-color:rgba(255, 255, 255, 0);
  1434. border:none;
  1435. border-radius:0px;
  1436. -moz-box-shadow:none;
  1437. -webkit-box-shadow:none;
  1438. box-shadow:none;
  1439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1440. font-weight:400;
  1441. font-style:normal;
  1442. font-size:12px;
  1443. color:rgba(255, 255, 255, 0.698039215686274);
  1444. text-align:left;
  1445. line-height:30px;
  1446. }
  1447. #u34566 {
  1448. border-width:0px;
  1449. position:absolute;
  1450. left:1386px;
  1451. top:217px;
  1452. width:82px;
  1453. height:64px;
  1454. display:flex;
  1455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1456. font-weight:400;
  1457. font-style:normal;
  1458. font-size:12px;
  1459. color:rgba(255, 255, 255, 0.698039215686274);
  1460. text-align:left;
  1461. line-height:30px;
  1462. }
  1463. #u34566 .text {
  1464. position:absolute;
  1465. align-self:center;
  1466. padding:2px 2px 2px 2px;
  1467. box-sizing:border-box;
  1468. width:100%;
  1469. }
  1470. #u34566_text {
  1471. border-width:0px;
  1472. white-space:nowrap;
  1473. text-transform:none;
  1474. }
  1475. #u34567_div {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:90px;
  1481. height:21px;
  1482. background:inherit;
  1483. background-color:rgba(245, 154, 35, 1);
  1484. border:none;
  1485. border-radius:40px;
  1486. -moz-box-shadow:none;
  1487. -webkit-box-shadow:none;
  1488. box-shadow:none;
  1489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1490. font-weight:400;
  1491. font-style:normal;
  1492. font-size:12px;
  1493. color:rgba(255, 255, 255, 0.698039215686274);
  1494. }
  1495. #u34567 {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:1296px;
  1499. top:199px;
  1500. width:90px;
  1501. height:21px;
  1502. display:flex;
  1503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1504. font-weight:400;
  1505. font-style:normal;
  1506. font-size:12px;
  1507. color:rgba(255, 255, 255, 0.698039215686274);
  1508. }
  1509. #u34567 .text {
  1510. position:absolute;
  1511. align-self:center;
  1512. padding:2px 2px 2px 2px;
  1513. box-sizing:border-box;
  1514. width:100%;
  1515. }
  1516. #u34567_text {
  1517. border-width:0px;
  1518. word-wrap:break-word;
  1519. text-transform:none;
  1520. }
  1521. #u34568_div {
  1522. border-width:0px;
  1523. position:absolute;
  1524. left:0px;
  1525. top:0px;
  1526. width:53px;
  1527. height:30px;
  1528. background:inherit;
  1529. background-color:rgba(245, 154, 35, 0);
  1530. box-sizing:border-box;
  1531. border-width:2px;
  1532. border-style:solid;
  1533. border-color:rgba(245, 154, 35, 1);
  1534. border-left:0px;
  1535. border-top:0px;
  1536. border-right:0px;
  1537. border-radius:0px;
  1538. border-bottom-right-radius:0px;
  1539. border-bottom-left-radius:0px;
  1540. -moz-box-shadow:none;
  1541. -webkit-box-shadow:none;
  1542. box-shadow:none;
  1543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1544. font-weight:400;
  1545. font-style:normal;
  1546. font-size:12px;
  1547. color:#FFFFFF;
  1548. text-align:left;
  1549. }
  1550. #u34568 {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:1246px;
  1554. top:309px;
  1555. width:53px;
  1556. height:30px;
  1557. display:flex;
  1558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1559. font-weight:400;
  1560. font-style:normal;
  1561. font-size:12px;
  1562. color:#FFFFFF;
  1563. text-align:left;
  1564. }
  1565. #u34568 .text {
  1566. position:absolute;
  1567. align-self:center;
  1568. padding:2px 2px 2px 2px;
  1569. box-sizing:border-box;
  1570. width:100%;
  1571. }
  1572. #u34568_text {
  1573. border-width:0px;
  1574. white-space:nowrap;
  1575. text-transform:none;
  1576. }
  1577. #u34569_div {
  1578. border-width:0px;
  1579. position:absolute;
  1580. left:0px;
  1581. top:0px;
  1582. width:53px;
  1583. height:30px;
  1584. background:inherit;
  1585. background-color:rgba(245, 154, 35, 0);
  1586. border:none;
  1587. border-left:0px;
  1588. border-top:0px;
  1589. border-right:0px;
  1590. border-radius:0px;
  1591. border-bottom-right-radius:0px;
  1592. border-bottom-left-radius:0px;
  1593. -moz-box-shadow:none;
  1594. -webkit-box-shadow:none;
  1595. box-shadow:none;
  1596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1597. font-weight:400;
  1598. font-style:normal;
  1599. font-size:12px;
  1600. color:#FFFFFF;
  1601. text-align:left;
  1602. }
  1603. #u34569 {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:1319px;
  1607. top:309px;
  1608. width:53px;
  1609. height:30px;
  1610. display:flex;
  1611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:12px;
  1615. color:#FFFFFF;
  1616. text-align:left;
  1617. }
  1618. #u34569 .text {
  1619. position:absolute;
  1620. align-self:center;
  1621. padding:2px 2px 2px 2px;
  1622. box-sizing:border-box;
  1623. width:100%;
  1624. }
  1625. #u34569_text {
  1626. border-width:0px;
  1627. white-space:nowrap;
  1628. text-transform:none;
  1629. }
  1630. #u34570_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:4px;
  1636. height:100px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 0.803921568627451);
  1639. border:none;
  1640. border-radius:2px;
  1641. -moz-box-shadow:none;
  1642. -webkit-box-shadow:none;
  1643. box-shadow:none;
  1644. font-size:12px;
  1645. }
  1646. #u34570 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:1493px;
  1650. top:443px;
  1651. width:4px;
  1652. height:100px;
  1653. display:flex;
  1654. font-size:12px;
  1655. }
  1656. #u34570 .text {
  1657. position:absolute;
  1658. align-self:center;
  1659. padding:2px 2px 2px 2px;
  1660. box-sizing:border-box;
  1661. width:100%;
  1662. }
  1663. #u34570_text {
  1664. border-width:0px;
  1665. word-wrap:break-word;
  1666. text-transform:none;
  1667. visibility:hidden;
  1668. }
  1669. #u34571_img {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:96px;
  1675. height:96px;
  1676. }
  1677. #u34571 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:45px;
  1681. top:187px;
  1682. width:96px;
  1683. height:96px;
  1684. display:flex;
  1685. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1686. font-style:normal;
  1687. color:#FFFFFF;
  1688. }
  1689. #u34571 .text {
  1690. position:absolute;
  1691. align-self:center;
  1692. padding:2px 2px 2px 2px;
  1693. box-sizing:border-box;
  1694. width:100%;
  1695. }
  1696. #u34571_text {
  1697. border-width:0px;
  1698. word-wrap:break-word;
  1699. text-transform:none;
  1700. }
  1701. #u34572_div {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:0px;
  1705. top:0px;
  1706. width:94px;
  1707. height:94px;
  1708. background:inherit;
  1709. background-color:rgba(255, 255, 255, 0);
  1710. border:none;
  1711. border-radius:0px;
  1712. -moz-box-shadow:none;
  1713. -webkit-box-shadow:none;
  1714. box-shadow:none;
  1715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1716. font-weight:400;
  1717. font-style:normal;
  1718. font-size:12px;
  1719. color:rgba(255, 255, 255, 0.698039215686274);
  1720. text-align:left;
  1721. line-height:30px;
  1722. }
  1723. #u34572 {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:161px;
  1727. top:187px;
  1728. width:94px;
  1729. height:94px;
  1730. display:flex;
  1731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1732. font-weight:400;
  1733. font-style:normal;
  1734. font-size:12px;
  1735. color:rgba(255, 255, 255, 0.698039215686274);
  1736. text-align:left;
  1737. line-height:30px;
  1738. }
  1739. #u34572 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 2px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u34572_text {
  1747. border-width:0px;
  1748. white-space:nowrap;
  1749. text-transform:none;
  1750. }
  1751. #u34573 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u34574_img {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:240px;
  1765. height:30px;
  1766. }
  1767. #u34574 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:33px;
  1771. top:517px;
  1772. width:240px;
  1773. height:30px;
  1774. display:flex;
  1775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1776. font-weight:400;
  1777. font-style:normal;
  1778. font-size:12px;
  1779. color:#FFFFFF;
  1780. text-align:left;
  1781. }
  1782. #u34574 .text {
  1783. position:absolute;
  1784. align-self:center;
  1785. padding:2px 2px 2px 10px;
  1786. box-sizing:border-box;
  1787. width:100%;
  1788. }
  1789. #u34574_text {
  1790. border-width:0px;
  1791. word-wrap:break-word;
  1792. text-transform:none;
  1793. visibility:hidden;
  1794. }
  1795. #u34575_div {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:49px;
  1801. height:17px;
  1802. background:inherit;
  1803. background-color:rgba(255, 255, 255, 0);
  1804. border:none;
  1805. border-radius:0px;
  1806. -moz-box-shadow:none;
  1807. -webkit-box-shadow:none;
  1808. box-shadow:none;
  1809. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1810. font-weight:500;
  1811. font-style:normal;
  1812. font-size:12px;
  1813. color:#FFFFFF;
  1814. }
  1815. #u34575 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:47px;
  1819. top:524px;
  1820. width:49px;
  1821. height:17px;
  1822. display:flex;
  1823. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1824. font-weight:500;
  1825. font-style:normal;
  1826. font-size:12px;
  1827. color:#FFFFFF;
  1828. }
  1829. #u34575 .text {
  1830. position:absolute;
  1831. align-self:flex-start;
  1832. padding:0px 0px 0px 0px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u34575_text {
  1837. border-width:0px;
  1838. white-space:nowrap;
  1839. text-transform:none;
  1840. }
  1841. #u34576_img {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:15px;
  1847. height:15px;
  1848. }
  1849. #u34576 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:249px;
  1853. top:526px;
  1854. width:15px;
  1855. height:15px;
  1856. display:flex;
  1857. }
  1858. #u34576 .text {
  1859. position:absolute;
  1860. align-self:center;
  1861. padding:2px 2px 2px 2px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u34576_text {
  1866. border-width:0px;
  1867. word-wrap:break-word;
  1868. text-transform:none;
  1869. visibility:hidden;
  1870. }
  1871. #u34577_img {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:132px;
  1877. height:20px;
  1878. }
  1879. #u34577 {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:113px;
  1883. top:522px;
  1884. width:132px;
  1885. height:20px;
  1886. display:flex;
  1887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1888. font-weight:400;
  1889. font-style:normal;
  1890. font-size:10px;
  1891. color:rgba(250, 205, 145, 0.498039215686275);
  1892. text-align:left;
  1893. }
  1894. #u34577 .text {
  1895. position:absolute;
  1896. align-self:center;
  1897. padding:2px 2px 2px 10px;
  1898. box-sizing:border-box;
  1899. width:100%;
  1900. }
  1901. #u34577_text {
  1902. border-width:0px;
  1903. word-wrap:break-word;
  1904. text-transform:none;
  1905. }
  1906. #u34578 {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:0px;
  1912. height:0px;
  1913. }
  1914. #u34579_img {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:240px;
  1920. height:190px;
  1921. }
  1922. #u34579 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:33px;
  1926. top:547px;
  1927. width:240px;
  1928. height:190px;
  1929. display:flex;
  1930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1931. font-weight:400;
  1932. font-style:normal;
  1933. font-size:12px;
  1934. color:#FFFFFF;
  1935. text-align:left;
  1936. }
  1937. #u34579 .text {
  1938. position:absolute;
  1939. align-self:center;
  1940. padding:2px 2px 2px 10px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u34579_text {
  1945. border-width:0px;
  1946. word-wrap:break-word;
  1947. text-transform:none;
  1948. visibility:hidden;
  1949. }
  1950. #u34580_div {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:0px;
  1954. top:0px;
  1955. width:49px;
  1956. height:17px;
  1957. background:inherit;
  1958. background-color:rgba(255, 255, 255, 0);
  1959. border:none;
  1960. border-radius:0px;
  1961. -moz-box-shadow:none;
  1962. -webkit-box-shadow:none;
  1963. box-shadow:none;
  1964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1965. font-weight:400;
  1966. font-style:normal;
  1967. font-size:12px;
  1968. color:#FFFFFF;
  1969. }
  1970. #u34580 {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:57px;
  1974. top:554px;
  1975. width:49px;
  1976. height:17px;
  1977. display:flex;
  1978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1979. font-weight:400;
  1980. font-style:normal;
  1981. font-size:12px;
  1982. color:#FFFFFF;
  1983. }
  1984. #u34580 .text {
  1985. position:absolute;
  1986. align-self:flex-start;
  1987. padding:0px 0px 0px 0px;
  1988. box-sizing:border-box;
  1989. width:100%;
  1990. }
  1991. #u34580_text {
  1992. border-width:0px;
  1993. white-space:nowrap;
  1994. text-transform:none;
  1995. }
  1996. #u34581_div {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:54px;
  2002. height:17px;
  2003. background:inherit;
  2004. background-color:rgba(255, 255, 255, 0);
  2005. border:none;
  2006. border-radius:0px;
  2007. -moz-box-shadow:none;
  2008. -webkit-box-shadow:none;
  2009. box-shadow:none;
  2010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:12px;
  2014. color:#FFFFFF;
  2015. }
  2016. #u34581 {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:68px;
  2020. top:581px;
  2021. width:54px;
  2022. height:17px;
  2023. display:flex;
  2024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2025. font-weight:400;
  2026. font-style:normal;
  2027. font-size:12px;
  2028. color:#FFFFFF;
  2029. }
  2030. #u34581 .text {
  2031. position:absolute;
  2032. align-self:flex-start;
  2033. padding:0px 0px 0px 0px;
  2034. box-sizing:border-box;
  2035. width:100%;
  2036. }
  2037. #u34581_text {
  2038. border-width:0px;
  2039. white-space:nowrap;
  2040. text-transform:none;
  2041. }
  2042. #u34582 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:0px;
  2048. height:0px;
  2049. }
  2050. #u34583_div {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:49px;
  2056. height:17px;
  2057. background:inherit;
  2058. background-color:rgba(255, 255, 255, 0);
  2059. border:none;
  2060. border-radius:0px;
  2061. -moz-box-shadow:none;
  2062. -webkit-box-shadow:none;
  2063. box-shadow:none;
  2064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2065. font-weight:400;
  2066. font-style:normal;
  2067. font-size:12px;
  2068. color:#FFFFFF;
  2069. }
  2070. #u34583 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:57px;
  2074. top:683px;
  2075. width:49px;
  2076. height:17px;
  2077. display:flex;
  2078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. font-size:12px;
  2082. color:#FFFFFF;
  2083. }
  2084. #u34583 .text {
  2085. position:absolute;
  2086. align-self:flex-start;
  2087. padding:0px 0px 0px 0px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u34583_text {
  2092. border-width:0px;
  2093. white-space:nowrap;
  2094. text-transform:none;
  2095. }
  2096. #u34584_img {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:7px;
  2102. height:4px;
  2103. }
  2104. #u34584 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:47px;
  2108. top:690px;
  2109. width:7px;
  2110. height:4px;
  2111. display:flex;
  2112. -webkit-transform:rotate(270deg);
  2113. -moz-transform:rotate(270deg);
  2114. -ms-transform:rotate(270deg);
  2115. transform:rotate(270deg);
  2116. }
  2117. #u34584 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 2px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u34584_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. visibility:hidden;
  2129. }
  2130. #u34585 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:0px;
  2136. height:0px;
  2137. }
  2138. #u34586_div {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:49px;
  2144. height:17px;
  2145. background:inherit;
  2146. background-color:rgba(255, 255, 255, 0);
  2147. border:none;
  2148. border-radius:0px;
  2149. -moz-box-shadow:none;
  2150. -webkit-box-shadow:none;
  2151. box-shadow:none;
  2152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2153. font-weight:400;
  2154. font-style:normal;
  2155. font-size:12px;
  2156. color:#FFFFFF;
  2157. }
  2158. #u34586 {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:57px;
  2162. top:710px;
  2163. width:49px;
  2164. height:17px;
  2165. display:flex;
  2166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2167. font-weight:400;
  2168. font-style:normal;
  2169. font-size:12px;
  2170. color:#FFFFFF;
  2171. }
  2172. #u34586 .text {
  2173. position:absolute;
  2174. align-self:flex-start;
  2175. padding:0px 0px 0px 0px;
  2176. box-sizing:border-box;
  2177. width:100%;
  2178. }
  2179. #u34586_text {
  2180. border-width:0px;
  2181. white-space:nowrap;
  2182. text-transform:none;
  2183. }
  2184. #u34587_img {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:0px;
  2188. top:0px;
  2189. width:7px;
  2190. height:4px;
  2191. }
  2192. #u34587 {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:47px;
  2196. top:717px;
  2197. width:7px;
  2198. height:4px;
  2199. display:flex;
  2200. -webkit-transform:rotate(270deg);
  2201. -moz-transform:rotate(270deg);
  2202. -ms-transform:rotate(270deg);
  2203. transform:rotate(270deg);
  2204. }
  2205. #u34587 .text {
  2206. position:absolute;
  2207. align-self:center;
  2208. padding:2px 2px 2px 2px;
  2209. box-sizing:border-box;
  2210. width:100%;
  2211. }
  2212. #u34587_text {
  2213. border-width:0px;
  2214. word-wrap:break-word;
  2215. text-transform:none;
  2216. visibility:hidden;
  2217. }
  2218. #u34588_img {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:7px;
  2224. height:4px;
  2225. }
  2226. #u34588 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:47px;
  2230. top:561px;
  2231. width:7px;
  2232. height:4px;
  2233. display:flex;
  2234. }
  2235. #u34588 .text {
  2236. position:absolute;
  2237. align-self:center;
  2238. padding:2px 2px 2px 2px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u34588_text {
  2243. border-width:0px;
  2244. word-wrap:break-word;
  2245. text-transform:none;
  2246. visibility:hidden;
  2247. }
  2248. #u34589_img {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:7px;
  2254. height:4px;
  2255. }
  2256. #u34589 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:59px;
  2260. top:588px;
  2261. width:7px;
  2262. height:4px;
  2263. display:flex;
  2264. -webkit-transform:rotate(270deg);
  2265. -moz-transform:rotate(270deg);
  2266. -ms-transform:rotate(270deg);
  2267. transform:rotate(270deg);
  2268. }
  2269. #u34589 .text {
  2270. position:absolute;
  2271. align-self:center;
  2272. padding:2px 2px 2px 2px;
  2273. box-sizing:border-box;
  2274. width:100%;
  2275. }
  2276. #u34589_text {
  2277. border-width:0px;
  2278. word-wrap:break-word;
  2279. text-transform:none;
  2280. visibility:hidden;
  2281. }
  2282. #u34590_div {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:0px;
  2286. top:0px;
  2287. width:61px;
  2288. height:51px;
  2289. background:inherit;
  2290. background-color:rgba(255, 255, 255, 0);
  2291. border:none;
  2292. border-radius:0px;
  2293. -moz-box-shadow:none;
  2294. -webkit-box-shadow:none;
  2295. box-shadow:none;
  2296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2297. font-weight:400;
  2298. font-style:normal;
  2299. font-size:12px;
  2300. }
  2301. #u34590 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:82px;
  2305. top:598px;
  2306. width:61px;
  2307. height:51px;
  2308. display:flex;
  2309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2310. font-weight:400;
  2311. font-style:normal;
  2312. font-size:12px;
  2313. }
  2314. #u34590 .text {
  2315. position:absolute;
  2316. align-self:flex-start;
  2317. padding:0px 0px 0px 0px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u34590_text {
  2322. border-width:0px;
  2323. white-space:nowrap;
  2324. text-transform:none;
  2325. }
  2326. #u34591 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:0px;
  2332. height:0px;
  2333. }
  2334. #u34592_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:7px;
  2340. height:4px;
  2341. }
  2342. #u34592 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:59px;
  2346. top:663px;
  2347. width:7px;
  2348. height:4px;
  2349. display:flex;
  2350. -webkit-transform:rotate(270deg);
  2351. -moz-transform:rotate(270deg);
  2352. -ms-transform:rotate(270deg);
  2353. transform:rotate(270deg);
  2354. }
  2355. #u34592 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 2px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u34592_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. visibility:hidden;
  2367. }
  2368. #u34593_div {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:54px;
  2374. height:17px;
  2375. background:inherit;
  2376. background-color:rgba(255, 255, 255, 0);
  2377. border:none;
  2378. border-radius:0px;
  2379. -moz-box-shadow:none;
  2380. -webkit-box-shadow:none;
  2381. box-shadow:none;
  2382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2383. font-weight:400;
  2384. font-style:normal;
  2385. font-size:12px;
  2386. color:#FFFFFF;
  2387. }
  2388. #u34593 {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:68px;
  2392. top:656px;
  2393. width:54px;
  2394. height:17px;
  2395. display:flex;
  2396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:12px;
  2400. color:#FFFFFF;
  2401. }
  2402. #u34593 .text {
  2403. position:absolute;
  2404. align-self:flex-start;
  2405. padding:0px 0px 0px 0px;
  2406. box-sizing:border-box;
  2407. width:100%;
  2408. }
  2409. #u34593_text {
  2410. border-width:0px;
  2411. white-space:nowrap;
  2412. text-transform:none;
  2413. }
  2414. #u34594 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:0px;
  2420. height:0px;
  2421. }
  2422. #u34595_div {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:0px;
  2426. top:0px;
  2427. width:253px;
  2428. height:22px;
  2429. background:inherit;
  2430. background-color:rgba(255, 255, 255, 0.152941176470588);
  2431. border:none;
  2432. border-radius:0px;
  2433. -moz-box-shadow:none;
  2434. -webkit-box-shadow:none;
  2435. box-shadow:none;
  2436. font-size:12px;
  2437. }
  2438. #u34595 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:1244px;
  2442. top:349px;
  2443. width:253px;
  2444. height:22px;
  2445. display:flex;
  2446. font-size:12px;
  2447. }
  2448. #u34595 .text {
  2449. position:absolute;
  2450. align-self:center;
  2451. padding:2px 2px 2px 2px;
  2452. box-sizing:border-box;
  2453. width:100%;
  2454. }
  2455. #u34595_text {
  2456. border-width:0px;
  2457. word-wrap:break-word;
  2458. text-transform:none;
  2459. visibility:hidden;
  2460. }
  2461. #u34596_div {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:53px;
  2467. height:21px;
  2468. background:inherit;
  2469. background-color:rgba(255, 255, 255, 0);
  2470. border:none;
  2471. border-radius:0px;
  2472. -moz-box-shadow:none;
  2473. -webkit-box-shadow:none;
  2474. box-shadow:none;
  2475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2476. font-weight:400;
  2477. font-style:normal;
  2478. font-size:12px;
  2479. color:rgba(242, 242, 242, 0.698039215686274);
  2480. text-align:left;
  2481. }
  2482. #u34596 {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:1254px;
  2486. top:349px;
  2487. width:53px;
  2488. height:21px;
  2489. display:flex;
  2490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2491. font-weight:400;
  2492. font-style:normal;
  2493. font-size:12px;
  2494. color:rgba(242, 242, 242, 0.698039215686274);
  2495. text-align:left;
  2496. }
  2497. #u34596 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 2px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u34596_text {
  2505. border-width:0px;
  2506. white-space:nowrap;
  2507. text-transform:none;
  2508. }
  2509. #u34597_div {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:53px;
  2515. height:21px;
  2516. background:inherit;
  2517. background-color:rgba(255, 255, 255, 0);
  2518. border:none;
  2519. border-radius:0px;
  2520. -moz-box-shadow:none;
  2521. -webkit-box-shadow:none;
  2522. box-shadow:none;
  2523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2524. font-weight:400;
  2525. font-style:normal;
  2526. font-size:12px;
  2527. color:rgba(242, 242, 242, 0.698039215686274);
  2528. text-align:left;
  2529. }
  2530. #u34597 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:1431px;
  2534. top:349px;
  2535. width:53px;
  2536. height:21px;
  2537. display:flex;
  2538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2539. font-weight:400;
  2540. font-style:normal;
  2541. font-size:12px;
  2542. color:rgba(242, 242, 242, 0.698039215686274);
  2543. text-align:left;
  2544. }
  2545. #u34597 .text {
  2546. position:absolute;
  2547. align-self:center;
  2548. padding:2px 2px 2px 2px;
  2549. box-sizing:border-box;
  2550. width:100%;
  2551. }
  2552. #u34597_text {
  2553. border-width:0px;
  2554. white-space:nowrap;
  2555. text-transform:none;
  2556. }
  2557. #u34598_div {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:53px;
  2563. height:21px;
  2564. background:inherit;
  2565. background-color:rgba(255, 255, 255, 0);
  2566. border:none;
  2567. border-radius:0px;
  2568. -moz-box-shadow:none;
  2569. -webkit-box-shadow:none;
  2570. box-shadow:none;
  2571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:12px;
  2575. color:rgba(242, 242, 242, 0.698039215686274);
  2576. text-align:left;
  2577. }
  2578. #u34598 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:1346px;
  2582. top:349px;
  2583. width:53px;
  2584. height:21px;
  2585. display:flex;
  2586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2587. font-weight:400;
  2588. font-style:normal;
  2589. font-size:12px;
  2590. color:rgba(242, 242, 242, 0.698039215686274);
  2591. text-align:left;
  2592. }
  2593. #u34598 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:2px 2px 2px 2px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u34598_text {
  2601. border-width:0px;
  2602. white-space:nowrap;
  2603. text-transform:none;
  2604. }
  2605. #u34599 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:0px;
  2611. height:0px;
  2612. }
  2613. #u34600_div {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:240px;
  2619. height:23px;
  2620. background:inherit;
  2621. background-color:rgba(255, 255, 255, 0);
  2622. border:none;
  2623. border-radius:0px;
  2624. -moz-box-shadow:none;
  2625. -webkit-box-shadow:none;
  2626. box-shadow:none;
  2627. font-size:12px;
  2628. }
  2629. #u34600 {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:1254px;
  2633. top:375px;
  2634. width:240px;
  2635. height:23px;
  2636. display:flex;
  2637. font-size:12px;
  2638. }
  2639. #u34600 .text {
  2640. position:absolute;
  2641. align-self:center;
  2642. padding:2px 2px 2px 2px;
  2643. box-sizing:border-box;
  2644. width:100%;
  2645. }
  2646. #u34600_text {
  2647. border-width:0px;
  2648. word-wrap:break-word;
  2649. text-transform:none;
  2650. visibility:hidden;
  2651. }
  2652. #u34601_div {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:89px;
  2658. height:21px;
  2659. background:inherit;
  2660. background-color:rgba(255, 255, 255, 0);
  2661. border:none;
  2662. border-radius:0px;
  2663. -moz-box-shadow:none;
  2664. -webkit-box-shadow:none;
  2665. box-shadow:none;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. font-size:12px;
  2670. color:rgba(255, 255, 255, 0.698039215686274);
  2671. text-align:left;
  2672. }
  2673. #u34601 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:1254px;
  2677. top:376px;
  2678. width:89px;
  2679. height:21px;
  2680. display:flex;
  2681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2682. font-weight:400;
  2683. font-style:normal;
  2684. font-size:12px;
  2685. color:rgba(255, 255, 255, 0.698039215686274);
  2686. text-align:left;
  2687. }
  2688. #u34601 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 2px 2px 2px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u34601_text {
  2696. border-width:0px;
  2697. white-space:nowrap;
  2698. text-transform:none;
  2699. }
  2700. #u34602_div {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:0px;
  2704. top:0px;
  2705. width:53px;
  2706. height:21px;
  2707. background:inherit;
  2708. background-color:rgba(255, 255, 255, 0);
  2709. border:none;
  2710. border-radius:0px;
  2711. -moz-box-shadow:none;
  2712. -webkit-box-shadow:none;
  2713. box-shadow:none;
  2714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2715. font-weight:400;
  2716. font-style:normal;
  2717. font-size:12px;
  2718. color:#FFFFFF;
  2719. text-align:left;
  2720. }
  2721. #u34602 {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:1356px;
  2725. top:376px;
  2726. width:53px;
  2727. height:21px;
  2728. display:flex;
  2729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2730. font-weight:400;
  2731. font-style:normal;
  2732. font-size:12px;
  2733. color:#FFFFFF;
  2734. text-align:left;
  2735. }
  2736. #u34602 .text {
  2737. position:absolute;
  2738. align-self:center;
  2739. padding:2px 2px 2px 2px;
  2740. box-sizing:border-box;
  2741. width:100%;
  2742. }
  2743. #u34602_text {
  2744. border-width:0px;
  2745. white-space:nowrap;
  2746. text-transform:none;
  2747. }
  2748. #u34603_div {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:53px;
  2754. height:21px;
  2755. background:inherit;
  2756. background-color:rgba(255, 255, 255, 0);
  2757. border:none;
  2758. border-radius:0px;
  2759. -moz-box-shadow:none;
  2760. -webkit-box-shadow:none;
  2761. box-shadow:none;
  2762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2763. font-weight:400;
  2764. font-style:normal;
  2765. font-size:12px;
  2766. color:#FFFFFF;
  2767. text-align:left;
  2768. }
  2769. #u34603 {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:1441px;
  2773. top:376px;
  2774. width:53px;
  2775. height:21px;
  2776. display:flex;
  2777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2778. font-weight:400;
  2779. font-style:normal;
  2780. font-size:12px;
  2781. color:#FFFFFF;
  2782. text-align:left;
  2783. }
  2784. #u34603 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 2px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u34603_text {
  2792. border-width:0px;
  2793. white-space:nowrap;
  2794. text-transform:none;
  2795. }
  2796. #u34604_div {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:53px;
  2802. height:30px;
  2803. background:inherit;
  2804. background-color:rgba(245, 154, 35, 0);
  2805. border:none;
  2806. border-left:0px;
  2807. border-top:0px;
  2808. border-right:0px;
  2809. border-radius:0px;
  2810. border-bottom-right-radius:0px;
  2811. border-bottom-left-radius:0px;
  2812. -moz-box-shadow:none;
  2813. -webkit-box-shadow:none;
  2814. box-shadow:none;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:12px;
  2819. color:#FFFFFF;
  2820. text-align:left;
  2821. }
  2822. #u34604 {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:1392px;
  2826. top:309px;
  2827. width:53px;
  2828. height:30px;
  2829. display:flex;
  2830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2831. font-weight:400;
  2832. font-style:normal;
  2833. font-size:12px;
  2834. color:#FFFFFF;
  2835. text-align:left;
  2836. }
  2837. #u34604 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:2px 2px 2px 2px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u34604_text {
  2845. border-width:0px;
  2846. white-space:nowrap;
  2847. text-transform:none;
  2848. }
  2849. #u34605 {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:0px;
  2855. height:0px;
  2856. }
  2857. #u34606_div {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:240px;
  2863. height:23px;
  2864. background:inherit;
  2865. background-color:rgba(255, 255, 255, 0);
  2866. border:none;
  2867. border-radius:0px;
  2868. -moz-box-shadow:none;
  2869. -webkit-box-shadow:none;
  2870. box-shadow:none;
  2871. font-size:12px;
  2872. }
  2873. #u34606 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:1254px;
  2877. top:399px;
  2878. width:240px;
  2879. height:23px;
  2880. display:flex;
  2881. font-size:12px;
  2882. }
  2883. #u34606 .text {
  2884. position:absolute;
  2885. align-self:center;
  2886. padding:2px 2px 2px 2px;
  2887. box-sizing:border-box;
  2888. width:100%;
  2889. }
  2890. #u34606_text {
  2891. border-width:0px;
  2892. word-wrap:break-word;
  2893. text-transform:none;
  2894. visibility:hidden;
  2895. }
  2896. #u34607_div {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:0px;
  2901. width:89px;
  2902. height:21px;
  2903. background:inherit;
  2904. background-color:rgba(255, 255, 255, 0);
  2905. border:none;
  2906. border-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:rgba(255, 255, 255, 0.698039215686274);
  2915. text-align:left;
  2916. }
  2917. #u34607 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:1254px;
  2921. top:400px;
  2922. width:89px;
  2923. height:21px;
  2924. display:flex;
  2925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2926. font-weight:400;
  2927. font-style:normal;
  2928. font-size:12px;
  2929. color:rgba(255, 255, 255, 0.698039215686274);
  2930. text-align:left;
  2931. }
  2932. #u34607 .text {
  2933. position:absolute;
  2934. align-self:center;
  2935. padding:2px 2px 2px 2px;
  2936. box-sizing:border-box;
  2937. width:100%;
  2938. }
  2939. #u34607_text {
  2940. border-width:0px;
  2941. white-space:nowrap;
  2942. text-transform:none;
  2943. }
  2944. #u34608_div {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:0px;
  2948. top:0px;
  2949. width:53px;
  2950. height:21px;
  2951. background:inherit;
  2952. background-color:rgba(255, 255, 255, 0);
  2953. border:none;
  2954. border-radius:0px;
  2955. -moz-box-shadow:none;
  2956. -webkit-box-shadow:none;
  2957. box-shadow:none;
  2958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2959. font-weight:400;
  2960. font-style:normal;
  2961. font-size:12px;
  2962. color:#FFFFFF;
  2963. text-align:left;
  2964. }
  2965. #u34608 {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:1356px;
  2969. top:400px;
  2970. width:53px;
  2971. height:21px;
  2972. display:flex;
  2973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2974. font-weight:400;
  2975. font-style:normal;
  2976. font-size:12px;
  2977. color:#FFFFFF;
  2978. text-align:left;
  2979. }
  2980. #u34608 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:2px 2px 2px 2px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u34608_text {
  2988. border-width:0px;
  2989. white-space:nowrap;
  2990. text-transform:none;
  2991. }
  2992. #u34609_div {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:53px;
  2998. height:21px;
  2999. background:inherit;
  3000. background-color:rgba(255, 255, 255, 0);
  3001. border:none;
  3002. border-radius:0px;
  3003. -moz-box-shadow:none;
  3004. -webkit-box-shadow:none;
  3005. box-shadow:none;
  3006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3007. font-weight:400;
  3008. font-style:normal;
  3009. font-size:12px;
  3010. color:#FFFFFF;
  3011. text-align:left;
  3012. }
  3013. #u34609 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:1441px;
  3017. top:400px;
  3018. width:53px;
  3019. height:21px;
  3020. display:flex;
  3021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3022. font-weight:400;
  3023. font-style:normal;
  3024. font-size:12px;
  3025. color:#FFFFFF;
  3026. text-align:left;
  3027. }
  3028. #u34609 .text {
  3029. position:absolute;
  3030. align-self:center;
  3031. padding:2px 2px 2px 2px;
  3032. box-sizing:border-box;
  3033. width:100%;
  3034. }
  3035. #u34609_text {
  3036. border-width:0px;
  3037. white-space:nowrap;
  3038. text-transform:none;
  3039. }
  3040. #u34610 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:0px;
  3044. top:0px;
  3045. width:0px;
  3046. height:0px;
  3047. }
  3048. #u34611_div {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:240px;
  3054. height:23px;
  3055. background:inherit;
  3056. background-color:rgba(255, 255, 255, 0);
  3057. border:none;
  3058. border-radius:0px;
  3059. -moz-box-shadow:none;
  3060. -webkit-box-shadow:none;
  3061. box-shadow:none;
  3062. font-size:12px;
  3063. }
  3064. #u34611 {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:1254px;
  3068. top:423px;
  3069. width:240px;
  3070. height:23px;
  3071. display:flex;
  3072. font-size:12px;
  3073. }
  3074. #u34611 .text {
  3075. position:absolute;
  3076. align-self:center;
  3077. padding:2px 2px 2px 2px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u34611_text {
  3082. border-width:0px;
  3083. word-wrap:break-word;
  3084. text-transform:none;
  3085. visibility:hidden;
  3086. }
  3087. #u34612_div {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:89px;
  3093. height:21px;
  3094. background:inherit;
  3095. background-color:rgba(255, 255, 255, 0);
  3096. border:none;
  3097. border-radius:0px;
  3098. -moz-box-shadow:none;
  3099. -webkit-box-shadow:none;
  3100. box-shadow:none;
  3101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3102. font-weight:400;
  3103. font-style:normal;
  3104. font-size:12px;
  3105. color:rgba(255, 255, 255, 0.698039215686274);
  3106. text-align:left;
  3107. }
  3108. #u34612 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:1254px;
  3112. top:424px;
  3113. width:89px;
  3114. height:21px;
  3115. display:flex;
  3116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3117. font-weight:400;
  3118. font-style:normal;
  3119. font-size:12px;
  3120. color:rgba(255, 255, 255, 0.698039215686274);
  3121. text-align:left;
  3122. }
  3123. #u34612 .text {
  3124. position:absolute;
  3125. align-self:center;
  3126. padding:2px 2px 2px 2px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u34612_text {
  3131. border-width:0px;
  3132. white-space:nowrap;
  3133. text-transform:none;
  3134. }
  3135. #u34613_div {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:53px;
  3141. height:21px;
  3142. background:inherit;
  3143. background-color:rgba(255, 255, 255, 0);
  3144. border:none;
  3145. border-radius:0px;
  3146. -moz-box-shadow:none;
  3147. -webkit-box-shadow:none;
  3148. box-shadow:none;
  3149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:12px;
  3153. color:#FFFFFF;
  3154. text-align:left;
  3155. }
  3156. #u34613 {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:1356px;
  3160. top:424px;
  3161. width:53px;
  3162. height:21px;
  3163. display:flex;
  3164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3165. font-weight:400;
  3166. font-style:normal;
  3167. font-size:12px;
  3168. color:#FFFFFF;
  3169. text-align:left;
  3170. }
  3171. #u34613 .text {
  3172. position:absolute;
  3173. align-self:center;
  3174. padding:2px 2px 2px 2px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u34613_text {
  3179. border-width:0px;
  3180. white-space:nowrap;
  3181. text-transform:none;
  3182. }
  3183. #u34614_div {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:0px;
  3187. top:0px;
  3188. width:53px;
  3189. height:21px;
  3190. background:inherit;
  3191. background-color:rgba(255, 255, 255, 0);
  3192. border:none;
  3193. border-radius:0px;
  3194. -moz-box-shadow:none;
  3195. -webkit-box-shadow:none;
  3196. box-shadow:none;
  3197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3198. font-weight:400;
  3199. font-style:normal;
  3200. font-size:12px;
  3201. color:#FFFFFF;
  3202. text-align:left;
  3203. }
  3204. #u34614 {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:1441px;
  3208. top:424px;
  3209. width:53px;
  3210. height:21px;
  3211. display:flex;
  3212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3213. font-weight:400;
  3214. font-style:normal;
  3215. font-size:12px;
  3216. color:#FFFFFF;
  3217. text-align:left;
  3218. }
  3219. #u34614 .text {
  3220. position:absolute;
  3221. align-self:center;
  3222. padding:2px 2px 2px 2px;
  3223. box-sizing:border-box;
  3224. width:100%;
  3225. }
  3226. #u34614_text {
  3227. border-width:0px;
  3228. white-space:nowrap;
  3229. text-transform:none;
  3230. }
  3231. #u34615 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:0px;
  3237. height:0px;
  3238. }
  3239. #u34616_div {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:240px;
  3245. height:23px;
  3246. background:inherit;
  3247. background-color:rgba(255, 255, 255, 0);
  3248. border:none;
  3249. border-radius:0px;
  3250. -moz-box-shadow:none;
  3251. -webkit-box-shadow:none;
  3252. box-shadow:none;
  3253. font-size:12px;
  3254. }
  3255. #u34616 {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:1254px;
  3259. top:447px;
  3260. width:240px;
  3261. height:23px;
  3262. display:flex;
  3263. font-size:12px;
  3264. }
  3265. #u34616 .text {
  3266. position:absolute;
  3267. align-self:center;
  3268. padding:2px 2px 2px 2px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u34616_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. visibility:hidden;
  3277. }
  3278. #u34617_div {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:89px;
  3284. height:21px;
  3285. background:inherit;
  3286. background-color:rgba(255, 255, 255, 0);
  3287. border:none;
  3288. border-radius:0px;
  3289. -moz-box-shadow:none;
  3290. -webkit-box-shadow:none;
  3291. box-shadow:none;
  3292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3293. font-weight:400;
  3294. font-style:normal;
  3295. font-size:12px;
  3296. color:rgba(255, 255, 255, 0.698039215686274);
  3297. text-align:left;
  3298. }
  3299. #u34617 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:1254px;
  3303. top:448px;
  3304. width:89px;
  3305. height:21px;
  3306. display:flex;
  3307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:12px;
  3311. color:rgba(255, 255, 255, 0.698039215686274);
  3312. text-align:left;
  3313. }
  3314. #u34617 .text {
  3315. position:absolute;
  3316. align-self:center;
  3317. padding:2px 2px 2px 2px;
  3318. box-sizing:border-box;
  3319. width:100%;
  3320. }
  3321. #u34617_text {
  3322. border-width:0px;
  3323. white-space:nowrap;
  3324. text-transform:none;
  3325. }
  3326. #u34618_div {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:53px;
  3332. height:21px;
  3333. background:inherit;
  3334. background-color:rgba(255, 255, 255, 0);
  3335. border:none;
  3336. border-radius:0px;
  3337. -moz-box-shadow:none;
  3338. -webkit-box-shadow:none;
  3339. box-shadow:none;
  3340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3341. font-weight:400;
  3342. font-style:normal;
  3343. font-size:12px;
  3344. color:#FFFFFF;
  3345. text-align:left;
  3346. }
  3347. #u34618 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:1356px;
  3351. top:448px;
  3352. width:53px;
  3353. height:21px;
  3354. display:flex;
  3355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:12px;
  3359. color:#FFFFFF;
  3360. text-align:left;
  3361. }
  3362. #u34618 .text {
  3363. position:absolute;
  3364. align-self:center;
  3365. padding:2px 2px 2px 2px;
  3366. box-sizing:border-box;
  3367. width:100%;
  3368. }
  3369. #u34618_text {
  3370. border-width:0px;
  3371. white-space:nowrap;
  3372. text-transform:none;
  3373. }
  3374. #u34619_div {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:53px;
  3380. height:21px;
  3381. background:inherit;
  3382. background-color:rgba(255, 255, 255, 0);
  3383. border:none;
  3384. border-radius:0px;
  3385. -moz-box-shadow:none;
  3386. -webkit-box-shadow:none;
  3387. box-shadow:none;
  3388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3389. font-weight:400;
  3390. font-style:normal;
  3391. font-size:12px;
  3392. color:#FFFFFF;
  3393. text-align:left;
  3394. }
  3395. #u34619 {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:1441px;
  3399. top:448px;
  3400. width:53px;
  3401. height:21px;
  3402. display:flex;
  3403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3404. font-weight:400;
  3405. font-style:normal;
  3406. font-size:12px;
  3407. color:#FFFFFF;
  3408. text-align:left;
  3409. }
  3410. #u34619 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:2px 2px 2px 2px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u34619_text {
  3418. border-width:0px;
  3419. white-space:nowrap;
  3420. text-transform:none;
  3421. }
  3422. #u34620 {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:0px;
  3428. height:0px;
  3429. }
  3430. #u34621_div {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:0px;
  3434. top:0px;
  3435. width:240px;
  3436. height:23px;
  3437. background:inherit;
  3438. background-color:rgba(255, 255, 255, 0);
  3439. border:none;
  3440. border-radius:0px;
  3441. -moz-box-shadow:none;
  3442. -webkit-box-shadow:none;
  3443. box-shadow:none;
  3444. font-size:12px;
  3445. }
  3446. #u34621 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:1254px;
  3450. top:471px;
  3451. width:240px;
  3452. height:23px;
  3453. display:flex;
  3454. font-size:12px;
  3455. }
  3456. #u34621 .text {
  3457. position:absolute;
  3458. align-self:center;
  3459. padding:2px 2px 2px 2px;
  3460. box-sizing:border-box;
  3461. width:100%;
  3462. }
  3463. #u34621_text {
  3464. border-width:0px;
  3465. word-wrap:break-word;
  3466. text-transform:none;
  3467. visibility:hidden;
  3468. }
  3469. #u34622_div {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:89px;
  3475. height:21px;
  3476. background:inherit;
  3477. background-color:rgba(255, 255, 255, 0);
  3478. border:none;
  3479. border-radius:0px;
  3480. -moz-box-shadow:none;
  3481. -webkit-box-shadow:none;
  3482. box-shadow:none;
  3483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3484. font-weight:400;
  3485. font-style:normal;
  3486. font-size:12px;
  3487. color:rgba(255, 255, 255, 0.698039215686274);
  3488. text-align:left;
  3489. }
  3490. #u34622 {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:1254px;
  3494. top:472px;
  3495. width:89px;
  3496. height:21px;
  3497. display:flex;
  3498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3499. font-weight:400;
  3500. font-style:normal;
  3501. font-size:12px;
  3502. color:rgba(255, 255, 255, 0.698039215686274);
  3503. text-align:left;
  3504. }
  3505. #u34622 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 2px 2px 2px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u34622_text {
  3513. border-width:0px;
  3514. white-space:nowrap;
  3515. text-transform:none;
  3516. }
  3517. #u34623_div {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:0px;
  3521. top:0px;
  3522. width:53px;
  3523. height:21px;
  3524. background:inherit;
  3525. background-color:rgba(255, 255, 255, 0);
  3526. border:none;
  3527. border-radius:0px;
  3528. -moz-box-shadow:none;
  3529. -webkit-box-shadow:none;
  3530. box-shadow:none;
  3531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. font-size:12px;
  3535. color:#FFFFFF;
  3536. text-align:left;
  3537. }
  3538. #u34623 {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:1356px;
  3542. top:472px;
  3543. width:53px;
  3544. height:21px;
  3545. display:flex;
  3546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3547. font-weight:400;
  3548. font-style:normal;
  3549. font-size:12px;
  3550. color:#FFFFFF;
  3551. text-align:left;
  3552. }
  3553. #u34623 .text {
  3554. position:absolute;
  3555. align-self:center;
  3556. padding:2px 2px 2px 2px;
  3557. box-sizing:border-box;
  3558. width:100%;
  3559. }
  3560. #u34623_text {
  3561. border-width:0px;
  3562. white-space:nowrap;
  3563. text-transform:none;
  3564. }
  3565. #u34624_div {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:0px;
  3569. top:0px;
  3570. width:53px;
  3571. height:21px;
  3572. background:inherit;
  3573. background-color:rgba(255, 255, 255, 0);
  3574. border:none;
  3575. border-radius:0px;
  3576. -moz-box-shadow:none;
  3577. -webkit-box-shadow:none;
  3578. box-shadow:none;
  3579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3580. font-weight:400;
  3581. font-style:normal;
  3582. font-size:12px;
  3583. color:#FFFFFF;
  3584. text-align:left;
  3585. }
  3586. #u34624 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:1441px;
  3590. top:472px;
  3591. width:53px;
  3592. height:21px;
  3593. display:flex;
  3594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3595. font-weight:400;
  3596. font-style:normal;
  3597. font-size:12px;
  3598. color:#FFFFFF;
  3599. text-align:left;
  3600. }
  3601. #u34624 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:2px 2px 2px 2px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u34624_text {
  3609. border-width:0px;
  3610. white-space:nowrap;
  3611. text-transform:none;
  3612. }
  3613. #u34625 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:0px;
  3619. height:0px;
  3620. }
  3621. #u34626_div {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:240px;
  3627. height:23px;
  3628. background:inherit;
  3629. background-color:rgba(255, 255, 255, 0);
  3630. border:none;
  3631. border-radius:0px;
  3632. -moz-box-shadow:none;
  3633. -webkit-box-shadow:none;
  3634. box-shadow:none;
  3635. font-size:12px;
  3636. }
  3637. #u34626 {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:1254px;
  3641. top:495px;
  3642. width:240px;
  3643. height:23px;
  3644. display:flex;
  3645. font-size:12px;
  3646. }
  3647. #u34626 .text {
  3648. position:absolute;
  3649. align-self:center;
  3650. padding:2px 2px 2px 2px;
  3651. box-sizing:border-box;
  3652. width:100%;
  3653. }
  3654. #u34626_text {
  3655. border-width:0px;
  3656. word-wrap:break-word;
  3657. text-transform:none;
  3658. visibility:hidden;
  3659. }
  3660. #u34627_div {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:89px;
  3666. height:21px;
  3667. background:inherit;
  3668. background-color:rgba(255, 255, 255, 0);
  3669. border:none;
  3670. border-radius:0px;
  3671. -moz-box-shadow:none;
  3672. -webkit-box-shadow:none;
  3673. box-shadow:none;
  3674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. font-size:12px;
  3678. color:rgba(255, 255, 255, 0.698039215686274);
  3679. text-align:left;
  3680. }
  3681. #u34627 {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:1254px;
  3685. top:496px;
  3686. width:89px;
  3687. height:21px;
  3688. display:flex;
  3689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3690. font-weight:400;
  3691. font-style:normal;
  3692. font-size:12px;
  3693. color:rgba(255, 255, 255, 0.698039215686274);
  3694. text-align:left;
  3695. }
  3696. #u34627 .text {
  3697. position:absolute;
  3698. align-self:center;
  3699. padding:2px 2px 2px 2px;
  3700. box-sizing:border-box;
  3701. width:100%;
  3702. }
  3703. #u34627_text {
  3704. border-width:0px;
  3705. white-space:nowrap;
  3706. text-transform:none;
  3707. }
  3708. #u34628_div {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:0px;
  3712. top:0px;
  3713. width:53px;
  3714. height:21px;
  3715. background:inherit;
  3716. background-color:rgba(255, 255, 255, 0);
  3717. border:none;
  3718. border-radius:0px;
  3719. -moz-box-shadow:none;
  3720. -webkit-box-shadow:none;
  3721. box-shadow:none;
  3722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3723. font-weight:400;
  3724. font-style:normal;
  3725. font-size:12px;
  3726. color:#FFFFFF;
  3727. text-align:left;
  3728. }
  3729. #u34628 {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:1356px;
  3733. top:496px;
  3734. width:53px;
  3735. height:21px;
  3736. display:flex;
  3737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3738. font-weight:400;
  3739. font-style:normal;
  3740. font-size:12px;
  3741. color:#FFFFFF;
  3742. text-align:left;
  3743. }
  3744. #u34628 .text {
  3745. position:absolute;
  3746. align-self:center;
  3747. padding:2px 2px 2px 2px;
  3748. box-sizing:border-box;
  3749. width:100%;
  3750. }
  3751. #u34628_text {
  3752. border-width:0px;
  3753. white-space:nowrap;
  3754. text-transform:none;
  3755. }
  3756. #u34629_div {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:0px;
  3760. top:0px;
  3761. width:53px;
  3762. height:21px;
  3763. background:inherit;
  3764. background-color:rgba(255, 255, 255, 0);
  3765. border:none;
  3766. border-radius:0px;
  3767. -moz-box-shadow:none;
  3768. -webkit-box-shadow:none;
  3769. box-shadow:none;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:12px;
  3774. color:#FFFFFF;
  3775. text-align:left;
  3776. }
  3777. #u34629 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:1441px;
  3781. top:496px;
  3782. width:53px;
  3783. height:21px;
  3784. display:flex;
  3785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3786. font-weight:400;
  3787. font-style:normal;
  3788. font-size:12px;
  3789. color:#FFFFFF;
  3790. text-align:left;
  3791. }
  3792. #u34629 .text {
  3793. position:absolute;
  3794. align-self:center;
  3795. padding:2px 2px 2px 2px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u34629_text {
  3800. border-width:0px;
  3801. white-space:nowrap;
  3802. text-transform:none;
  3803. }
  3804. #u34630 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:0px;
  3810. height:0px;
  3811. }
  3812. #u34631_div {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:240px;
  3818. height:23px;
  3819. background:inherit;
  3820. background-color:rgba(255, 255, 255, 0);
  3821. border:none;
  3822. border-radius:0px;
  3823. -moz-box-shadow:none;
  3824. -webkit-box-shadow:none;
  3825. box-shadow:none;
  3826. font-size:12px;
  3827. }
  3828. #u34631 {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:1254px;
  3832. top:519px;
  3833. width:240px;
  3834. height:23px;
  3835. display:flex;
  3836. font-size:12px;
  3837. }
  3838. #u34631 .text {
  3839. position:absolute;
  3840. align-self:center;
  3841. padding:2px 2px 2px 2px;
  3842. box-sizing:border-box;
  3843. width:100%;
  3844. }
  3845. #u34631_text {
  3846. border-width:0px;
  3847. word-wrap:break-word;
  3848. text-transform:none;
  3849. visibility:hidden;
  3850. }
  3851. #u34632_div {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:0px;
  3855. top:0px;
  3856. width:89px;
  3857. height:21px;
  3858. background:inherit;
  3859. background-color:rgba(255, 255, 255, 0);
  3860. border:none;
  3861. border-radius:0px;
  3862. -moz-box-shadow:none;
  3863. -webkit-box-shadow:none;
  3864. box-shadow:none;
  3865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3866. font-weight:400;
  3867. font-style:normal;
  3868. font-size:12px;
  3869. color:rgba(255, 255, 255, 0.698039215686274);
  3870. text-align:left;
  3871. }
  3872. #u34632 {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:1254px;
  3876. top:520px;
  3877. width:89px;
  3878. height:21px;
  3879. display:flex;
  3880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3881. font-weight:400;
  3882. font-style:normal;
  3883. font-size:12px;
  3884. color:rgba(255, 255, 255, 0.698039215686274);
  3885. text-align:left;
  3886. }
  3887. #u34632 .text {
  3888. position:absolute;
  3889. align-self:center;
  3890. padding:2px 2px 2px 2px;
  3891. box-sizing:border-box;
  3892. width:100%;
  3893. }
  3894. #u34632_text {
  3895. border-width:0px;
  3896. white-space:nowrap;
  3897. text-transform:none;
  3898. }
  3899. #u34633_div {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:53px;
  3905. height:21px;
  3906. background:inherit;
  3907. background-color:rgba(255, 255, 255, 0);
  3908. border:none;
  3909. border-radius:0px;
  3910. -moz-box-shadow:none;
  3911. -webkit-box-shadow:none;
  3912. box-shadow:none;
  3913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3914. font-weight:400;
  3915. font-style:normal;
  3916. font-size:12px;
  3917. color:#FFFFFF;
  3918. text-align:left;
  3919. }
  3920. #u34633 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:1356px;
  3924. top:520px;
  3925. width:53px;
  3926. height:21px;
  3927. display:flex;
  3928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3929. font-weight:400;
  3930. font-style:normal;
  3931. font-size:12px;
  3932. color:#FFFFFF;
  3933. text-align:left;
  3934. }
  3935. #u34633 .text {
  3936. position:absolute;
  3937. align-self:center;
  3938. padding:2px 2px 2px 2px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u34633_text {
  3943. border-width:0px;
  3944. white-space:nowrap;
  3945. text-transform:none;
  3946. }
  3947. #u34634_div {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:53px;
  3953. height:21px;
  3954. background:inherit;
  3955. background-color:rgba(255, 255, 255, 0);
  3956. border:none;
  3957. border-radius:0px;
  3958. -moz-box-shadow:none;
  3959. -webkit-box-shadow:none;
  3960. box-shadow:none;
  3961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3962. font-weight:400;
  3963. font-style:normal;
  3964. font-size:12px;
  3965. color:#FFFFFF;
  3966. text-align:left;
  3967. }
  3968. #u34634 {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:1441px;
  3972. top:520px;
  3973. width:53px;
  3974. height:21px;
  3975. display:flex;
  3976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:12px;
  3980. color:#FFFFFF;
  3981. text-align:left;
  3982. }
  3983. #u34634 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 2px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u34634_text {
  3991. border-width:0px;
  3992. white-space:nowrap;
  3993. text-transform:none;
  3994. }
  3995. #u34635 {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:0px;
  3999. top:0px;
  4000. width:0px;
  4001. height:0px;
  4002. }
  4003. #u34636_div {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:0px;
  4007. top:0px;
  4008. width:240px;
  4009. height:23px;
  4010. background:inherit;
  4011. background-color:rgba(255, 255, 255, 0);
  4012. border:none;
  4013. border-radius:0px;
  4014. -moz-box-shadow:none;
  4015. -webkit-box-shadow:none;
  4016. box-shadow:none;
  4017. font-size:12px;
  4018. }
  4019. #u34636 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:1254px;
  4023. top:543px;
  4024. width:240px;
  4025. height:23px;
  4026. display:flex;
  4027. font-size:12px;
  4028. }
  4029. #u34636 .text {
  4030. position:absolute;
  4031. align-self:center;
  4032. padding:2px 2px 2px 2px;
  4033. box-sizing:border-box;
  4034. width:100%;
  4035. }
  4036. #u34636_text {
  4037. border-width:0px;
  4038. word-wrap:break-word;
  4039. text-transform:none;
  4040. visibility:hidden;
  4041. }
  4042. #u34637_div {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:0px;
  4046. top:0px;
  4047. width:89px;
  4048. height:21px;
  4049. background:inherit;
  4050. background-color:rgba(255, 255, 255, 0);
  4051. border:none;
  4052. border-radius:0px;
  4053. -moz-box-shadow:none;
  4054. -webkit-box-shadow:none;
  4055. box-shadow:none;
  4056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4057. font-weight:400;
  4058. font-style:normal;
  4059. font-size:12px;
  4060. color:rgba(255, 255, 255, 0.698039215686274);
  4061. text-align:left;
  4062. }
  4063. #u34637 {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:1254px;
  4067. top:544px;
  4068. width:89px;
  4069. height:21px;
  4070. display:flex;
  4071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4072. font-weight:400;
  4073. font-style:normal;
  4074. font-size:12px;
  4075. color:rgba(255, 255, 255, 0.698039215686274);
  4076. text-align:left;
  4077. }
  4078. #u34637 .text {
  4079. position:absolute;
  4080. align-self:center;
  4081. padding:2px 2px 2px 2px;
  4082. box-sizing:border-box;
  4083. width:100%;
  4084. }
  4085. #u34637_text {
  4086. border-width:0px;
  4087. white-space:nowrap;
  4088. text-transform:none;
  4089. }
  4090. #u34638_div {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:53px;
  4096. height:21px;
  4097. background:inherit;
  4098. background-color:rgba(255, 255, 255, 0);
  4099. border:none;
  4100. border-radius:0px;
  4101. -moz-box-shadow:none;
  4102. -webkit-box-shadow:none;
  4103. box-shadow:none;
  4104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. font-size:12px;
  4108. color:#FFFFFF;
  4109. text-align:left;
  4110. }
  4111. #u34638 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:1356px;
  4115. top:544px;
  4116. width:53px;
  4117. height:21px;
  4118. display:flex;
  4119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4120. font-weight:400;
  4121. font-style:normal;
  4122. font-size:12px;
  4123. color:#FFFFFF;
  4124. text-align:left;
  4125. }
  4126. #u34638 .text {
  4127. position:absolute;
  4128. align-self:center;
  4129. padding:2px 2px 2px 2px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u34638_text {
  4134. border-width:0px;
  4135. white-space:nowrap;
  4136. text-transform:none;
  4137. }
  4138. #u34639_div {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:53px;
  4144. height:21px;
  4145. background:inherit;
  4146. background-color:rgba(255, 255, 255, 0);
  4147. border:none;
  4148. border-radius:0px;
  4149. -moz-box-shadow:none;
  4150. -webkit-box-shadow:none;
  4151. box-shadow:none;
  4152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:12px;
  4156. color:#FFFFFF;
  4157. text-align:left;
  4158. }
  4159. #u34639 {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:1441px;
  4163. top:544px;
  4164. width:53px;
  4165. height:21px;
  4166. display:flex;
  4167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4168. font-weight:400;
  4169. font-style:normal;
  4170. font-size:12px;
  4171. color:#FFFFFF;
  4172. text-align:left;
  4173. }
  4174. #u34639 .text {
  4175. position:absolute;
  4176. align-self:center;
  4177. padding:2px 2px 2px 2px;
  4178. box-sizing:border-box;
  4179. width:100%;
  4180. }
  4181. #u34639_text {
  4182. border-width:0px;
  4183. white-space:nowrap;
  4184. text-transform:none;
  4185. }
  4186. #u34640 {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:0px;
  4190. top:0px;
  4191. width:0px;
  4192. height:0px;
  4193. }
  4194. #u34641_div {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:240px;
  4200. height:23px;
  4201. background:inherit;
  4202. background-color:rgba(255, 255, 255, 0);
  4203. border:none;
  4204. border-radius:0px;
  4205. -moz-box-shadow:none;
  4206. -webkit-box-shadow:none;
  4207. box-shadow:none;
  4208. font-size:12px;
  4209. }
  4210. #u34641 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:1254px;
  4214. top:567px;
  4215. width:240px;
  4216. height:23px;
  4217. display:flex;
  4218. font-size:12px;
  4219. }
  4220. #u34641 .text {
  4221. position:absolute;
  4222. align-self:center;
  4223. padding:2px 2px 2px 2px;
  4224. box-sizing:border-box;
  4225. width:100%;
  4226. }
  4227. #u34641_text {
  4228. border-width:0px;
  4229. word-wrap:break-word;
  4230. text-transform:none;
  4231. visibility:hidden;
  4232. }
  4233. #u34642_div {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:89px;
  4239. height:21px;
  4240. background:inherit;
  4241. background-color:rgba(255, 255, 255, 0);
  4242. border:none;
  4243. border-radius:0px;
  4244. -moz-box-shadow:none;
  4245. -webkit-box-shadow:none;
  4246. box-shadow:none;
  4247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:12px;
  4251. color:rgba(255, 255, 255, 0.698039215686274);
  4252. text-align:left;
  4253. }
  4254. #u34642 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:1254px;
  4258. top:568px;
  4259. width:89px;
  4260. height:21px;
  4261. display:flex;
  4262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4263. font-weight:400;
  4264. font-style:normal;
  4265. font-size:12px;
  4266. color:rgba(255, 255, 255, 0.698039215686274);
  4267. text-align:left;
  4268. }
  4269. #u34642 .text {
  4270. position:absolute;
  4271. align-self:center;
  4272. padding:2px 2px 2px 2px;
  4273. box-sizing:border-box;
  4274. width:100%;
  4275. }
  4276. #u34642_text {
  4277. border-width:0px;
  4278. white-space:nowrap;
  4279. text-transform:none;
  4280. }
  4281. #u34643_div {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:53px;
  4287. height:21px;
  4288. background:inherit;
  4289. background-color:rgba(255, 255, 255, 0);
  4290. border:none;
  4291. border-radius:0px;
  4292. -moz-box-shadow:none;
  4293. -webkit-box-shadow:none;
  4294. box-shadow:none;
  4295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4296. font-weight:400;
  4297. font-style:normal;
  4298. font-size:12px;
  4299. color:#FFFFFF;
  4300. text-align:left;
  4301. }
  4302. #u34643 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:1356px;
  4306. top:568px;
  4307. width:53px;
  4308. height:21px;
  4309. display:flex;
  4310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4311. font-weight:400;
  4312. font-style:normal;
  4313. font-size:12px;
  4314. color:#FFFFFF;
  4315. text-align:left;
  4316. }
  4317. #u34643 .text {
  4318. position:absolute;
  4319. align-self:center;
  4320. padding:2px 2px 2px 2px;
  4321. box-sizing:border-box;
  4322. width:100%;
  4323. }
  4324. #u34643_text {
  4325. border-width:0px;
  4326. white-space:nowrap;
  4327. text-transform:none;
  4328. }
  4329. #u34644_div {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:53px;
  4335. height:21px;
  4336. background:inherit;
  4337. background-color:rgba(255, 255, 255, 0);
  4338. border:none;
  4339. border-radius:0px;
  4340. -moz-box-shadow:none;
  4341. -webkit-box-shadow:none;
  4342. box-shadow:none;
  4343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4344. font-weight:400;
  4345. font-style:normal;
  4346. font-size:12px;
  4347. color:#FFFFFF;
  4348. text-align:left;
  4349. }
  4350. #u34644 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:1441px;
  4354. top:568px;
  4355. width:53px;
  4356. height:21px;
  4357. display:flex;
  4358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4359. font-weight:400;
  4360. font-style:normal;
  4361. font-size:12px;
  4362. color:#FFFFFF;
  4363. text-align:left;
  4364. }
  4365. #u34644 .text {
  4366. position:absolute;
  4367. align-self:center;
  4368. padding:2px 2px 2px 2px;
  4369. box-sizing:border-box;
  4370. width:100%;
  4371. }
  4372. #u34644_text {
  4373. border-width:0px;
  4374. white-space:nowrap;
  4375. text-transform:none;
  4376. }
  4377. #u34645 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:0px;
  4383. height:0px;
  4384. }
  4385. #u34646_div {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:240px;
  4391. height:23px;
  4392. background:inherit;
  4393. background-color:rgba(255, 255, 255, 0);
  4394. border:none;
  4395. border-radius:0px;
  4396. -moz-box-shadow:none;
  4397. -webkit-box-shadow:none;
  4398. box-shadow:none;
  4399. font-size:12px;
  4400. }
  4401. #u34646 {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:1254px;
  4405. top:591px;
  4406. width:240px;
  4407. height:23px;
  4408. display:flex;
  4409. font-size:12px;
  4410. }
  4411. #u34646 .text {
  4412. position:absolute;
  4413. align-self:center;
  4414. padding:2px 2px 2px 2px;
  4415. box-sizing:border-box;
  4416. width:100%;
  4417. }
  4418. #u34646_text {
  4419. border-width:0px;
  4420. word-wrap:break-word;
  4421. text-transform:none;
  4422. visibility:hidden;
  4423. }
  4424. #u34647_div {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:89px;
  4430. height:21px;
  4431. background:inherit;
  4432. background-color:rgba(255, 255, 255, 0);
  4433. border:none;
  4434. border-radius:0px;
  4435. -moz-box-shadow:none;
  4436. -webkit-box-shadow:none;
  4437. box-shadow:none;
  4438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4439. font-weight:400;
  4440. font-style:normal;
  4441. font-size:12px;
  4442. color:rgba(255, 255, 255, 0.698039215686274);
  4443. text-align:left;
  4444. }
  4445. #u34647 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:1254px;
  4449. top:592px;
  4450. width:89px;
  4451. height:21px;
  4452. display:flex;
  4453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4454. font-weight:400;
  4455. font-style:normal;
  4456. font-size:12px;
  4457. color:rgba(255, 255, 255, 0.698039215686274);
  4458. text-align:left;
  4459. }
  4460. #u34647 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:2px 2px 2px 2px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u34647_text {
  4468. border-width:0px;
  4469. white-space:nowrap;
  4470. text-transform:none;
  4471. }
  4472. #u34648_div {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:0px;
  4476. top:0px;
  4477. width:53px;
  4478. height:21px;
  4479. background:inherit;
  4480. background-color:rgba(255, 255, 255, 0);
  4481. border:none;
  4482. border-radius:0px;
  4483. -moz-box-shadow:none;
  4484. -webkit-box-shadow:none;
  4485. box-shadow:none;
  4486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4487. font-weight:400;
  4488. font-style:normal;
  4489. font-size:12px;
  4490. color:#FFFFFF;
  4491. text-align:left;
  4492. }
  4493. #u34648 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:1356px;
  4497. top:592px;
  4498. width:53px;
  4499. height:21px;
  4500. display:flex;
  4501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:12px;
  4505. color:#FFFFFF;
  4506. text-align:left;
  4507. }
  4508. #u34648 .text {
  4509. position:absolute;
  4510. align-self:center;
  4511. padding:2px 2px 2px 2px;
  4512. box-sizing:border-box;
  4513. width:100%;
  4514. }
  4515. #u34648_text {
  4516. border-width:0px;
  4517. white-space:nowrap;
  4518. text-transform:none;
  4519. }
  4520. #u34649_div {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:0px;
  4524. top:0px;
  4525. width:53px;
  4526. height:21px;
  4527. background:inherit;
  4528. background-color:rgba(255, 255, 255, 0);
  4529. border:none;
  4530. border-radius:0px;
  4531. -moz-box-shadow:none;
  4532. -webkit-box-shadow:none;
  4533. box-shadow:none;
  4534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:12px;
  4538. color:#FFFFFF;
  4539. text-align:left;
  4540. }
  4541. #u34649 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:1441px;
  4545. top:592px;
  4546. width:53px;
  4547. height:21px;
  4548. display:flex;
  4549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4550. font-weight:400;
  4551. font-style:normal;
  4552. font-size:12px;
  4553. color:#FFFFFF;
  4554. text-align:left;
  4555. }
  4556. #u34649 .text {
  4557. position:absolute;
  4558. align-self:center;
  4559. padding:2px 2px 2px 2px;
  4560. box-sizing:border-box;
  4561. width:100%;
  4562. }
  4563. #u34649_text {
  4564. border-width:0px;
  4565. white-space:nowrap;
  4566. text-transform:none;
  4567. }
  4568. #u34650 {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:0px;
  4574. height:0px;
  4575. }
  4576. #u34651_div {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:240px;
  4582. height:23px;
  4583. background:inherit;
  4584. background-color:rgba(255, 255, 255, 0);
  4585. border:none;
  4586. border-radius:0px;
  4587. -moz-box-shadow:none;
  4588. -webkit-box-shadow:none;
  4589. box-shadow:none;
  4590. font-size:12px;
  4591. }
  4592. #u34651 {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:1254px;
  4596. top:615px;
  4597. width:240px;
  4598. height:23px;
  4599. display:flex;
  4600. font-size:12px;
  4601. }
  4602. #u34651 .text {
  4603. position:absolute;
  4604. align-self:center;
  4605. padding:2px 2px 2px 2px;
  4606. box-sizing:border-box;
  4607. width:100%;
  4608. }
  4609. #u34651_text {
  4610. border-width:0px;
  4611. word-wrap:break-word;
  4612. text-transform:none;
  4613. visibility:hidden;
  4614. }
  4615. #u34652_div {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:0px;
  4619. top:0px;
  4620. width:89px;
  4621. height:21px;
  4622. background:inherit;
  4623. background-color:rgba(255, 255, 255, 0);
  4624. border:none;
  4625. border-radius:0px;
  4626. -moz-box-shadow:none;
  4627. -webkit-box-shadow:none;
  4628. box-shadow:none;
  4629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4630. font-weight:400;
  4631. font-style:normal;
  4632. font-size:12px;
  4633. color:rgba(255, 255, 255, 0.698039215686274);
  4634. text-align:left;
  4635. }
  4636. #u34652 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:1254px;
  4640. top:616px;
  4641. width:89px;
  4642. height:21px;
  4643. display:flex;
  4644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4645. font-weight:400;
  4646. font-style:normal;
  4647. font-size:12px;
  4648. color:rgba(255, 255, 255, 0.698039215686274);
  4649. text-align:left;
  4650. }
  4651. #u34652 .text {
  4652. position:absolute;
  4653. align-self:center;
  4654. padding:2px 2px 2px 2px;
  4655. box-sizing:border-box;
  4656. width:100%;
  4657. }
  4658. #u34652_text {
  4659. border-width:0px;
  4660. white-space:nowrap;
  4661. text-transform:none;
  4662. }
  4663. #u34653_div {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:53px;
  4669. height:21px;
  4670. background:inherit;
  4671. background-color:rgba(255, 255, 255, 0);
  4672. border:none;
  4673. border-radius:0px;
  4674. -moz-box-shadow:none;
  4675. -webkit-box-shadow:none;
  4676. box-shadow:none;
  4677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4678. font-weight:400;
  4679. font-style:normal;
  4680. font-size:12px;
  4681. color:#FFFFFF;
  4682. text-align:left;
  4683. }
  4684. #u34653 {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:1356px;
  4688. top:616px;
  4689. width:53px;
  4690. height:21px;
  4691. display:flex;
  4692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4693. font-weight:400;
  4694. font-style:normal;
  4695. font-size:12px;
  4696. color:#FFFFFF;
  4697. text-align:left;
  4698. }
  4699. #u34653 .text {
  4700. position:absolute;
  4701. align-self:center;
  4702. padding:2px 2px 2px 2px;
  4703. box-sizing:border-box;
  4704. width:100%;
  4705. }
  4706. #u34653_text {
  4707. border-width:0px;
  4708. white-space:nowrap;
  4709. text-transform:none;
  4710. }
  4711. #u34654_div {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:0px;
  4715. top:0px;
  4716. width:53px;
  4717. height:21px;
  4718. background:inherit;
  4719. background-color:rgba(255, 255, 255, 0);
  4720. border:none;
  4721. border-radius:0px;
  4722. -moz-box-shadow:none;
  4723. -webkit-box-shadow:none;
  4724. box-shadow:none;
  4725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. font-size:12px;
  4729. color:#FFFFFF;
  4730. text-align:left;
  4731. }
  4732. #u34654 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:1441px;
  4736. top:616px;
  4737. width:53px;
  4738. height:21px;
  4739. display:flex;
  4740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4741. font-weight:400;
  4742. font-style:normal;
  4743. font-size:12px;
  4744. color:#FFFFFF;
  4745. text-align:left;
  4746. }
  4747. #u34654 .text {
  4748. position:absolute;
  4749. align-self:center;
  4750. padding:2px 2px 2px 2px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u34654_text {
  4755. border-width:0px;
  4756. white-space:nowrap;
  4757. text-transform:none;
  4758. }
  4759. #u34655 {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:0px;
  4763. top:0px;
  4764. width:0px;
  4765. height:0px;
  4766. }
  4767. #u34656_div {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:240px;
  4773. height:23px;
  4774. background:inherit;
  4775. background-color:rgba(255, 255, 255, 0);
  4776. border:none;
  4777. border-radius:0px;
  4778. -moz-box-shadow:none;
  4779. -webkit-box-shadow:none;
  4780. box-shadow:none;
  4781. font-size:12px;
  4782. }
  4783. #u34656 {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:1254px;
  4787. top:639px;
  4788. width:240px;
  4789. height:23px;
  4790. display:flex;
  4791. font-size:12px;
  4792. }
  4793. #u34656 .text {
  4794. position:absolute;
  4795. align-self:center;
  4796. padding:2px 2px 2px 2px;
  4797. box-sizing:border-box;
  4798. width:100%;
  4799. }
  4800. #u34656_text {
  4801. border-width:0px;
  4802. word-wrap:break-word;
  4803. text-transform:none;
  4804. visibility:hidden;
  4805. }
  4806. #u34657_div {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:0px;
  4810. top:0px;
  4811. width:89px;
  4812. height:21px;
  4813. background:inherit;
  4814. background-color:rgba(255, 255, 255, 0);
  4815. border:none;
  4816. border-radius:0px;
  4817. -moz-box-shadow:none;
  4818. -webkit-box-shadow:none;
  4819. box-shadow:none;
  4820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:12px;
  4824. color:rgba(255, 255, 255, 0.698039215686274);
  4825. text-align:left;
  4826. }
  4827. #u34657 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:1254px;
  4831. top:640px;
  4832. width:89px;
  4833. height:21px;
  4834. display:flex;
  4835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4836. font-weight:400;
  4837. font-style:normal;
  4838. font-size:12px;
  4839. color:rgba(255, 255, 255, 0.698039215686274);
  4840. text-align:left;
  4841. }
  4842. #u34657 .text {
  4843. position:absolute;
  4844. align-self:center;
  4845. padding:2px 2px 2px 2px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u34657_text {
  4850. border-width:0px;
  4851. white-space:nowrap;
  4852. text-transform:none;
  4853. }
  4854. #u34658_div {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:53px;
  4860. height:21px;
  4861. background:inherit;
  4862. background-color:rgba(255, 255, 255, 0);
  4863. border:none;
  4864. border-radius:0px;
  4865. -moz-box-shadow:none;
  4866. -webkit-box-shadow:none;
  4867. box-shadow:none;
  4868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:12px;
  4872. color:#FFFFFF;
  4873. text-align:left;
  4874. }
  4875. #u34658 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:1356px;
  4879. top:640px;
  4880. width:53px;
  4881. height:21px;
  4882. display:flex;
  4883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4884. font-weight:400;
  4885. font-style:normal;
  4886. font-size:12px;
  4887. color:#FFFFFF;
  4888. text-align:left;
  4889. }
  4890. #u34658 .text {
  4891. position:absolute;
  4892. align-self:center;
  4893. padding:2px 2px 2px 2px;
  4894. box-sizing:border-box;
  4895. width:100%;
  4896. }
  4897. #u34658_text {
  4898. border-width:0px;
  4899. white-space:nowrap;
  4900. text-transform:none;
  4901. }
  4902. #u34659_div {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:0px;
  4906. top:0px;
  4907. width:53px;
  4908. height:21px;
  4909. background:inherit;
  4910. background-color:rgba(255, 255, 255, 0);
  4911. border:none;
  4912. border-radius:0px;
  4913. -moz-box-shadow:none;
  4914. -webkit-box-shadow:none;
  4915. box-shadow:none;
  4916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4917. font-weight:400;
  4918. font-style:normal;
  4919. font-size:12px;
  4920. color:#FFFFFF;
  4921. text-align:left;
  4922. }
  4923. #u34659 {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:1441px;
  4927. top:640px;
  4928. width:53px;
  4929. height:21px;
  4930. display:flex;
  4931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4932. font-weight:400;
  4933. font-style:normal;
  4934. font-size:12px;
  4935. color:#FFFFFF;
  4936. text-align:left;
  4937. }
  4938. #u34659 .text {
  4939. position:absolute;
  4940. align-self:center;
  4941. padding:2px 2px 2px 2px;
  4942. box-sizing:border-box;
  4943. width:100%;
  4944. }
  4945. #u34659_text {
  4946. border-width:0px;
  4947. white-space:nowrap;
  4948. text-transform:none;
  4949. }
  4950. #u34660 {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:0px;
  4954. top:0px;
  4955. width:0px;
  4956. height:0px;
  4957. }
  4958. #u34661_div {
  4959. border-width:0px;
  4960. position:absolute;
  4961. left:0px;
  4962. top:0px;
  4963. width:240px;
  4964. height:23px;
  4965. background:inherit;
  4966. background-color:rgba(255, 255, 255, 0);
  4967. border:none;
  4968. border-radius:0px;
  4969. -moz-box-shadow:none;
  4970. -webkit-box-shadow:none;
  4971. box-shadow:none;
  4972. font-size:12px;
  4973. }
  4974. #u34661 {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:1254px;
  4978. top:663px;
  4979. width:240px;
  4980. height:23px;
  4981. display:flex;
  4982. font-size:12px;
  4983. }
  4984. #u34661 .text {
  4985. position:absolute;
  4986. align-self:center;
  4987. padding:2px 2px 2px 2px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u34661_text {
  4992. border-width:0px;
  4993. word-wrap:break-word;
  4994. text-transform:none;
  4995. visibility:hidden;
  4996. }
  4997. #u34662_div {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:89px;
  5003. height:21px;
  5004. background:inherit;
  5005. background-color:rgba(255, 255, 255, 0);
  5006. border:none;
  5007. border-radius:0px;
  5008. -moz-box-shadow:none;
  5009. -webkit-box-shadow:none;
  5010. box-shadow:none;
  5011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5012. font-weight:400;
  5013. font-style:normal;
  5014. font-size:12px;
  5015. color:rgba(255, 255, 255, 0.698039215686274);
  5016. text-align:left;
  5017. }
  5018. #u34662 {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:1254px;
  5022. top:664px;
  5023. width:89px;
  5024. height:21px;
  5025. display:flex;
  5026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5027. font-weight:400;
  5028. font-style:normal;
  5029. font-size:12px;
  5030. color:rgba(255, 255, 255, 0.698039215686274);
  5031. text-align:left;
  5032. }
  5033. #u34662 .text {
  5034. position:absolute;
  5035. align-self:center;
  5036. padding:2px 2px 2px 2px;
  5037. box-sizing:border-box;
  5038. width:100%;
  5039. }
  5040. #u34662_text {
  5041. border-width:0px;
  5042. white-space:nowrap;
  5043. text-transform:none;
  5044. }
  5045. #u34663_div {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:0px;
  5049. top:0px;
  5050. width:53px;
  5051. height:21px;
  5052. background:inherit;
  5053. background-color:rgba(255, 255, 255, 0);
  5054. border:none;
  5055. border-radius:0px;
  5056. -moz-box-shadow:none;
  5057. -webkit-box-shadow:none;
  5058. box-shadow:none;
  5059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5060. font-weight:400;
  5061. font-style:normal;
  5062. font-size:12px;
  5063. color:#FFFFFF;
  5064. text-align:left;
  5065. }
  5066. #u34663 {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:1356px;
  5070. top:664px;
  5071. width:53px;
  5072. height:21px;
  5073. display:flex;
  5074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5075. font-weight:400;
  5076. font-style:normal;
  5077. font-size:12px;
  5078. color:#FFFFFF;
  5079. text-align:left;
  5080. }
  5081. #u34663 .text {
  5082. position:absolute;
  5083. align-self:center;
  5084. padding:2px 2px 2px 2px;
  5085. box-sizing:border-box;
  5086. width:100%;
  5087. }
  5088. #u34663_text {
  5089. border-width:0px;
  5090. white-space:nowrap;
  5091. text-transform:none;
  5092. }
  5093. #u34664_div {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:53px;
  5099. height:21px;
  5100. background:inherit;
  5101. background-color:rgba(255, 255, 255, 0);
  5102. border:none;
  5103. border-radius:0px;
  5104. -moz-box-shadow:none;
  5105. -webkit-box-shadow:none;
  5106. box-shadow:none;
  5107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5108. font-weight:400;
  5109. font-style:normal;
  5110. font-size:12px;
  5111. color:#FFFFFF;
  5112. text-align:left;
  5113. }
  5114. #u34664 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:1441px;
  5118. top:664px;
  5119. width:53px;
  5120. height:21px;
  5121. display:flex;
  5122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5123. font-weight:400;
  5124. font-style:normal;
  5125. font-size:12px;
  5126. color:#FFFFFF;
  5127. text-align:left;
  5128. }
  5129. #u34664 .text {
  5130. position:absolute;
  5131. align-self:center;
  5132. padding:2px 2px 2px 2px;
  5133. box-sizing:border-box;
  5134. width:100%;
  5135. }
  5136. #u34664_text {
  5137. border-width:0px;
  5138. white-space:nowrap;
  5139. text-transform:none;
  5140. }
  5141. #u34665 {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:0px;
  5147. height:0px;
  5148. }
  5149. #u34666_div {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:0px;
  5153. top:0px;
  5154. width:240px;
  5155. height:23px;
  5156. background:inherit;
  5157. background-color:rgba(255, 255, 255, 0);
  5158. border:none;
  5159. border-radius:0px;
  5160. -moz-box-shadow:none;
  5161. -webkit-box-shadow:none;
  5162. box-shadow:none;
  5163. font-size:12px;
  5164. }
  5165. #u34666 {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:1254px;
  5169. top:687px;
  5170. width:240px;
  5171. height:23px;
  5172. display:flex;
  5173. font-size:12px;
  5174. }
  5175. #u34666 .text {
  5176. position:absolute;
  5177. align-self:center;
  5178. padding:2px 2px 2px 2px;
  5179. box-sizing:border-box;
  5180. width:100%;
  5181. }
  5182. #u34666_text {
  5183. border-width:0px;
  5184. word-wrap:break-word;
  5185. text-transform:none;
  5186. visibility:hidden;
  5187. }
  5188. #u34667_div {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:89px;
  5194. height:21px;
  5195. background:inherit;
  5196. background-color:rgba(255, 255, 255, 0);
  5197. border:none;
  5198. border-radius:0px;
  5199. -moz-box-shadow:none;
  5200. -webkit-box-shadow:none;
  5201. box-shadow:none;
  5202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5203. font-weight:400;
  5204. font-style:normal;
  5205. font-size:12px;
  5206. color:rgba(255, 255, 255, 0.698039215686274);
  5207. text-align:left;
  5208. }
  5209. #u34667 {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:1254px;
  5213. top:688px;
  5214. width:89px;
  5215. height:21px;
  5216. display:flex;
  5217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:12px;
  5221. color:rgba(255, 255, 255, 0.698039215686274);
  5222. text-align:left;
  5223. }
  5224. #u34667 .text {
  5225. position:absolute;
  5226. align-self:center;
  5227. padding:2px 2px 2px 2px;
  5228. box-sizing:border-box;
  5229. width:100%;
  5230. }
  5231. #u34667_text {
  5232. border-width:0px;
  5233. white-space:nowrap;
  5234. text-transform:none;
  5235. }
  5236. #u34668_div {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:53px;
  5242. height:21px;
  5243. background:inherit;
  5244. background-color:rgba(255, 255, 255, 0);
  5245. border:none;
  5246. border-radius:0px;
  5247. -moz-box-shadow:none;
  5248. -webkit-box-shadow:none;
  5249. box-shadow:none;
  5250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5251. font-weight:400;
  5252. font-style:normal;
  5253. font-size:12px;
  5254. color:#FFFFFF;
  5255. text-align:left;
  5256. }
  5257. #u34668 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:1356px;
  5261. top:688px;
  5262. width:53px;
  5263. height:21px;
  5264. display:flex;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:12px;
  5269. color:#FFFFFF;
  5270. text-align:left;
  5271. }
  5272. #u34668 .text {
  5273. position:absolute;
  5274. align-self:center;
  5275. padding:2px 2px 2px 2px;
  5276. box-sizing:border-box;
  5277. width:100%;
  5278. }
  5279. #u34668_text {
  5280. border-width:0px;
  5281. white-space:nowrap;
  5282. text-transform:none;
  5283. }
  5284. #u34669_div {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:0px;
  5288. top:0px;
  5289. width:53px;
  5290. height:21px;
  5291. background:inherit;
  5292. background-color:rgba(255, 255, 255, 0);
  5293. border:none;
  5294. border-radius:0px;
  5295. -moz-box-shadow:none;
  5296. -webkit-box-shadow:none;
  5297. box-shadow:none;
  5298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5299. font-weight:400;
  5300. font-style:normal;
  5301. font-size:12px;
  5302. color:#FFFFFF;
  5303. text-align:left;
  5304. }
  5305. #u34669 {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:1441px;
  5309. top:688px;
  5310. width:53px;
  5311. height:21px;
  5312. display:flex;
  5313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. font-size:12px;
  5317. color:#FFFFFF;
  5318. text-align:left;
  5319. }
  5320. #u34669 .text {
  5321. position:absolute;
  5322. align-self:center;
  5323. padding:2px 2px 2px 2px;
  5324. box-sizing:border-box;
  5325. width:100%;
  5326. }
  5327. #u34669_text {
  5328. border-width:0px;
  5329. white-space:nowrap;
  5330. text-transform:none;
  5331. }
  5332. #u34670_img {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:9px;
  5338. height:9px;
  5339. }
  5340. #u34670 {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:1244px;
  5344. top:382px;
  5345. width:9px;
  5346. height:9px;
  5347. display:flex;
  5348. }
  5349. #u34670 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:2px 2px 2px 2px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u34670_text {
  5357. border-width:0px;
  5358. word-wrap:break-word;
  5359. text-transform:none;
  5360. visibility:hidden;
  5361. }
  5362. #u34671_img {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:9px;
  5368. height:9px;
  5369. }
  5370. #u34671 {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:1244px;
  5374. top:405px;
  5375. width:9px;
  5376. height:9px;
  5377. display:flex;
  5378. }
  5379. #u34671 .text {
  5380. position:absolute;
  5381. align-self:center;
  5382. padding:2px 2px 2px 2px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u34671_text {
  5387. border-width:0px;
  5388. word-wrap:break-word;
  5389. text-transform:none;
  5390. visibility:hidden;
  5391. }
  5392. #u34672_img {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:9px;
  5398. height:9px;
  5399. }
  5400. #u34672 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:1244px;
  5404. top:429px;
  5405. width:9px;
  5406. height:9px;
  5407. display:flex;
  5408. }
  5409. #u34672 .text {
  5410. position:absolute;
  5411. align-self:center;
  5412. padding:2px 2px 2px 2px;
  5413. box-sizing:border-box;
  5414. width:100%;
  5415. }
  5416. #u34672_text {
  5417. border-width:0px;
  5418. word-wrap:break-word;
  5419. text-transform:none;
  5420. visibility:hidden;
  5421. }
  5422. #u34673_img {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:0px;
  5426. top:0px;
  5427. width:9px;
  5428. height:9px;
  5429. }
  5430. #u34673 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:1244px;
  5434. top:453px;
  5435. width:9px;
  5436. height:9px;
  5437. display:flex;
  5438. }
  5439. #u34673 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:2px 2px 2px 2px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u34673_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. visibility:hidden;
  5451. }
  5452. #u34674_img {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:9px;
  5458. height:9px;
  5459. }
  5460. #u34674 {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:1244px;
  5464. top:477px;
  5465. width:9px;
  5466. height:9px;
  5467. display:flex;
  5468. }
  5469. #u34674 .text {
  5470. position:absolute;
  5471. align-self:center;
  5472. padding:2px 2px 2px 2px;
  5473. box-sizing:border-box;
  5474. width:100%;
  5475. }
  5476. #u34674_text {
  5477. border-width:0px;
  5478. word-wrap:break-word;
  5479. text-transform:none;
  5480. visibility:hidden;
  5481. }
  5482. #u34675_img {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:0px;
  5486. top:0px;
  5487. width:9px;
  5488. height:9px;
  5489. }
  5490. #u34675 {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:1244px;
  5494. top:501px;
  5495. width:9px;
  5496. height:9px;
  5497. display:flex;
  5498. }
  5499. #u34675 .text {
  5500. position:absolute;
  5501. align-self:center;
  5502. padding:2px 2px 2px 2px;
  5503. box-sizing:border-box;
  5504. width:100%;
  5505. }
  5506. #u34675_text {
  5507. border-width:0px;
  5508. word-wrap:break-word;
  5509. text-transform:none;
  5510. visibility:hidden;
  5511. }
  5512. #u34676_img {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:9px;
  5518. height:9px;
  5519. }
  5520. #u34676 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:1244px;
  5524. top:525px;
  5525. width:9px;
  5526. height:9px;
  5527. display:flex;
  5528. }
  5529. #u34676 .text {
  5530. position:absolute;
  5531. align-self:center;
  5532. padding:2px 2px 2px 2px;
  5533. box-sizing:border-box;
  5534. width:100%;
  5535. }
  5536. #u34676_text {
  5537. border-width:0px;
  5538. word-wrap:break-word;
  5539. text-transform:none;
  5540. visibility:hidden;
  5541. }
  5542. #u34677_img {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:9px;
  5548. height:9px;
  5549. }
  5550. #u34677 {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:1244px;
  5554. top:550px;
  5555. width:9px;
  5556. height:9px;
  5557. display:flex;
  5558. }
  5559. #u34677 .text {
  5560. position:absolute;
  5561. align-self:center;
  5562. padding:2px 2px 2px 2px;
  5563. box-sizing:border-box;
  5564. width:100%;
  5565. }
  5566. #u34677_text {
  5567. border-width:0px;
  5568. word-wrap:break-word;
  5569. text-transform:none;
  5570. visibility:hidden;
  5571. }
  5572. #u34678_img {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:0px;
  5576. top:0px;
  5577. width:9px;
  5578. height:9px;
  5579. }
  5580. #u34678 {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:1244px;
  5584. top:574px;
  5585. width:9px;
  5586. height:9px;
  5587. display:flex;
  5588. }
  5589. #u34678 .text {
  5590. position:absolute;
  5591. align-self:center;
  5592. padding:2px 2px 2px 2px;
  5593. box-sizing:border-box;
  5594. width:100%;
  5595. }
  5596. #u34678_text {
  5597. border-width:0px;
  5598. word-wrap:break-word;
  5599. text-transform:none;
  5600. visibility:hidden;
  5601. }
  5602. #u34679_img {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:0px;
  5606. top:0px;
  5607. width:9px;
  5608. height:9px;
  5609. }
  5610. #u34679 {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:1244px;
  5614. top:598px;
  5615. width:9px;
  5616. height:9px;
  5617. display:flex;
  5618. }
  5619. #u34679 .text {
  5620. position:absolute;
  5621. align-self:center;
  5622. padding:2px 2px 2px 2px;
  5623. box-sizing:border-box;
  5624. width:100%;
  5625. }
  5626. #u34679_text {
  5627. border-width:0px;
  5628. word-wrap:break-word;
  5629. text-transform:none;
  5630. visibility:hidden;
  5631. }
  5632. #u34680_img {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:0px;
  5636. top:0px;
  5637. width:9px;
  5638. height:9px;
  5639. }
  5640. #u34680 {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:1244px;
  5644. top:622px;
  5645. width:9px;
  5646. height:9px;
  5647. display:flex;
  5648. }
  5649. #u34680 .text {
  5650. position:absolute;
  5651. align-self:center;
  5652. padding:2px 2px 2px 2px;
  5653. box-sizing:border-box;
  5654. width:100%;
  5655. }
  5656. #u34680_text {
  5657. border-width:0px;
  5658. word-wrap:break-word;
  5659. text-transform:none;
  5660. visibility:hidden;
  5661. }
  5662. #u34681_img {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:9px;
  5668. height:9px;
  5669. }
  5670. #u34681 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:1244px;
  5674. top:646px;
  5675. width:9px;
  5676. height:9px;
  5677. display:flex;
  5678. }
  5679. #u34681 .text {
  5680. position:absolute;
  5681. align-self:center;
  5682. padding:2px 2px 2px 2px;
  5683. box-sizing:border-box;
  5684. width:100%;
  5685. }
  5686. #u34681_text {
  5687. border-width:0px;
  5688. word-wrap:break-word;
  5689. text-transform:none;
  5690. visibility:hidden;
  5691. }
  5692. #u34682_img {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:0px;
  5696. top:0px;
  5697. width:9px;
  5698. height:9px;
  5699. }
  5700. #u34682 {
  5701. border-width:0px;
  5702. position:absolute;
  5703. left:1244px;
  5704. top:670px;
  5705. width:9px;
  5706. height:9px;
  5707. display:flex;
  5708. }
  5709. #u34682 .text {
  5710. position:absolute;
  5711. align-self:center;
  5712. padding:2px 2px 2px 2px;
  5713. box-sizing:border-box;
  5714. width:100%;
  5715. }
  5716. #u34682_text {
  5717. border-width:0px;
  5718. word-wrap:break-word;
  5719. text-transform:none;
  5720. visibility:hidden;
  5721. }
  5722. #u34683_img {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:0px;
  5726. top:0px;
  5727. width:9px;
  5728. height:9px;
  5729. }
  5730. #u34683 {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:1244px;
  5734. top:694px;
  5735. width:9px;
  5736. height:9px;
  5737. display:flex;
  5738. }
  5739. #u34683 .text {
  5740. position:absolute;
  5741. align-self:center;
  5742. padding:2px 2px 2px 2px;
  5743. box-sizing:border-box;
  5744. width:100%;
  5745. }
  5746. #u34683_text {
  5747. border-width:0px;
  5748. word-wrap:break-word;
  5749. text-transform:none;
  5750. visibility:hidden;
  5751. }
  5752. #u34684_div {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:41px;
  5758. height:124px;
  5759. background:inherit;
  5760. background-color:rgba(255, 255, 255, 0);
  5761. border:none;
  5762. border-radius:0px;
  5763. -moz-box-shadow:none;
  5764. -webkit-box-shadow:none;
  5765. box-shadow:none;
  5766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5767. font-weight:400;
  5768. font-style:normal;
  5769. font-size:12px;
  5770. color:rgba(255, 255, 255, 0.698039215686274);
  5771. text-align:left;
  5772. line-height:40px;
  5773. }
  5774. #u34684 {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:43px;
  5778. top:383px;
  5779. width:41px;
  5780. height:124px;
  5781. display:flex;
  5782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5783. font-weight:400;
  5784. font-style:normal;
  5785. font-size:12px;
  5786. color:rgba(255, 255, 255, 0.698039215686274);
  5787. text-align:left;
  5788. line-height:40px;
  5789. }
  5790. #u34684 .text {
  5791. position:absolute;
  5792. align-self:center;
  5793. padding:2px 2px 2px 2px;
  5794. box-sizing:border-box;
  5795. width:100%;
  5796. }
  5797. #u34684_text {
  5798. border-width:0px;
  5799. white-space:nowrap;
  5800. text-transform:none;
  5801. }
  5802. #u34685 {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:0px;
  5808. height:0px;
  5809. }
  5810. #u34686_img {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:240px;
  5816. height:30px;
  5817. }
  5818. #u34686 {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:33px;
  5822. top:303px;
  5823. width:240px;
  5824. height:30px;
  5825. display:flex;
  5826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5827. font-weight:400;
  5828. font-style:normal;
  5829. font-size:12px;
  5830. color:#FFFFFF;
  5831. text-align:left;
  5832. }
  5833. #u34686 .text {
  5834. position:absolute;
  5835. align-self:center;
  5836. padding:2px 2px 2px 10px;
  5837. box-sizing:border-box;
  5838. width:100%;
  5839. }
  5840. #u34686_text {
  5841. border-width:0px;
  5842. word-wrap:break-word;
  5843. text-transform:none;
  5844. visibility:hidden;
  5845. }
  5846. #u34687_div {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:85px;
  5852. height:17px;
  5853. background:inherit;
  5854. background-color:rgba(255, 255, 255, 0);
  5855. border:none;
  5856. border-radius:0px;
  5857. -moz-box-shadow:none;
  5858. -webkit-box-shadow:none;
  5859. box-shadow:none;
  5860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5861. font-weight:400;
  5862. font-style:normal;
  5863. font-size:12px;
  5864. color:#FFFFFF;
  5865. }
  5866. #u34687 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:43px;
  5870. top:308px;
  5871. width:85px;
  5872. height:17px;
  5873. display:flex;
  5874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:12px;
  5878. color:#FFFFFF;
  5879. }
  5880. #u34687 .text {
  5881. position:absolute;
  5882. align-self:flex-start;
  5883. padding:0px 0px 0px 0px;
  5884. box-sizing:border-box;
  5885. width:100%;
  5886. }
  5887. #u34687_text {
  5888. border-width:0px;
  5889. white-space:nowrap;
  5890. text-transform:none;
  5891. }
  5892. #u34688_div {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:0px;
  5896. top:0px;
  5897. width:47px;
  5898. height:124px;
  5899. background:inherit;
  5900. background-color:rgba(255, 255, 255, 0);
  5901. border:none;
  5902. border-radius:0px;
  5903. -moz-box-shadow:none;
  5904. -webkit-box-shadow:none;
  5905. box-shadow:none;
  5906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5907. font-weight:400;
  5908. font-style:normal;
  5909. font-size:12px;
  5910. color:rgba(255, 255, 255, 0.698039215686274);
  5911. text-align:right;
  5912. line-height:40px;
  5913. }
  5914. #u34688 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:207px;
  5918. top:383px;
  5919. width:47px;
  5920. height:124px;
  5921. display:flex;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:12px;
  5926. color:rgba(255, 255, 255, 0.698039215686274);
  5927. text-align:right;
  5928. line-height:40px;
  5929. }
  5930. #u34688 .text {
  5931. position:absolute;
  5932. align-self:center;
  5933. padding:2px 2px 2px 2px;
  5934. box-sizing:border-box;
  5935. width:100%;
  5936. }
  5937. #u34688_text {
  5938. border-width:0px;
  5939. white-space:nowrap;
  5940. text-transform:none;
  5941. }
  5942. #u34689_div {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:39px;
  5948. height:124px;
  5949. background:inherit;
  5950. background-color:rgba(255, 255, 255, 0);
  5951. border:none;
  5952. border-radius:0px;
  5953. -moz-box-shadow:none;
  5954. -webkit-box-shadow:none;
  5955. box-shadow:none;
  5956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5957. font-weight:400;
  5958. font-style:normal;
  5959. font-size:12px;
  5960. color:rgba(255, 255, 255, 0.698039215686274);
  5961. text-align:right;
  5962. line-height:40px;
  5963. }
  5964. #u34689 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:160px;
  5968. top:383px;
  5969. width:39px;
  5970. height:124px;
  5971. display:flex;
  5972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:12px;
  5976. color:rgba(255, 255, 255, 0.698039215686274);
  5977. text-align:right;
  5978. line-height:40px;
  5979. }
  5980. #u34689 .text {
  5981. position:absolute;
  5982. align-self:center;
  5983. padding:2px 2px 2px 2px;
  5984. box-sizing:border-box;
  5985. width:100%;
  5986. }
  5987. #u34689_text {
  5988. border-width:0px;
  5989. white-space:nowrap;
  5990. text-transform:none;
  5991. }
  5992. #u34690_div {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:53px;
  5998. height:30px;
  5999. background:inherit;
  6000. background-color:rgba(245, 154, 35, 0);
  6001. box-sizing:border-box;
  6002. border-width:2px;
  6003. border-style:solid;
  6004. border-color:rgba(245, 154, 35, 1);
  6005. border-left:0px;
  6006. border-top:0px;
  6007. border-right:0px;
  6008. border-radius:0px;
  6009. border-bottom-right-radius:0px;
  6010. border-bottom-left-radius:0px;
  6011. -moz-box-shadow:none;
  6012. -webkit-box-shadow:none;
  6013. box-shadow:none;
  6014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6015. font-weight:400;
  6016. font-style:normal;
  6017. font-size:12px;
  6018. color:#FFFFFF;
  6019. text-align:left;
  6020. }
  6021. #u34690 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:43px;
  6025. top:343px;
  6026. width:53px;
  6027. height:30px;
  6028. display:flex;
  6029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6030. font-weight:400;
  6031. font-style:normal;
  6032. font-size:12px;
  6033. color:#FFFFFF;
  6034. text-align:left;
  6035. }
  6036. #u34690 .text {
  6037. position:absolute;
  6038. align-self:center;
  6039. padding:2px 2px 2px 2px;
  6040. box-sizing:border-box;
  6041. width:100%;
  6042. }
  6043. #u34690_text {
  6044. border-width:0px;
  6045. white-space:nowrap;
  6046. text-transform:none;
  6047. }
  6048. #u34691_div {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:0px;
  6052. top:0px;
  6053. width:53px;
  6054. height:30px;
  6055. background:inherit;
  6056. background-color:rgba(245, 154, 35, 0);
  6057. border:none;
  6058. border-left:0px;
  6059. border-top:0px;
  6060. border-right:0px;
  6061. border-radius:0px;
  6062. border-bottom-right-radius:0px;
  6063. border-bottom-left-radius:0px;
  6064. -moz-box-shadow:none;
  6065. -webkit-box-shadow:none;
  6066. box-shadow:none;
  6067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6068. font-weight:400;
  6069. font-style:normal;
  6070. font-size:12px;
  6071. color:#FFFFFF;
  6072. text-align:left;
  6073. }
  6074. #u34691 {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:106px;
  6078. top:343px;
  6079. width:53px;
  6080. height:30px;
  6081. display:flex;
  6082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6083. font-weight:400;
  6084. font-style:normal;
  6085. font-size:12px;
  6086. color:#FFFFFF;
  6087. text-align:left;
  6088. }
  6089. #u34691 .text {
  6090. position:absolute;
  6091. align-self:center;
  6092. padding:2px 2px 2px 2px;
  6093. box-sizing:border-box;
  6094. width:100%;
  6095. }
  6096. #u34691_text {
  6097. border-width:0px;
  6098. white-space:nowrap;
  6099. text-transform:none;
  6100. }
  6101. #u34692_div {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:0px;
  6105. top:0px;
  6106. width:53px;
  6107. height:30px;
  6108. background:inherit;
  6109. background-color:rgba(245, 154, 35, 0);
  6110. border:none;
  6111. border-left:0px;
  6112. border-top:0px;
  6113. border-right:0px;
  6114. border-radius:0px;
  6115. border-bottom-right-radius:0px;
  6116. border-bottom-left-radius:0px;
  6117. -moz-box-shadow:none;
  6118. -webkit-box-shadow:none;
  6119. box-shadow:none;
  6120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6121. font-weight:400;
  6122. font-style:normal;
  6123. font-size:12px;
  6124. color:#FFFFFF;
  6125. text-align:left;
  6126. }
  6127. #u34692 {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:169px;
  6131. top:343px;
  6132. width:53px;
  6133. height:30px;
  6134. display:flex;
  6135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6136. font-weight:400;
  6137. font-style:normal;
  6138. font-size:12px;
  6139. color:#FFFFFF;
  6140. text-align:left;
  6141. }
  6142. #u34692 .text {
  6143. position:absolute;
  6144. align-self:center;
  6145. padding:2px 2px 2px 2px;
  6146. box-sizing:border-box;
  6147. width:100%;
  6148. }
  6149. #u34692_text {
  6150. border-width:0px;
  6151. white-space:nowrap;
  6152. text-transform:none;
  6153. }
  6154. #u34693 {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:0px;
  6158. top:0px;
  6159. width:0px;
  6160. height:0px;
  6161. }
  6162. #u34694_div {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:0px;
  6166. top:0px;
  6167. width:80px;
  6168. height:40px;
  6169. background:inherit;
  6170. background-color:rgba(245, 154, 35, 0.0980392156862745);
  6171. box-sizing:border-box;
  6172. border-width:1px;
  6173. border-style:solid;
  6174. border-color:rgba(245, 154, 35, 1);
  6175. border-radius:4px;
  6176. -moz-box-shadow:none;
  6177. -webkit-box-shadow:none;
  6178. box-shadow:none;
  6179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. font-size:14px;
  6183. color:#F59A23;
  6184. }
  6185. #u34694 {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:1310px;
  6189. top:87px;
  6190. width:80px;
  6191. height:40px;
  6192. display:flex;
  6193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6194. font-weight:400;
  6195. font-style:normal;
  6196. font-size:14px;
  6197. color:#F59A23;
  6198. }
  6199. #u34694 .text {
  6200. position:absolute;
  6201. align-self:center;
  6202. padding:2px 10px 2px 2px;
  6203. box-sizing:border-box;
  6204. width:100%;
  6205. }
  6206. #u34694_text {
  6207. border-width:0px;
  6208. word-wrap:break-word;
  6209. text-transform:none;
  6210. }
  6211. #u34695_img {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:0px;
  6215. top:0px;
  6216. width:7px;
  6217. height:4px;
  6218. }
  6219. #u34695 {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:1377px;
  6223. top:105px;
  6224. width:7px;
  6225. height:4px;
  6226. display:flex;
  6227. }
  6228. #u34695 .text {
  6229. position:absolute;
  6230. align-self:center;
  6231. padding:2px 2px 2px 2px;
  6232. box-sizing:border-box;
  6233. width:100%;
  6234. }
  6235. #u34695_text {
  6236. border-width:0px;
  6237. word-wrap:break-word;
  6238. text-transform:none;
  6239. visibility:hidden;
  6240. }
  6241. #u34696 {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:0px;
  6245. top:0px;
  6246. width:0px;
  6247. height:0px;
  6248. }
  6249. #u34697 {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:0px;
  6253. top:0px;
  6254. width:0px;
  6255. height:0px;
  6256. }
  6257. #u34698_div {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:57px;
  6263. height:20px;
  6264. background:inherit;
  6265. background-color:rgba(28, 33, 30, 1);
  6266. border:none;
  6267. border-radius:0px;
  6268. -moz-box-shadow:none;
  6269. -webkit-box-shadow:none;
  6270. box-shadow:none;
  6271. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6272. font-weight:500;
  6273. font-style:normal;
  6274. font-size:14px;
  6275. color:#FFFFFF;
  6276. }
  6277. #u34698 {
  6278. border-width:0px;
  6279. position:absolute;
  6280. left:430px;
  6281. top:831px;
  6282. width:57px;
  6283. height:20px;
  6284. display:flex;
  6285. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6286. font-weight:500;
  6287. font-style:normal;
  6288. font-size:14px;
  6289. color:#FFFFFF;
  6290. }
  6291. #u34698 .text {
  6292. position:absolute;
  6293. align-self:flex-start;
  6294. padding:0px 0px 0px 0px;
  6295. box-sizing:border-box;
  6296. width:100%;
  6297. }
  6298. #u34698_text {
  6299. border-width:0px;
  6300. white-space:nowrap;
  6301. text-transform:none;
  6302. }
  6303. #u34699_img {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:33px;
  6309. height:39px;
  6310. }
  6311. #u34699 {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:442px;
  6315. top:790px;
  6316. width:33px;
  6317. height:39px;
  6318. display:flex;
  6319. color:#FFFFFF;
  6320. }
  6321. #u34699 .text {
  6322. position:absolute;
  6323. align-self:center;
  6324. padding:2px 2px 2px 2px;
  6325. box-sizing:border-box;
  6326. width:100%;
  6327. }
  6328. #u34699_text {
  6329. border-width:0px;
  6330. word-wrap:break-word;
  6331. text-transform:none;
  6332. }
  6333. #u34700 {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:0px;
  6339. height:0px;
  6340. }
  6341. #u34701_div {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:57px;
  6347. height:20px;
  6348. background:inherit;
  6349. background-color:rgba(28, 33, 30, 1);
  6350. border:none;
  6351. border-radius:0px;
  6352. -moz-box-shadow:none;
  6353. -webkit-box-shadow:none;
  6354. box-shadow:none;
  6355. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6356. font-weight:500;
  6357. font-style:normal;
  6358. font-size:14px;
  6359. color:#FFFFFF;
  6360. }
  6361. #u34701 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:504px;
  6365. top:831px;
  6366. width:57px;
  6367. height:20px;
  6368. display:flex;
  6369. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6370. font-weight:500;
  6371. font-style:normal;
  6372. font-size:14px;
  6373. color:#FFFFFF;
  6374. }
  6375. #u34701 .text {
  6376. position:absolute;
  6377. align-self:flex-start;
  6378. padding:0px 0px 0px 0px;
  6379. box-sizing:border-box;
  6380. width:100%;
  6381. }
  6382. #u34701_text {
  6383. border-width:0px;
  6384. white-space:nowrap;
  6385. text-transform:none;
  6386. }
  6387. #u34702_img {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:0px;
  6391. top:0px;
  6392. width:33px;
  6393. height:39px;
  6394. }
  6395. #u34702 {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:516px;
  6399. top:790px;
  6400. width:33px;
  6401. height:39px;
  6402. display:flex;
  6403. color:#FFFFFF;
  6404. }
  6405. #u34702 .text {
  6406. position:absolute;
  6407. align-self:center;
  6408. padding:2px 2px 2px 2px;
  6409. box-sizing:border-box;
  6410. width:100%;
  6411. }
  6412. #u34702_text {
  6413. border-width:0px;
  6414. word-wrap:break-word;
  6415. text-transform:none;
  6416. }
  6417. #u34703 {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:0px;
  6421. top:0px;
  6422. width:0px;
  6423. height:0px;
  6424. }
  6425. #u34704_div {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:0px;
  6429. top:0px;
  6430. width:57px;
  6431. height:20px;
  6432. background:inherit;
  6433. background-color:rgba(28, 33, 30, 1);
  6434. border:none;
  6435. border-radius:0px;
  6436. -moz-box-shadow:none;
  6437. -webkit-box-shadow:none;
  6438. box-shadow:none;
  6439. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6440. font-weight:500;
  6441. font-style:normal;
  6442. font-size:14px;
  6443. color:#FFFFFF;
  6444. }
  6445. #u34704 {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:356px;
  6449. top:831px;
  6450. width:57px;
  6451. height:20px;
  6452. display:flex;
  6453. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6454. font-weight:500;
  6455. font-style:normal;
  6456. font-size:14px;
  6457. color:#FFFFFF;
  6458. }
  6459. #u34704 .text {
  6460. position:absolute;
  6461. align-self:flex-start;
  6462. padding:0px 0px 0px 0px;
  6463. box-sizing:border-box;
  6464. width:100%;
  6465. }
  6466. #u34704_text {
  6467. border-width:0px;
  6468. white-space:nowrap;
  6469. text-transform:none;
  6470. }
  6471. #u34705_img {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:0px;
  6475. top:0px;
  6476. width:33px;
  6477. height:39px;
  6478. }
  6479. #u34705 {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:368px;
  6483. top:790px;
  6484. width:33px;
  6485. height:39px;
  6486. display:flex;
  6487. color:#FFFFFF;
  6488. }
  6489. #u34705 .text {
  6490. position:absolute;
  6491. align-self:center;
  6492. padding:2px 2px 2px 2px;
  6493. box-sizing:border-box;
  6494. width:100%;
  6495. }
  6496. #u34705_text {
  6497. border-width:0px;
  6498. word-wrap:break-word;
  6499. text-transform:none;
  6500. }
  6501. #u34706 {
  6502. border-width:0px;
  6503. position:absolute;
  6504. left:0px;
  6505. top:0px;
  6506. width:0px;
  6507. height:0px;
  6508. }
  6509. #u34707_div {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:0px;
  6513. top:0px;
  6514. width:57px;
  6515. height:20px;
  6516. background:inherit;
  6517. background-color:rgba(28, 33, 30, 1);
  6518. border:none;
  6519. border-radius:0px;
  6520. -moz-box-shadow:none;
  6521. -webkit-box-shadow:none;
  6522. box-shadow:none;
  6523. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6524. font-weight:500;
  6525. font-style:normal;
  6526. font-size:14px;
  6527. color:#FFFFFF;
  6528. }
  6529. #u34707 {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:579px;
  6533. top:831px;
  6534. width:57px;
  6535. height:20px;
  6536. display:flex;
  6537. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6538. font-weight:500;
  6539. font-style:normal;
  6540. font-size:14px;
  6541. color:#FFFFFF;
  6542. }
  6543. #u34707 .text {
  6544. position:absolute;
  6545. align-self:flex-start;
  6546. padding:0px 0px 0px 0px;
  6547. box-sizing:border-box;
  6548. width:100%;
  6549. }
  6550. #u34707_text {
  6551. border-width:0px;
  6552. white-space:nowrap;
  6553. text-transform:none;
  6554. }
  6555. #u34708_img {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:33px;
  6561. height:39px;
  6562. }
  6563. #u34708 {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:591px;
  6567. top:790px;
  6568. width:33px;
  6569. height:39px;
  6570. display:flex;
  6571. color:#FFFFFF;
  6572. }
  6573. #u34708 .text {
  6574. position:absolute;
  6575. align-self:center;
  6576. padding:2px 2px 2px 2px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u34708_text {
  6581. border-width:0px;
  6582. word-wrap:break-word;
  6583. text-transform:none;
  6584. }
  6585. #u34709 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:0px;
  6589. top:0px;
  6590. width:0px;
  6591. height:0px;
  6592. }
  6593. #u34710_div {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:0px;
  6597. top:0px;
  6598. width:57px;
  6599. height:20px;
  6600. background:inherit;
  6601. background-color:rgba(28, 33, 30, 1);
  6602. border:none;
  6603. border-radius:0px;
  6604. -moz-box-shadow:none;
  6605. -webkit-box-shadow:none;
  6606. box-shadow:none;
  6607. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6608. font-weight:500;
  6609. font-style:normal;
  6610. font-size:14px;
  6611. color:#FFFFFF;
  6612. }
  6613. #u34710 {
  6614. border-width:0px;
  6615. position:absolute;
  6616. left:728px;
  6617. top:831px;
  6618. width:57px;
  6619. height:20px;
  6620. display:flex;
  6621. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6622. font-weight:500;
  6623. font-style:normal;
  6624. font-size:14px;
  6625. color:#FFFFFF;
  6626. }
  6627. #u34710 .text {
  6628. position:absolute;
  6629. align-self:flex-start;
  6630. padding:0px 0px 0px 0px;
  6631. box-sizing:border-box;
  6632. width:100%;
  6633. }
  6634. #u34710_text {
  6635. border-width:0px;
  6636. white-space:nowrap;
  6637. text-transform:none;
  6638. }
  6639. #u34711_img {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:0px;
  6643. top:0px;
  6644. width:33px;
  6645. height:39px;
  6646. }
  6647. #u34711 {
  6648. border-width:0px;
  6649. position:absolute;
  6650. left:740px;
  6651. top:790px;
  6652. width:33px;
  6653. height:39px;
  6654. display:flex;
  6655. color:#FFFFFF;
  6656. }
  6657. #u34711 .text {
  6658. position:absolute;
  6659. align-self:center;
  6660. padding:2px 2px 2px 2px;
  6661. box-sizing:border-box;
  6662. width:100%;
  6663. }
  6664. #u34711_text {
  6665. border-width:0px;
  6666. word-wrap:break-word;
  6667. text-transform:none;
  6668. }
  6669. #u34712 {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:0px;
  6673. top:0px;
  6674. width:0px;
  6675. height:0px;
  6676. }
  6677. #u34713_div {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:0px;
  6681. top:0px;
  6682. width:57px;
  6683. height:20px;
  6684. background:inherit;
  6685. background-color:rgba(28, 33, 30, 1);
  6686. border:none;
  6687. border-radius:0px;
  6688. -moz-box-shadow:none;
  6689. -webkit-box-shadow:none;
  6690. box-shadow:none;
  6691. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6692. font-weight:500;
  6693. font-style:normal;
  6694. font-size:14px;
  6695. color:#FFFFFF;
  6696. }
  6697. #u34713 {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:802px;
  6701. top:831px;
  6702. width:57px;
  6703. height:20px;
  6704. display:flex;
  6705. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6706. font-weight:500;
  6707. font-style:normal;
  6708. font-size:14px;
  6709. color:#FFFFFF;
  6710. }
  6711. #u34713 .text {
  6712. position:absolute;
  6713. align-self:flex-start;
  6714. padding:0px 0px 0px 0px;
  6715. box-sizing:border-box;
  6716. width:100%;
  6717. }
  6718. #u34713_text {
  6719. border-width:0px;
  6720. white-space:nowrap;
  6721. text-transform:none;
  6722. }
  6723. #u34714_img {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:0px;
  6727. top:0px;
  6728. width:33px;
  6729. height:39px;
  6730. }
  6731. #u34714 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:814px;
  6735. top:790px;
  6736. width:33px;
  6737. height:39px;
  6738. display:flex;
  6739. color:#FFFFFF;
  6740. }
  6741. #u34714 .text {
  6742. position:absolute;
  6743. align-self:center;
  6744. padding:2px 2px 2px 2px;
  6745. box-sizing:border-box;
  6746. width:100%;
  6747. }
  6748. #u34714_text {
  6749. border-width:0px;
  6750. word-wrap:break-word;
  6751. text-transform:none;
  6752. }
  6753. #u34715 {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:0px;
  6759. height:0px;
  6760. }
  6761. #u34716_div {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:0px;
  6765. top:0px;
  6766. width:59px;
  6767. height:20px;
  6768. background:inherit;
  6769. background-color:rgba(28, 33, 30, 1);
  6770. border:none;
  6771. border-radius:0px;
  6772. -moz-box-shadow:none;
  6773. -webkit-box-shadow:none;
  6774. box-shadow:none;
  6775. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6776. font-weight:500;
  6777. font-style:normal;
  6778. font-size:14px;
  6779. color:#FFFFFF;
  6780. }
  6781. #u34716 {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:654px;
  6785. top:831px;
  6786. width:59px;
  6787. height:20px;
  6788. display:flex;
  6789. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6790. font-weight:500;
  6791. font-style:normal;
  6792. font-size:14px;
  6793. color:#FFFFFF;
  6794. }
  6795. #u34716 .text {
  6796. position:absolute;
  6797. align-self:flex-start;
  6798. padding:0px 0px 0px 0px;
  6799. box-sizing:border-box;
  6800. width:100%;
  6801. }
  6802. #u34716_text {
  6803. border-width:0px;
  6804. word-wrap:break-word;
  6805. text-transform:none;
  6806. }
  6807. #u34717_img {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:0px;
  6811. top:0px;
  6812. width:33px;
  6813. height:39px;
  6814. }
  6815. #u34717 {
  6816. border-width:0px;
  6817. position:absolute;
  6818. left:665px;
  6819. top:790px;
  6820. width:33px;
  6821. height:39px;
  6822. display:flex;
  6823. color:#FFFFFF;
  6824. }
  6825. #u34717 .text {
  6826. position:absolute;
  6827. align-self:center;
  6828. padding:2px 2px 2px 2px;
  6829. box-sizing:border-box;
  6830. width:100%;
  6831. }
  6832. #u34717_text {
  6833. border-width:0px;
  6834. word-wrap:break-word;
  6835. text-transform:none;
  6836. }
  6837. #u34718 {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:0px;
  6841. top:0px;
  6842. width:0px;
  6843. height:0px;
  6844. }
  6845. #u34719_div {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:0px;
  6849. top:0px;
  6850. width:71px;
  6851. height:20px;
  6852. background:inherit;
  6853. background-color:rgba(28, 33, 30, 1);
  6854. border:none;
  6855. border-radius:0px;
  6856. -moz-box-shadow:none;
  6857. -webkit-box-shadow:none;
  6858. box-shadow:none;
  6859. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6860. font-weight:500;
  6861. font-style:normal;
  6862. font-size:14px;
  6863. color:#FFFFFF;
  6864. }
  6865. #u34719 {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:869px;
  6869. top:831px;
  6870. width:71px;
  6871. height:20px;
  6872. display:flex;
  6873. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6874. font-weight:500;
  6875. font-style:normal;
  6876. font-size:14px;
  6877. color:#FFFFFF;
  6878. }
  6879. #u34719 .text {
  6880. position:absolute;
  6881. align-self:flex-start;
  6882. padding:0px 0px 0px 0px;
  6883. box-sizing:border-box;
  6884. width:100%;
  6885. }
  6886. #u34719_text {
  6887. border-width:0px;
  6888. white-space:nowrap;
  6889. text-transform:none;
  6890. }
  6891. #u34720_img {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:0px;
  6895. top:0px;
  6896. width:33px;
  6897. height:39px;
  6898. }
  6899. #u34720 {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:887px;
  6903. top:790px;
  6904. width:33px;
  6905. height:39px;
  6906. display:flex;
  6907. color:#FFFFFF;
  6908. }
  6909. #u34720 .text {
  6910. position:absolute;
  6911. align-self:center;
  6912. padding:2px 2px 2px 2px;
  6913. box-sizing:border-box;
  6914. width:100%;
  6915. }
  6916. #u34720_text {
  6917. border-width:0px;
  6918. word-wrap:break-word;
  6919. text-transform:none;
  6920. }
  6921. #u34721 {
  6922. border-width:0px;
  6923. position:absolute;
  6924. left:0px;
  6925. top:0px;
  6926. width:0px;
  6927. height:0px;
  6928. }
  6929. #u34722_div {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:0px;
  6933. top:0px;
  6934. width:68px;
  6935. height:20px;
  6936. background:inherit;
  6937. background-color:rgba(28, 33, 30, 1);
  6938. border:none;
  6939. border-radius:0px;
  6940. -moz-box-shadow:none;
  6941. -webkit-box-shadow:none;
  6942. box-shadow:none;
  6943. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6944. font-weight:500;
  6945. font-style:normal;
  6946. font-size:14px;
  6947. color:#FFFFFF;
  6948. text-align:center;
  6949. }
  6950. #u34722 {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:945px;
  6954. top:831px;
  6955. width:68px;
  6956. height:20px;
  6957. display:flex;
  6958. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6959. font-weight:500;
  6960. font-style:normal;
  6961. font-size:14px;
  6962. color:#FFFFFF;
  6963. text-align:center;
  6964. }
  6965. #u34722 .text {
  6966. position:absolute;
  6967. align-self:flex-start;
  6968. padding:0px 0px 0px 0px;
  6969. box-sizing:border-box;
  6970. width:100%;
  6971. }
  6972. #u34722_text {
  6973. border-width:0px;
  6974. word-wrap:break-word;
  6975. text-transform:none;
  6976. }
  6977. #u34723_img {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:0px;
  6981. top:0px;
  6982. width:33px;
  6983. height:39px;
  6984. }
  6985. #u34723 {
  6986. border-width:0px;
  6987. position:absolute;
  6988. left:961px;
  6989. top:790px;
  6990. width:33px;
  6991. height:39px;
  6992. display:flex;
  6993. color:#FFFFFF;
  6994. }
  6995. #u34723 .text {
  6996. position:absolute;
  6997. align-self:center;
  6998. padding:2px 2px 2px 2px;
  6999. box-sizing:border-box;
  7000. width:100%;
  7001. }
  7002. #u34723_text {
  7003. border-width:0px;
  7004. word-wrap:break-word;
  7005. text-transform:none;
  7006. }
  7007. #u34724 {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:0px;
  7011. top:0px;
  7012. width:0px;
  7013. height:0px;
  7014. }
  7015. #u34725_div {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:0px;
  7019. top:0px;
  7020. width:60px;
  7021. height:20px;
  7022. background:inherit;
  7023. background-color:rgba(28, 33, 30, 1);
  7024. border:none;
  7025. border-radius:0px;
  7026. -moz-box-shadow:none;
  7027. -webkit-box-shadow:none;
  7028. box-shadow:none;
  7029. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7030. font-weight:500;
  7031. font-style:normal;
  7032. font-size:14px;
  7033. color:#FFFFFF;
  7034. }
  7035. #u34725 {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:1024px;
  7039. top:831px;
  7040. width:60px;
  7041. height:20px;
  7042. display:flex;
  7043. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7044. font-weight:500;
  7045. font-style:normal;
  7046. font-size:14px;
  7047. color:#FFFFFF;
  7048. }
  7049. #u34725 .text {
  7050. position:absolute;
  7051. align-self:flex-start;
  7052. padding:0px 0px 0px 0px;
  7053. box-sizing:border-box;
  7054. width:100%;
  7055. }
  7056. #u34725_text {
  7057. border-width:0px;
  7058. word-wrap:break-word;
  7059. text-transform:none;
  7060. }
  7061. #u34726_img {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:0px;
  7065. top:0px;
  7066. width:33px;
  7067. height:39px;
  7068. }
  7069. #u34726 {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:1036px;
  7073. top:790px;
  7074. width:33px;
  7075. height:39px;
  7076. display:flex;
  7077. color:#FFFFFF;
  7078. }
  7079. #u34726 .text {
  7080. position:absolute;
  7081. align-self:center;
  7082. padding:2px 2px 2px 2px;
  7083. box-sizing:border-box;
  7084. width:100%;
  7085. }
  7086. #u34726_text {
  7087. border-width:0px;
  7088. word-wrap:break-word;
  7089. text-transform:none;
  7090. }
  7091. #u34727 {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:0px;
  7095. top:0px;
  7096. width:0px;
  7097. height:0px;
  7098. }
  7099. #u34728_div {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:0px;
  7103. top:0px;
  7104. width:60px;
  7105. height:20px;
  7106. background:inherit;
  7107. background-color:rgba(28, 33, 30, 1);
  7108. border:none;
  7109. border-radius:0px;
  7110. -moz-box-shadow:none;
  7111. -webkit-box-shadow:none;
  7112. box-shadow:none;
  7113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7114. font-weight:500;
  7115. font-style:normal;
  7116. font-size:14px;
  7117. color:#FFFFFF;
  7118. }
  7119. #u34728 {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:1098px;
  7123. top:831px;
  7124. width:60px;
  7125. height:20px;
  7126. display:flex;
  7127. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7128. font-weight:500;
  7129. font-style:normal;
  7130. font-size:14px;
  7131. color:#FFFFFF;
  7132. }
  7133. #u34728 .text {
  7134. position:absolute;
  7135. align-self:flex-start;
  7136. padding:0px 0px 0px 0px;
  7137. box-sizing:border-box;
  7138. width:100%;
  7139. }
  7140. #u34728_text {
  7141. border-width:0px;
  7142. word-wrap:break-word;
  7143. text-transform:none;
  7144. }
  7145. #u34729_img {
  7146. border-width:0px;
  7147. position:absolute;
  7148. left:0px;
  7149. top:0px;
  7150. width:33px;
  7151. height:39px;
  7152. }
  7153. #u34729 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:1110px;
  7157. top:790px;
  7158. width:33px;
  7159. height:39px;
  7160. display:flex;
  7161. color:#FFFFFF;
  7162. }
  7163. #u34729 .text {
  7164. position:absolute;
  7165. align-self:center;
  7166. padding:2px 2px 2px 2px;
  7167. box-sizing:border-box;
  7168. width:100%;
  7169. }
  7170. #u34729_text {
  7171. border-width:0px;
  7172. word-wrap:break-word;
  7173. text-transform:none;
  7174. }
  7175. #u34730_div {
  7176. border-width:0px;
  7177. position:absolute;
  7178. left:0px;
  7179. top:0px;
  7180. width:57px;
  7181. height:20px;
  7182. background:inherit;
  7183. background-color:rgba(28, 33, 30, 1);
  7184. border:none;
  7185. border-radius:0px;
  7186. -moz-box-shadow:none;
  7187. -webkit-box-shadow:none;
  7188. box-shadow:none;
  7189. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7190. font-weight:500;
  7191. font-style:normal;
  7192. font-size:14px;
  7193. color:#F59A23;
  7194. text-align:center;
  7195. }
  7196. #u34730 {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:1098px;
  7200. top:831px;
  7201. width:57px;
  7202. height:20px;
  7203. display:flex;
  7204. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7205. font-weight:500;
  7206. font-style:normal;
  7207. font-size:14px;
  7208. color:#F59A23;
  7209. text-align:center;
  7210. }
  7211. #u34730 .text {
  7212. position:absolute;
  7213. align-self:flex-start;
  7214. padding:0px 0px 0px 0px;
  7215. box-sizing:border-box;
  7216. width:100%;
  7217. }
  7218. #u34730_text {
  7219. border-width:0px;
  7220. white-space:nowrap;
  7221. text-transform:none;
  7222. }