styles.css 168 KB

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