styles.css 150 KB

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