styles.css 168 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298
  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. #u41796 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u41798 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u41799_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. #u41799 {
  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. #u41799 .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. #u41799_text {
  71. border-width:0px;
  72. white-space:nowrap;
  73. text-transform:none;
  74. }
  75. #u41800_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. #u41800 {
  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. #u41800 .text {
  102. position:absolute;
  103. align-self:center;
  104. padding:2px 2px 2px 2px;
  105. box-sizing:border-box;
  106. width:100%;
  107. }
  108. #u41800_text {
  109. border-width:0px;
  110. word-wrap:break-word;
  111. text-transform:none;
  112. visibility:hidden;
  113. }
  114. #u41801 {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:0px;
  120. height:0px;
  121. }
  122. #u41802_img {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:31px;
  128. height:31px;
  129. }
  130. #u41802 {
  131. border-width:0px;
  132. position:absolute;
  133. left:19px;
  134. top:10px;
  135. width:31px;
  136. height:31px;
  137. display:flex;
  138. }
  139. #u41802 .text {
  140. position:absolute;
  141. align-self:center;
  142. padding:2px 2px 2px 2px;
  143. box-sizing:border-box;
  144. width:100%;
  145. }
  146. #u41802_text {
  147. border-width:0px;
  148. word-wrap:break-word;
  149. text-transform:none;
  150. }
  151. #u41803_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. #u41803 {
  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. #u41803 .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. #u41803_text {
  193. border-width:0px;
  194. white-space:nowrap;
  195. text-transform:none;
  196. }
  197. #u41804_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. #u41804 {
  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. #u41804 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:2px 2px 2px 2px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u41804_text {
  231. border-width:0px;
  232. word-wrap:break-word;
  233. text-transform:none;
  234. visibility:hidden;
  235. }
  236. #u41805_img {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:15px;
  242. height:15px;
  243. }
  244. #u41805 {
  245. border-width:0px;
  246. position:absolute;
  247. left:1523px;
  248. top:18px;
  249. width:15px;
  250. height:15px;
  251. display:flex;
  252. }
  253. #u41805 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u41805_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u41806_img {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:15px;
  272. height:15px;
  273. }
  274. #u41806 {
  275. border-width:0px;
  276. position:absolute;
  277. left:1493px;
  278. top:18px;
  279. width:15px;
  280. height:15px;
  281. display:flex;
  282. }
  283. #u41806 .text {
  284. position:absolute;
  285. align-self:center;
  286. padding:2px 2px 2px 2px;
  287. box-sizing:border-box;
  288. width:100%;
  289. }
  290. #u41806_text {
  291. border-width:0px;
  292. word-wrap:break-word;
  293. text-transform:none;
  294. visibility:hidden;
  295. }
  296. #u41807 {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:0px;
  302. height:0px;
  303. }
  304. #u41808_img {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:14px;
  310. height:14px;
  311. }
  312. #u41808 {
  313. border-width:0px;
  314. position:absolute;
  315. left:1553px;
  316. top:18px;
  317. width:14px;
  318. height:14px;
  319. display:flex;
  320. }
  321. #u41808 .text {
  322. position:absolute;
  323. align-self:center;
  324. padding:2px 2px 2px 2px;
  325. box-sizing:border-box;
  326. width:100%;
  327. }
  328. #u41808_text {
  329. border-width:0px;
  330. word-wrap:break-word;
  331. text-transform:none;
  332. visibility:hidden;
  333. }
  334. #u41809_img {
  335. border-width:0px;
  336. position:absolute;
  337. left:0px;
  338. top:0px;
  339. width:8px;
  340. height:5px;
  341. }
  342. #u41809 {
  343. border-width:0px;
  344. position:absolute;
  345. left:1572px;
  346. top:23px;
  347. width:8px;
  348. height:5px;
  349. display:flex;
  350. }
  351. #u41809 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:2px 2px 2px 2px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u41809_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. visibility:hidden;
  363. }
  364. #u41810_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. #u41810 {
  380. border-width:0px;
  381. position:absolute;
  382. left:198px;
  383. top:47px;
  384. width:1402px;
  385. height:1200px;
  386. display:flex;
  387. }
  388. #u41810 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 2px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u41810_text {
  396. border-width:0px;
  397. word-wrap:break-word;
  398. text-transform:none;
  399. visibility:hidden;
  400. }
  401. #u41811 {
  402. border-width:0px;
  403. position:absolute;
  404. left:35px;
  405. top:81px;
  406. width:118px;
  407. height:220px;
  408. }
  409. #u41811_children {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:0px;
  415. height:0px;
  416. }
  417. #u41812 {
  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. #u41813_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. #u41813 {
  446. border-width:0px;
  447. position:absolute;
  448. left:22px;
  449. top:0px;
  450. width:76px;
  451. height:20px;
  452. display:flex;
  453. }
  454. #u41813 .text {
  455. position:absolute;
  456. align-self:center;
  457. padding:2px 2px 2px 3px;
  458. box-sizing:border-box;
  459. width:100%;
  460. }
  461. #u41813_text {
  462. border-width:0px;
  463. white-space:nowrap;
  464. text-transform:none;
  465. }
  466. #u41814 {
  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. #u41815_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:9px;
  485. height:9px;
  486. }
  487. #u41815 {
  488. border-width:0px;
  489. position:absolute;
  490. left:6px;
  491. top:6px;
  492. width:9px;
  493. height:9px;
  494. display:flex;
  495. }
  496. #u41815 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u41815_img.selected {
  504. }
  505. #u41815.selected {
  506. }
  507. #u41815_text {
  508. border-width:0px;
  509. word-wrap:break-word;
  510. text-transform:none;
  511. visibility:hidden;
  512. }
  513. #u41816_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. #u41816 {
  529. border-width:0px;
  530. position:absolute;
  531. left:22px;
  532. top:0px;
  533. width:62px;
  534. height:20px;
  535. display:flex;
  536. }
  537. #u41816 .text {
  538. position:absolute;
  539. align-self:center;
  540. padding:2px 2px 2px 3px;
  541. box-sizing:border-box;
  542. width:100%;
  543. }
  544. #u41816_text {
  545. border-width:0px;
  546. white-space:nowrap;
  547. text-transform:none;
  548. }
  549. #u41814_children {
  550. border-width:0px;
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:0px;
  555. height:0px;
  556. }
  557. #u41817 {
  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. #u41818_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. #u41818 {
  586. border-width:0px;
  587. position:absolute;
  588. left:22px;
  589. top:0px;
  590. width:76px;
  591. height:20px;
  592. display:flex;
  593. }
  594. #u41818 .text {
  595. position:absolute;
  596. align-self:center;
  597. padding:2px 2px 2px 3px;
  598. box-sizing:border-box;
  599. width:100%;
  600. }
  601. #u41818_text {
  602. border-width:0px;
  603. white-space:nowrap;
  604. text-transform:none;
  605. }
  606. #u41819 {
  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. #u41820_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. #u41820 {
  635. border-width:0px;
  636. position:absolute;
  637. left:22px;
  638. top:0px;
  639. width:76px;
  640. height:20px;
  641. display:flex;
  642. }
  643. #u41820 .text {
  644. position:absolute;
  645. align-self:center;
  646. padding:2px 2px 2px 3px;
  647. box-sizing:border-box;
  648. width:100%;
  649. }
  650. #u41820_text {
  651. border-width:0px;
  652. white-space:nowrap;
  653. text-transform:none;
  654. }
  655. #u41821 {
  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. #u41822_img {
  669. border-width:0px;
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:9px;
  674. height:9px;
  675. }
  676. #u41822 {
  677. border-width:0px;
  678. position:absolute;
  679. left:6px;
  680. top:6px;
  681. width:9px;
  682. height:9px;
  683. display:flex;
  684. }
  685. #u41822 .text {
  686. position:absolute;
  687. align-self:center;
  688. padding:2px 2px 2px 2px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u41822_img.selected {
  693. }
  694. #u41822.selected {
  695. }
  696. #u41822_text {
  697. border-width:0px;
  698. word-wrap:break-word;
  699. text-transform:none;
  700. visibility:hidden;
  701. }
  702. #u41823_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. #u41823 {
  718. border-width:0px;
  719. position:absolute;
  720. left:22px;
  721. top:0px;
  722. width:62px;
  723. height:20px;
  724. display:flex;
  725. }
  726. #u41823 .text {
  727. position:absolute;
  728. align-self:center;
  729. padding:2px 2px 2px 3px;
  730. box-sizing:border-box;
  731. width:100%;
  732. }
  733. #u41823_text {
  734. border-width:0px;
  735. white-space:nowrap;
  736. text-transform:none;
  737. }
  738. #u41821_children {
  739. border-width:0px;
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:0px;
  744. height:0px;
  745. }
  746. #u41824 {
  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. #u41825_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. #u41825 {
  775. border-width:0px;
  776. position:absolute;
  777. left:22px;
  778. top:0px;
  779. width:76px;
  780. height:20px;
  781. display:flex;
  782. }
  783. #u41825 .text {
  784. position:absolute;
  785. align-self:center;
  786. padding:2px 2px 2px 3px;
  787. box-sizing:border-box;
  788. width:100%;
  789. }
  790. #u41825_text {
  791. border-width:0px;
  792. white-space:nowrap;
  793. text-transform:none;
  794. }
  795. #u41826 {
  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. #u41827_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. #u41827 {
  824. border-width:0px;
  825. position:absolute;
  826. left:22px;
  827. top:0px;
  828. width:76px;
  829. height:20px;
  830. display:flex;
  831. }
  832. #u41827 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 3px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u41827_text {
  840. border-width:0px;
  841. white-space:nowrap;
  842. text-transform:none;
  843. }
  844. #u41828 {
  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. #u41829_img {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:9px;
  863. height:9px;
  864. }
  865. #u41829 {
  866. border-width:0px;
  867. position:absolute;
  868. left:6px;
  869. top:6px;
  870. width:9px;
  871. height:9px;
  872. display:flex;
  873. }
  874. #u41829 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u41829_img.selected {
  882. }
  883. #u41829.selected {
  884. }
  885. #u41829_text {
  886. border-width:0px;
  887. word-wrap:break-word;
  888. text-transform:none;
  889. visibility:hidden;
  890. }
  891. #u41830_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. #u41830 {
  907. border-width:0px;
  908. position:absolute;
  909. left:22px;
  910. top:0px;
  911. width:62px;
  912. height:20px;
  913. display:flex;
  914. }
  915. #u41830 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 3px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u41830_text {
  923. border-width:0px;
  924. white-space:nowrap;
  925. text-transform:none;
  926. }
  927. #u41828_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. #u41831 {
  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. #u41832_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. #u41832 {
  965. border-width:0px;
  966. position:absolute;
  967. left:22px;
  968. top:0px;
  969. width:62px;
  970. height:20px;
  971. display:flex;
  972. }
  973. #u41832 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 3px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u41832_text {
  981. border-width:0px;
  982. white-space:nowrap;
  983. text-transform:none;
  984. }
  985. #u41833 {
  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. #u41834_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. #u41834 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:22px;
  1017. top:0px;
  1018. width:62px;
  1019. height:20px;
  1020. display:flex;
  1021. }
  1022. #u41834 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:2px 2px 2px 3px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u41834_text {
  1030. border-width:0px;
  1031. white-space:nowrap;
  1032. text-transform:none;
  1033. }
  1034. #u41835 {
  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. #u41836_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. #u41836 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:22px;
  1066. top:0px;
  1067. width:62px;
  1068. height:20px;
  1069. display:flex;
  1070. }
  1071. #u41836 .text {
  1072. position:absolute;
  1073. align-self:center;
  1074. padding:2px 2px 2px 3px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u41836_text {
  1079. border-width:0px;
  1080. white-space:nowrap;
  1081. text-transform:none;
  1082. }
  1083. #u41837 {
  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. #u41838_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. #u41838 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:22px;
  1115. top:0px;
  1116. width:62px;
  1117. height:20px;
  1118. display:flex;
  1119. }
  1120. #u41838 .text {
  1121. position:absolute;
  1122. align-self:center;
  1123. padding:2px 2px 2px 3px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u41838_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u41839 {
  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. #u41840_img {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:9px;
  1151. height:9px;
  1152. }
  1153. #u41840 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:6px;
  1157. top:6px;
  1158. width:9px;
  1159. height:9px;
  1160. display:flex;
  1161. }
  1162. #u41840 .text {
  1163. position:absolute;
  1164. align-self:center;
  1165. padding:2px 2px 2px 2px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u41840_img.selected {
  1170. }
  1171. #u41840.selected {
  1172. }
  1173. #u41840_text {
  1174. border-width:0px;
  1175. word-wrap:break-word;
  1176. text-transform:none;
  1177. visibility:hidden;
  1178. }
  1179. #u41841_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. #u41841 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:22px;
  1198. top:0px;
  1199. width:76px;
  1200. height:20px;
  1201. display:flex;
  1202. }
  1203. #u41841 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:2px 2px 2px 3px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u41841_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u41839_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. #u41842 {
  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. #u41843_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. #u41843 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:22px;
  1256. top:0px;
  1257. width:76px;
  1258. height:20px;
  1259. display:flex;
  1260. }
  1261. #u41843 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 3px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u41843_text {
  1269. border-width:0px;
  1270. white-space:nowrap;
  1271. text-transform:none;
  1272. }
  1273. #u41844 {
  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. #u41845_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. #u41845 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:22px;
  1305. top:0px;
  1306. width:76px;
  1307. height:20px;
  1308. display:flex;
  1309. }
  1310. #u41845 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:2px 2px 2px 3px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u41845_text {
  1318. border-width:0px;
  1319. white-space:nowrap;
  1320. text-transform:none;
  1321. }
  1322. #u41846 {
  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. #u41847_img {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:9px;
  1341. height:9px;
  1342. }
  1343. #u41847 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:6px;
  1347. top:6px;
  1348. width:9px;
  1349. height:9px;
  1350. display:flex;
  1351. }
  1352. #u41847 .text {
  1353. position:absolute;
  1354. align-self:center;
  1355. padding:2px 2px 2px 2px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u41847_img.selected {
  1360. }
  1361. #u41847.selected {
  1362. }
  1363. #u41847_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. visibility:hidden;
  1368. }
  1369. #u41848_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. #u41848 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:22px;
  1388. top:0px;
  1389. width:62px;
  1390. height:20px;
  1391. display:flex;
  1392. }
  1393. #u41848 .text {
  1394. position:absolute;
  1395. align-self:center;
  1396. padding:2px 2px 2px 3px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u41848_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u41846_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. #u41849 {
  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. #u41850_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. #u41850 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:22px;
  1446. top:0px;
  1447. width:76px;
  1448. height:20px;
  1449. display:flex;
  1450. }
  1451. #u41850 .text {
  1452. position:absolute;
  1453. align-self:center;
  1454. padding:2px 2px 2px 3px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u41850_text {
  1459. border-width:0px;
  1460. white-space:nowrap;
  1461. text-transform:none;
  1462. }
  1463. #u41851 {
  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. #u41852_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. #u41852 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:22px;
  1495. top:0px;
  1496. width:62px;
  1497. height:20px;
  1498. display:flex;
  1499. }
  1500. #u41852 .text {
  1501. position:absolute;
  1502. align-self:center;
  1503. padding:2px 2px 2px 3px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u41852_text {
  1508. border-width:0px;
  1509. white-space:nowrap;
  1510. text-transform:none;
  1511. }
  1512. #u41853 {
  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. #u41854_img {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:9px;
  1531. height:9px;
  1532. }
  1533. #u41854 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:6px;
  1537. top:6px;
  1538. width:9px;
  1539. height:9px;
  1540. display:flex;
  1541. }
  1542. #u41854 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u41854_img.selected {
  1550. }
  1551. #u41854.selected {
  1552. }
  1553. #u41854_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. visibility:hidden;
  1558. }
  1559. #u41855_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. #u41855 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:22px;
  1578. top:0px;
  1579. width:62px;
  1580. height:20px;
  1581. display:flex;
  1582. }
  1583. #u41855 .text {
  1584. position:absolute;
  1585. align-self:center;
  1586. padding:2px 2px 2px 3px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u41855_text {
  1591. border-width:0px;
  1592. white-space:nowrap;
  1593. text-transform:none;
  1594. }
  1595. #u41853_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. #u41856 {
  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. #u41857_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. #u41857 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:22px;
  1636. top:0px;
  1637. width:62px;
  1638. height:20px;
  1639. display:flex;
  1640. }
  1641. #u41857 .text {
  1642. position:absolute;
  1643. align-self:center;
  1644. padding:2px 2px 2px 3px;
  1645. box-sizing:border-box;
  1646. width:100%;
  1647. }
  1648. #u41857_text {
  1649. border-width:0px;
  1650. white-space:nowrap;
  1651. text-transform:none;
  1652. }
  1653. #u41858 {
  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. #u41859_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. #u41859 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:22px;
  1685. top:0px;
  1686. width:62px;
  1687. height:20px;
  1688. display:flex;
  1689. }
  1690. #u41859 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 3px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u41859_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u41860 {
  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. #u41861_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. #u41861 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:22px;
  1734. top:0px;
  1735. width:62px;
  1736. height:20px;
  1737. display:flex;
  1738. }
  1739. #u41861 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 3px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u41861_text {
  1747. border-width:0px;
  1748. white-space:nowrap;
  1749. text-transform:none;
  1750. }
  1751. #u41862 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u41863_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. #u41863_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. #u41863_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. #u41863 {
  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. #u41863 .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. #u41863_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. #u41863.disabled {
  1850. }
  1851. .u41863_input_option {
  1852. font-size:14px;
  1853. }
  1854. #u41864_img {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:22px;
  1860. height:22px;
  1861. }
  1862. #u41864 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:216px;
  1866. top:15px;
  1867. width:22px;
  1868. height:22px;
  1869. display:flex;
  1870. }
  1871. #u41864 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 2px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u41864_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. visibility:hidden;
  1883. }
  1884. #u41865_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. #u41865 {
  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. #u41865 .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. #u41865_text {
  1926. border-width:0px;
  1927. white-space:nowrap;
  1928. text-transform:none;
  1929. }
  1930. #u41866_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. #u41866 {
  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. #u41866 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:0px 0px 0px 0px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u41866_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u41867_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. #u41867 {
  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. #u41867 .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. #u41867_text {
  2016. border-width:0px;
  2017. white-space:nowrap;
  2018. text-transform:none;
  2019. }
  2020. #u41868_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. #u41868 {
  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. #u41868 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 50px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u41868_text {
  2064. border-width:0px;
  2065. word-wrap:break-word;
  2066. text-transform:none;
  2067. visibility:hidden;
  2068. }
  2069. #u41870 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:0px;
  2075. height:0px;
  2076. }
  2077. #u41871_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. #u41871 {
  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. #u41871 .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. #u41871_text {
  2113. border-width:0px;
  2114. white-space:nowrap;
  2115. text-transform:none;
  2116. }
  2117. #u41872_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. #u41872 {
  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. #u41872 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:2px 2px 2px 2px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u41872_text {
  2151. border-width:0px;
  2152. word-wrap:break-word;
  2153. text-transform:none;
  2154. visibility:hidden;
  2155. }
  2156. #u41873 {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:0px;
  2162. height:0px;
  2163. }
  2164. #u41874_img {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:31px;
  2170. height:31px;
  2171. }
  2172. #u41874 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:19px;
  2176. top:10px;
  2177. width:31px;
  2178. height:31px;
  2179. display:flex;
  2180. }
  2181. #u41874 .text {
  2182. position:absolute;
  2183. align-self:center;
  2184. padding:2px 2px 2px 2px;
  2185. box-sizing:border-box;
  2186. width:100%;
  2187. }
  2188. #u41874_text {
  2189. border-width:0px;
  2190. word-wrap:break-word;
  2191. text-transform:none;
  2192. }
  2193. #u41875_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. #u41875 {
  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. #u41875 .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. #u41875_text {
  2235. border-width:0px;
  2236. white-space:nowrap;
  2237. text-transform:none;
  2238. }
  2239. #u41876_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. #u41876 {
  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. #u41876 .text {
  2266. position:absolute;
  2267. align-self:center;
  2268. padding:2px 2px 2px 2px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u41876_text {
  2273. border-width:0px;
  2274. word-wrap:break-word;
  2275. text-transform:none;
  2276. visibility:hidden;
  2277. }
  2278. #u41877_img {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:15px;
  2284. height:15px;
  2285. }
  2286. #u41877 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:1523px;
  2290. top:18px;
  2291. width:15px;
  2292. height:15px;
  2293. display:flex;
  2294. }
  2295. #u41877 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 2px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u41877_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u41878_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:15px;
  2314. height:15px;
  2315. }
  2316. #u41878 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:1493px;
  2320. top:18px;
  2321. width:15px;
  2322. height:15px;
  2323. display:flex;
  2324. }
  2325. #u41878 .text {
  2326. position:absolute;
  2327. align-self:center;
  2328. padding:2px 2px 2px 2px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u41878_text {
  2333. border-width:0px;
  2334. word-wrap:break-word;
  2335. text-transform:none;
  2336. visibility:hidden;
  2337. }
  2338. #u41879 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:0px;
  2344. height:0px;
  2345. }
  2346. #u41880_img {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:14px;
  2352. height:14px;
  2353. }
  2354. #u41880 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:1553px;
  2358. top:18px;
  2359. width:14px;
  2360. height:14px;
  2361. display:flex;
  2362. }
  2363. #u41880 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 2px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u41880_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. visibility:hidden;
  2375. }
  2376. #u41881_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:8px;
  2382. height:5px;
  2383. }
  2384. #u41881 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:1572px;
  2388. top:23px;
  2389. width:8px;
  2390. height:5px;
  2391. display:flex;
  2392. }
  2393. #u41881 .text {
  2394. position:absolute;
  2395. align-self:center;
  2396. padding:2px 2px 2px 2px;
  2397. box-sizing:border-box;
  2398. width:100%;
  2399. }
  2400. #u41881_text {
  2401. border-width:0px;
  2402. word-wrap:break-word;
  2403. text-transform:none;
  2404. visibility:hidden;
  2405. }
  2406. #u41882_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. #u41882 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:198px;
  2425. top:47px;
  2426. width:1402px;
  2427. height:1200px;
  2428. display:flex;
  2429. }
  2430. #u41882 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:2px 2px 2px 2px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u41882_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. visibility:hidden;
  2442. }
  2443. #u41883 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:35px;
  2447. top:81px;
  2448. width:118px;
  2449. height:220px;
  2450. }
  2451. #u41883_children {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:0px;
  2457. height:0px;
  2458. }
  2459. #u41884 {
  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. #u41885_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. #u41885 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:22px;
  2491. top:0px;
  2492. width:76px;
  2493. height:20px;
  2494. display:flex;
  2495. }
  2496. #u41885 .text {
  2497. position:absolute;
  2498. align-self:center;
  2499. padding:2px 2px 2px 3px;
  2500. box-sizing:border-box;
  2501. width:100%;
  2502. }
  2503. #u41885_text {
  2504. border-width:0px;
  2505. white-space:nowrap;
  2506. text-transform:none;
  2507. }
  2508. #u41886 {
  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. #u41887_img {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:0px;
  2525. top:0px;
  2526. width:9px;
  2527. height:9px;
  2528. }
  2529. #u41887 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:6px;
  2533. top:6px;
  2534. width:9px;
  2535. height:9px;
  2536. display:flex;
  2537. }
  2538. #u41887 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 2px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u41887_img.selected {
  2546. }
  2547. #u41887.selected {
  2548. }
  2549. #u41887_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. visibility:hidden;
  2554. }
  2555. #u41888_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. #u41888 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:22px;
  2574. top:0px;
  2575. width:62px;
  2576. height:20px;
  2577. display:flex;
  2578. }
  2579. #u41888 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:2px 2px 2px 3px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u41888_text {
  2587. border-width:0px;
  2588. white-space:nowrap;
  2589. text-transform:none;
  2590. }
  2591. #u41886_children {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:0px;
  2597. height:0px;
  2598. }
  2599. #u41889 {
  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. #u41890_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. #u41890 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:22px;
  2631. top:0px;
  2632. width:76px;
  2633. height:20px;
  2634. display:flex;
  2635. }
  2636. #u41890 .text {
  2637. position:absolute;
  2638. align-self:center;
  2639. padding:2px 2px 2px 3px;
  2640. box-sizing:border-box;
  2641. width:100%;
  2642. }
  2643. #u41890_text {
  2644. border-width:0px;
  2645. white-space:nowrap;
  2646. text-transform:none;
  2647. }
  2648. #u41891 {
  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. #u41892_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. #u41892 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:22px;
  2680. top:0px;
  2681. width:76px;
  2682. height:20px;
  2683. display:flex;
  2684. }
  2685. #u41892 .text {
  2686. position:absolute;
  2687. align-self:center;
  2688. padding:2px 2px 2px 3px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u41892_text {
  2693. border-width:0px;
  2694. white-space:nowrap;
  2695. text-transform:none;
  2696. }
  2697. #u41893 {
  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. #u41894_img {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:9px;
  2716. height:9px;
  2717. }
  2718. #u41894 {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:6px;
  2722. top:6px;
  2723. width:9px;
  2724. height:9px;
  2725. display:flex;
  2726. }
  2727. #u41894 .text {
  2728. position:absolute;
  2729. align-self:center;
  2730. padding:2px 2px 2px 2px;
  2731. box-sizing:border-box;
  2732. width:100%;
  2733. }
  2734. #u41894_img.selected {
  2735. }
  2736. #u41894.selected {
  2737. }
  2738. #u41894_text {
  2739. border-width:0px;
  2740. word-wrap:break-word;
  2741. text-transform:none;
  2742. visibility:hidden;
  2743. }
  2744. #u41895_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. #u41895 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:22px;
  2763. top:0px;
  2764. width:62px;
  2765. height:20px;
  2766. display:flex;
  2767. }
  2768. #u41895 .text {
  2769. position:absolute;
  2770. align-self:center;
  2771. padding:2px 2px 2px 3px;
  2772. box-sizing:border-box;
  2773. width:100%;
  2774. }
  2775. #u41895_text {
  2776. border-width:0px;
  2777. white-space:nowrap;
  2778. text-transform:none;
  2779. }
  2780. #u41893_children {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:0px;
  2786. height:0px;
  2787. }
  2788. #u41896 {
  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. #u41897_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. #u41897 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:22px;
  2820. top:0px;
  2821. width:76px;
  2822. height:20px;
  2823. display:flex;
  2824. }
  2825. #u41897 .text {
  2826. position:absolute;
  2827. align-self:center;
  2828. padding:2px 2px 2px 3px;
  2829. box-sizing:border-box;
  2830. width:100%;
  2831. }
  2832. #u41897_text {
  2833. border-width:0px;
  2834. white-space:nowrap;
  2835. text-transform:none;
  2836. }
  2837. #u41898 {
  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. #u41899_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. #u41899 {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:22px;
  2869. top:0px;
  2870. width:76px;
  2871. height:20px;
  2872. display:flex;
  2873. }
  2874. #u41899 .text {
  2875. position:absolute;
  2876. align-self:center;
  2877. padding:2px 2px 2px 3px;
  2878. box-sizing:border-box;
  2879. width:100%;
  2880. }
  2881. #u41899_text {
  2882. border-width:0px;
  2883. white-space:nowrap;
  2884. text-transform:none;
  2885. }
  2886. #u41900 {
  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. #u41901_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:9px;
  2905. height:9px;
  2906. }
  2907. #u41901 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:6px;
  2911. top:6px;
  2912. width:9px;
  2913. height:9px;
  2914. display:flex;
  2915. }
  2916. #u41901 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 2px 2px 2px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u41901_img.selected {
  2924. }
  2925. #u41901.selected {
  2926. }
  2927. #u41901_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. visibility:hidden;
  2932. }
  2933. #u41902_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. #u41902 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:22px;
  2952. top:0px;
  2953. width:62px;
  2954. height:20px;
  2955. display:flex;
  2956. }
  2957. #u41902 .text {
  2958. position:absolute;
  2959. align-self:center;
  2960. padding:2px 2px 2px 3px;
  2961. box-sizing:border-box;
  2962. width:100%;
  2963. }
  2964. #u41902_text {
  2965. border-width:0px;
  2966. white-space:nowrap;
  2967. text-transform:none;
  2968. }
  2969. #u41900_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. #u41903 {
  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. #u41904_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. #u41904 {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:22px;
  3010. top:0px;
  3011. width:62px;
  3012. height:20px;
  3013. display:flex;
  3014. }
  3015. #u41904 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 3px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u41904_text {
  3023. border-width:0px;
  3024. white-space:nowrap;
  3025. text-transform:none;
  3026. }
  3027. #u41905 {
  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. #u41906_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. #u41906 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:22px;
  3059. top:0px;
  3060. width:62px;
  3061. height:20px;
  3062. display:flex;
  3063. }
  3064. #u41906 .text {
  3065. position:absolute;
  3066. align-self:center;
  3067. padding:2px 2px 2px 3px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u41906_text {
  3072. border-width:0px;
  3073. white-space:nowrap;
  3074. text-transform:none;
  3075. }
  3076. #u41907 {
  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. #u41908_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. #u41908 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:22px;
  3108. top:0px;
  3109. width:62px;
  3110. height:20px;
  3111. display:flex;
  3112. }
  3113. #u41908 .text {
  3114. position:absolute;
  3115. align-self:center;
  3116. padding:2px 2px 2px 3px;
  3117. box-sizing:border-box;
  3118. width:100%;
  3119. }
  3120. #u41908_text {
  3121. border-width:0px;
  3122. white-space:nowrap;
  3123. text-transform:none;
  3124. }
  3125. #u41909 {
  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. #u41910_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. #u41910 {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:22px;
  3157. top:0px;
  3158. width:62px;
  3159. height:20px;
  3160. display:flex;
  3161. }
  3162. #u41910 .text {
  3163. position:absolute;
  3164. align-self:center;
  3165. padding:2px 2px 2px 3px;
  3166. box-sizing:border-box;
  3167. width:100%;
  3168. }
  3169. #u41910_text {
  3170. border-width:0px;
  3171. white-space:nowrap;
  3172. text-transform:none;
  3173. }
  3174. #u41911 {
  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. #u41912_img {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:9px;
  3193. height:9px;
  3194. }
  3195. #u41912 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:6px;
  3199. top:6px;
  3200. width:9px;
  3201. height:9px;
  3202. display:flex;
  3203. }
  3204. #u41912 .text {
  3205. position:absolute;
  3206. align-self:center;
  3207. padding:2px 2px 2px 2px;
  3208. box-sizing:border-box;
  3209. width:100%;
  3210. }
  3211. #u41912_img.selected {
  3212. }
  3213. #u41912.selected {
  3214. }
  3215. #u41912_text {
  3216. border-width:0px;
  3217. word-wrap:break-word;
  3218. text-transform:none;
  3219. visibility:hidden;
  3220. }
  3221. #u41913_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. #u41913 {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:22px;
  3240. top:0px;
  3241. width:76px;
  3242. height:20px;
  3243. display:flex;
  3244. }
  3245. #u41913 .text {
  3246. position:absolute;
  3247. align-self:center;
  3248. padding:2px 2px 2px 3px;
  3249. box-sizing:border-box;
  3250. width:100%;
  3251. }
  3252. #u41913_text {
  3253. border-width:0px;
  3254. white-space:nowrap;
  3255. text-transform:none;
  3256. }
  3257. #u41911_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. #u41914 {
  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. #u41915_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. #u41915 {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:22px;
  3298. top:0px;
  3299. width:76px;
  3300. height:20px;
  3301. display:flex;
  3302. }
  3303. #u41915 .text {
  3304. position:absolute;
  3305. align-self:center;
  3306. padding:2px 2px 2px 3px;
  3307. box-sizing:border-box;
  3308. width:100%;
  3309. }
  3310. #u41915_text {
  3311. border-width:0px;
  3312. white-space:nowrap;
  3313. text-transform:none;
  3314. }
  3315. #u41916 {
  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. #u41917_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. #u41917 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:22px;
  3347. top:0px;
  3348. width:76px;
  3349. height:20px;
  3350. display:flex;
  3351. }
  3352. #u41917 .text {
  3353. position:absolute;
  3354. align-self:center;
  3355. padding:2px 2px 2px 3px;
  3356. box-sizing:border-box;
  3357. width:100%;
  3358. }
  3359. #u41917_text {
  3360. border-width:0px;
  3361. white-space:nowrap;
  3362. text-transform:none;
  3363. }
  3364. #u41918 {
  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. #u41919_img {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:9px;
  3383. height:9px;
  3384. }
  3385. #u41919 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:6px;
  3389. top:6px;
  3390. width:9px;
  3391. height:9px;
  3392. display:flex;
  3393. }
  3394. #u41919 .text {
  3395. position:absolute;
  3396. align-self:center;
  3397. padding:2px 2px 2px 2px;
  3398. box-sizing:border-box;
  3399. width:100%;
  3400. }
  3401. #u41919_img.selected {
  3402. }
  3403. #u41919.selected {
  3404. }
  3405. #u41919_text {
  3406. border-width:0px;
  3407. word-wrap:break-word;
  3408. text-transform:none;
  3409. visibility:hidden;
  3410. }
  3411. #u41920_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. #u41920 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:22px;
  3430. top:0px;
  3431. width:62px;
  3432. height:20px;
  3433. display:flex;
  3434. }
  3435. #u41920 .text {
  3436. position:absolute;
  3437. align-self:center;
  3438. padding:2px 2px 2px 3px;
  3439. box-sizing:border-box;
  3440. width:100%;
  3441. }
  3442. #u41920_text {
  3443. border-width:0px;
  3444. white-space:nowrap;
  3445. text-transform:none;
  3446. }
  3447. #u41918_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. #u41921 {
  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. #u41922_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. #u41922 {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:22px;
  3488. top:0px;
  3489. width:76px;
  3490. height:20px;
  3491. display:flex;
  3492. }
  3493. #u41922 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 3px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u41922_text {
  3501. border-width:0px;
  3502. white-space:nowrap;
  3503. text-transform:none;
  3504. }
  3505. #u41923 {
  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. #u41924_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. #u41924 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:22px;
  3537. top:0px;
  3538. width:62px;
  3539. height:20px;
  3540. display:flex;
  3541. }
  3542. #u41924 .text {
  3543. position:absolute;
  3544. align-self:center;
  3545. padding:2px 2px 2px 3px;
  3546. box-sizing:border-box;
  3547. width:100%;
  3548. }
  3549. #u41924_text {
  3550. border-width:0px;
  3551. white-space:nowrap;
  3552. text-transform:none;
  3553. }
  3554. #u41925 {
  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. #u41926_img {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:9px;
  3573. height:9px;
  3574. }
  3575. #u41926 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:6px;
  3579. top:6px;
  3580. width:9px;
  3581. height:9px;
  3582. display:flex;
  3583. }
  3584. #u41926 .text {
  3585. position:absolute;
  3586. align-self:center;
  3587. padding:2px 2px 2px 2px;
  3588. box-sizing:border-box;
  3589. width:100%;
  3590. }
  3591. #u41926_img.selected {
  3592. }
  3593. #u41926.selected {
  3594. }
  3595. #u41926_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. visibility:hidden;
  3600. }
  3601. #u41927_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. #u41927 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:22px;
  3620. top:0px;
  3621. width:62px;
  3622. height:20px;
  3623. display:flex;
  3624. }
  3625. #u41927 .text {
  3626. position:absolute;
  3627. align-self:center;
  3628. padding:2px 2px 2px 3px;
  3629. box-sizing:border-box;
  3630. width:100%;
  3631. }
  3632. #u41927_text {
  3633. border-width:0px;
  3634. white-space:nowrap;
  3635. text-transform:none;
  3636. }
  3637. #u41925_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. #u41928 {
  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. #u41929_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. #u41929 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:22px;
  3678. top:0px;
  3679. width:62px;
  3680. height:20px;
  3681. display:flex;
  3682. }
  3683. #u41929 .text {
  3684. position:absolute;
  3685. align-self:center;
  3686. padding:2px 2px 2px 3px;
  3687. box-sizing:border-box;
  3688. width:100%;
  3689. }
  3690. #u41929_text {
  3691. border-width:0px;
  3692. white-space:nowrap;
  3693. text-transform:none;
  3694. }
  3695. #u41930 {
  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. #u41931_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. #u41931 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:22px;
  3727. top:0px;
  3728. width:62px;
  3729. height:20px;
  3730. display:flex;
  3731. }
  3732. #u41931 .text {
  3733. position:absolute;
  3734. align-self:center;
  3735. padding:2px 2px 2px 3px;
  3736. box-sizing:border-box;
  3737. width:100%;
  3738. }
  3739. #u41931_text {
  3740. border-width:0px;
  3741. white-space:nowrap;
  3742. text-transform:none;
  3743. }
  3744. #u41932 {
  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. #u41933_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. #u41933 {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:22px;
  3776. top:0px;
  3777. width:62px;
  3778. height:20px;
  3779. display:flex;
  3780. }
  3781. #u41933 .text {
  3782. position:absolute;
  3783. align-self:center;
  3784. padding:2px 2px 2px 3px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u41933_text {
  3789. border-width:0px;
  3790. white-space:nowrap;
  3791. text-transform:none;
  3792. }
  3793. #u41934 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:0px;
  3799. height:0px;
  3800. }
  3801. #u41935_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. #u41935_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. #u41935_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. #u41935 {
  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. #u41935 .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. #u41935_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. #u41935.disabled {
  3892. }
  3893. .u41935_input_option {
  3894. font-size:14px;
  3895. }
  3896. #u41936_img {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:0px;
  3900. top:0px;
  3901. width:22px;
  3902. height:22px;
  3903. }
  3904. #u41936 {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:216px;
  3908. top:15px;
  3909. width:22px;
  3910. height:22px;
  3911. display:flex;
  3912. }
  3913. #u41936 .text {
  3914. position:absolute;
  3915. align-self:center;
  3916. padding:2px 2px 2px 2px;
  3917. box-sizing:border-box;
  3918. width:100%;
  3919. }
  3920. #u41936_text {
  3921. border-width:0px;
  3922. word-wrap:break-word;
  3923. text-transform:none;
  3924. visibility:hidden;
  3925. }
  3926. #u41937_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. #u41937 {
  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. #u41937 .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. #u41937_text {
  3968. border-width:0px;
  3969. white-space:nowrap;
  3970. text-transform:none;
  3971. }
  3972. #u41938_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. #u41938 {
  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. #u41938 .text {
  4007. position:absolute;
  4008. align-self:center;
  4009. padding:0px 0px 0px 0px;
  4010. box-sizing:border-box;
  4011. width:100%;
  4012. }
  4013. #u41938_text {
  4014. border-width:0px;
  4015. word-wrap:break-word;
  4016. text-transform:none;
  4017. }
  4018. #u41939_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. #u41939 {
  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. #u41939 .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. #u41939_text {
  4058. border-width:0px;
  4059. white-space:nowrap;
  4060. text-transform:none;
  4061. }
  4062. #u41940_div {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:0px;
  4066. top:0px;
  4067. width:1381px;
  4068. height:1176px;
  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. #u41940 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:208px;
  4087. top:74px;
  4088. width:1381px;
  4089. height:1176px;
  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. #u41940 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:2px 2px 2px 50px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u41940_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. visibility:hidden;
  4110. }
  4111. #u41941_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. #u41941 {
  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. #u41941 .text {
  4148. position:absolute;
  4149. align-self:center;
  4150. padding:2px 2px 2px 50px;
  4151. box-sizing:border-box;
  4152. width:100%;
  4153. }
  4154. #u41941_text {
  4155. border-width:0px;
  4156. word-wrap:break-word;
  4157. text-transform:none;
  4158. visibility:hidden;
  4159. }
  4160. #u41942_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. #u41942 {
  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. #u41942 .text {
  4198. position:absolute;
  4199. align-self:center;
  4200. padding:0px 0px 0px 0px;
  4201. box-sizing:border-box;
  4202. width:100%;
  4203. }
  4204. #u41942_text {
  4205. border-width:0px;
  4206. white-space:nowrap;
  4207. text-transform:none;
  4208. }
  4209. #u41943 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:0px;
  4215. height:0px;
  4216. }
  4217. #u41944_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. #u41944 {
  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. #u41944 .text {
  4257. position:absolute;
  4258. align-self:center;
  4259. padding:2px 8px 2px 8px;
  4260. box-sizing:border-box;
  4261. width:100%;
  4262. }
  4263. #u41944_text {
  4264. border-width:0px;
  4265. word-wrap:break-word;
  4266. text-transform:none;
  4267. visibility:hidden;
  4268. }
  4269. #u41945_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. #u41945_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. #u41945_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. #u41945 {
  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. #u41945 .text {
  4340. position:absolute;
  4341. align-self:center;
  4342. padding:2px 2px 2px 2px;
  4343. box-sizing:border-box;
  4344. width:100%;
  4345. }
  4346. #u41945_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. #u41945.disabled {
  4366. }
  4367. #u41946_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. #u41946 {
  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. #u41946 .text {
  4405. position:absolute;
  4406. align-self:center;
  4407. padding:5px 15px 5px 15px;
  4408. box-sizing:border-box;
  4409. width:100%;
  4410. }
  4411. #u41946_text {
  4412. border-width:0px;
  4413. white-space:nowrap;
  4414. text-transform:none;
  4415. }
  4416. #u41947_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. border:none;
  4426. border-left:0px;
  4427. border-top:0px;
  4428. border-right:0px;
  4429. border-radius:0px;
  4430. border-bottom-right-radius:0px;
  4431. border-bottom-left-radius:0px;
  4432. -moz-box-shadow:none;
  4433. -webkit-box-shadow:none;
  4434. box-shadow:none;
  4435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4436. font-weight:400;
  4437. font-style:normal;
  4438. font-size:14px;
  4439. }
  4440. #u41947 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:234px;
  4444. top:124px;
  4445. width:43px;
  4446. height:50px;
  4447. display:flex;
  4448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4449. font-weight:400;
  4450. font-style:normal;
  4451. font-size:14px;
  4452. }
  4453. #u41947 .text {
  4454. position:absolute;
  4455. align-self:center;
  4456. padding:0px 0px 0px 0px;
  4457. box-sizing:border-box;
  4458. width:100%;
  4459. }
  4460. #u41947_text {
  4461. border-width:0px;
  4462. white-space:nowrap;
  4463. text-transform:none;
  4464. }
  4465. #u41948_div {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:43px;
  4471. height:50px;
  4472. background:inherit;
  4473. background-color:rgba(255, 255, 255, 0);
  4474. border:none;
  4475. border-left:0px;
  4476. border-top:0px;
  4477. border-right:0px;
  4478. border-radius:0px;
  4479. border-bottom-right-radius:0px;
  4480. border-bottom-left-radius:0px;
  4481. -moz-box-shadow:none;
  4482. -webkit-box-shadow:none;
  4483. box-shadow:none;
  4484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4485. font-weight:400;
  4486. font-style:normal;
  4487. font-size:14px;
  4488. }
  4489. #u41948 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:307px;
  4493. top:124px;
  4494. width:43px;
  4495. height:50px;
  4496. display:flex;
  4497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4498. font-weight:400;
  4499. font-style:normal;
  4500. font-size:14px;
  4501. }
  4502. #u41948 .text {
  4503. position:absolute;
  4504. align-self:center;
  4505. padding:0px 0px 0px 0px;
  4506. box-sizing:border-box;
  4507. width:100%;
  4508. }
  4509. #u41948_text {
  4510. border-width:0px;
  4511. white-space:nowrap;
  4512. text-transform:none;
  4513. }
  4514. #u41949_div {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:57px;
  4520. height:50px;
  4521. background:inherit;
  4522. background-color:rgba(255, 255, 255, 0);
  4523. box-sizing:border-box;
  4524. border-width:2px;
  4525. border-style:solid;
  4526. border-color:rgba(24, 144, 255, 1);
  4527. border-left:0px;
  4528. border-top:0px;
  4529. border-right:0px;
  4530. border-radius:0px;
  4531. border-bottom-right-radius:0px;
  4532. border-bottom-left-radius:0px;
  4533. -moz-box-shadow:none;
  4534. -webkit-box-shadow:none;
  4535. box-shadow:none;
  4536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4537. font-weight:400;
  4538. font-style:normal;
  4539. font-size:14px;
  4540. color:#0099FF;
  4541. }
  4542. #u41949 {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:380px;
  4546. top:124px;
  4547. width:57px;
  4548. height:50px;
  4549. display:flex;
  4550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4551. font-weight:400;
  4552. font-style:normal;
  4553. font-size:14px;
  4554. color:#0099FF;
  4555. }
  4556. #u41949 .text {
  4557. position:absolute;
  4558. align-self:center;
  4559. padding:0px 0px 0px 0px;
  4560. box-sizing:border-box;
  4561. width:100%;
  4562. }
  4563. #u41949_text {
  4564. border-width:0px;
  4565. white-space:nowrap;
  4566. text-transform:none;
  4567. }
  4568. #u41950 {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:234px;
  4572. top:194px;
  4573. width:1325px;
  4574. height:1009px;
  4575. }
  4576. #u41950_state0 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:1325px;
  4582. height:1009px;
  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. #u41950_state0_content {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:1px;
  4600. height:1px;
  4601. }
  4602. #u41951 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:0px;
  4606. top:0px;
  4607. width:0px;
  4608. height:0px;
  4609. }
  4610. #u41952_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. #u41952 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:1325px;
  4631. height:140px;
  4632. display:flex;
  4633. }
  4634. #u41952 .text {
  4635. position:absolute;
  4636. align-self:center;
  4637. padding:2px 2px 2px 2px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u41952_text {
  4642. border-width:0px;
  4643. word-wrap:break-word;
  4644. text-transform:none;
  4645. visibility:hidden;
  4646. }
  4647. #u41953_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. #u41953 {
  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. #u41953 .text {
  4685. position:absolute;
  4686. align-self:center;
  4687. padding:0px 0px 0px 0px;
  4688. box-sizing:border-box;
  4689. width:100%;
  4690. }
  4691. #u41953_text {
  4692. border-width:0px;
  4693. white-space:nowrap;
  4694. text-transform:none;
  4695. }
  4696. #u41954_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. #u41954 {
  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. #u41954 .text {
  4736. position:absolute;
  4737. align-self:center;
  4738. padding:0px 0px 0px 0px;
  4739. box-sizing:border-box;
  4740. width:100%;
  4741. }
  4742. #u41954_text {
  4743. border-width:0px;
  4744. word-wrap:break-word;
  4745. text-transform:none;
  4746. }
  4747. #u41955_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. #u41955 {
  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. #u41955 .text {
  4787. position:absolute;
  4788. align-self:center;
  4789. padding:0px 0px 0px 0px;
  4790. box-sizing:border-box;
  4791. width:100%;
  4792. }
  4793. #u41955_text {
  4794. border-width:0px;
  4795. word-wrap:break-word;
  4796. text-transform:none;
  4797. }
  4798. #u41956_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. #u41956 {
  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. #u41956 .text {
  4838. position:absolute;
  4839. align-self:center;
  4840. padding:0px 0px 0px 0px;
  4841. box-sizing:border-box;
  4842. width:100%;
  4843. }
  4844. #u41956_text {
  4845. border-width:0px;
  4846. word-wrap:break-word;
  4847. text-transform:none;
  4848. }
  4849. #u41957_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. #u41957 {
  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. #u41957 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:0px 0px 0px 0px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u41957_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. }
  4900. #u41958_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. #u41958 {
  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. #u41958 .text {
  4940. position:absolute;
  4941. align-self:center;
  4942. padding:0px 0px 0px 0px;
  4943. box-sizing:border-box;
  4944. width:100%;
  4945. }
  4946. #u41958_text {
  4947. border-width:0px;
  4948. word-wrap:break-word;
  4949. text-transform:none;
  4950. }
  4951. #u41959_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. #u41959 {
  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. #u41959 .text {
  4991. position:absolute;
  4992. align-self:center;
  4993. padding:0px 0px 0px 0px;
  4994. box-sizing:border-box;
  4995. width:100%;
  4996. }
  4997. #u41959_text {
  4998. border-width:0px;
  4999. word-wrap:break-word;
  5000. text-transform:none;
  5001. }
  5002. #u41960_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, 0);
  5011. box-sizing:border-box;
  5012. border-width:1px;
  5013. border-style:solid;
  5014. border-color:rgba(24, 144, 255, 1);
  5015. border-radius:4px;
  5016. -moz-box-shadow:none;
  5017. -webkit-box-shadow:none;
  5018. box-shadow:none;
  5019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5020. font-weight:400;
  5021. font-style:normal;
  5022. font-size:12px;
  5023. color:#0099FF;
  5024. }
  5025. #u41960 {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:1196px;
  5029. top:60px;
  5030. width:80px;
  5031. height:30px;
  5032. display:flex;
  5033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5034. font-weight:400;
  5035. font-style:normal;
  5036. font-size:12px;
  5037. color:#0099FF;
  5038. }
  5039. #u41960 .text {
  5040. position:absolute;
  5041. align-self:center;
  5042. padding:2px 8px 2px 8px;
  5043. box-sizing:border-box;
  5044. width:100%;
  5045. }
  5046. #u41960_text {
  5047. border-width:0px;
  5048. word-wrap:break-word;
  5049. text-transform:none;
  5050. }
  5051. #u41961_div {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:0px;
  5055. top:0px;
  5056. width:100px;
  5057. height:20px;
  5058. background:inherit;
  5059. background-color:rgba(255, 255, 255, 0);
  5060. border:none;
  5061. border-left:0px;
  5062. border-top:0px;
  5063. border-right:0px;
  5064. border-radius:0px;
  5065. border-bottom-right-radius:0px;
  5066. border-bottom-left-radius:0px;
  5067. -moz-box-shadow:none;
  5068. -webkit-box-shadow:none;
  5069. box-shadow:none;
  5070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5071. font-weight:400;
  5072. font-style:normal;
  5073. font-size:14px;
  5074. color:#555555;
  5075. }
  5076. #u41961 {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:20px;
  5080. top:96px;
  5081. width:100px;
  5082. height:20px;
  5083. display:flex;
  5084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5085. font-weight:400;
  5086. font-style:normal;
  5087. font-size:14px;
  5088. color:#555555;
  5089. }
  5090. #u41961 .text {
  5091. position:absolute;
  5092. align-self:center;
  5093. padding:0px 0px 0px 0px;
  5094. box-sizing:border-box;
  5095. width:100%;
  5096. }
  5097. #u41961_text {
  5098. border-width:0px;
  5099. word-wrap:break-word;
  5100. text-transform:none;
  5101. }
  5102. #u41962_div {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:200px;
  5108. height:20px;
  5109. background:inherit;
  5110. background-color:rgba(255, 255, 255, 0);
  5111. border:none;
  5112. border-left:0px;
  5113. border-top:0px;
  5114. border-right:0px;
  5115. border-radius:0px;
  5116. border-bottom-right-radius:0px;
  5117. border-bottom-left-radius:0px;
  5118. -moz-box-shadow:none;
  5119. -webkit-box-shadow:none;
  5120. box-shadow:none;
  5121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5122. font-weight:400;
  5123. font-style:normal;
  5124. font-size:14px;
  5125. color:#555555;
  5126. }
  5127. #u41962 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:120px;
  5131. top:96px;
  5132. width:200px;
  5133. height:20px;
  5134. display:flex;
  5135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5136. font-weight:400;
  5137. font-style:normal;
  5138. font-size:14px;
  5139. color:#555555;
  5140. }
  5141. #u41962 .text {
  5142. position:absolute;
  5143. align-self:center;
  5144. padding:0px 0px 0px 0px;
  5145. box-sizing:border-box;
  5146. width:100%;
  5147. }
  5148. #u41962_text {
  5149. border-width:0px;
  5150. word-wrap:break-word;
  5151. text-transform:none;
  5152. }
  5153. #u41963_div {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:100px;
  5159. height:20px;
  5160. background:inherit;
  5161. background-color:rgba(255, 255, 255, 0);
  5162. border:none;
  5163. border-left:0px;
  5164. border-top:0px;
  5165. border-right:0px;
  5166. border-radius:0px;
  5167. border-bottom-right-radius:0px;
  5168. border-bottom-left-radius:0px;
  5169. -moz-box-shadow:none;
  5170. -webkit-box-shadow:none;
  5171. box-shadow:none;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:14px;
  5176. color:#555555;
  5177. }
  5178. #u41963 {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:320px;
  5182. top:96px;
  5183. width:100px;
  5184. height:20px;
  5185. display:flex;
  5186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5187. font-weight:400;
  5188. font-style:normal;
  5189. font-size:14px;
  5190. color:#555555;
  5191. }
  5192. #u41963 .text {
  5193. position:absolute;
  5194. align-self:center;
  5195. padding:0px 0px 0px 0px;
  5196. box-sizing:border-box;
  5197. width:100%;
  5198. }
  5199. #u41963_text {
  5200. border-width:0px;
  5201. word-wrap:break-word;
  5202. text-transform:none;
  5203. }
  5204. #u41964_div {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:0px;
  5209. width:200px;
  5210. height:20px;
  5211. background:inherit;
  5212. background-color:rgba(255, 255, 255, 0);
  5213. border:none;
  5214. border-left:0px;
  5215. border-top:0px;
  5216. border-right:0px;
  5217. border-radius:0px;
  5218. border-bottom-right-radius:0px;
  5219. border-bottom-left-radius:0px;
  5220. -moz-box-shadow:none;
  5221. -webkit-box-shadow:none;
  5222. box-shadow:none;
  5223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5224. font-weight:400;
  5225. font-style:normal;
  5226. font-size:14px;
  5227. color:#555555;
  5228. }
  5229. #u41964 {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:420px;
  5233. top:96px;
  5234. width:200px;
  5235. height:20px;
  5236. display:flex;
  5237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5238. font-weight:400;
  5239. font-style:normal;
  5240. font-size:14px;
  5241. color:#555555;
  5242. }
  5243. #u41964 .text {
  5244. position:absolute;
  5245. align-self:center;
  5246. padding:0px 0px 0px 0px;
  5247. box-sizing:border-box;
  5248. width:100%;
  5249. }
  5250. #u41964_text {
  5251. border-width:0px;
  5252. word-wrap:break-word;
  5253. text-transform:none;
  5254. }
  5255. #u41965 {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:0px;
  5261. height:0px;
  5262. }
  5263. #u41966_div {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:0px;
  5267. top:0px;
  5268. width:1325px;
  5269. height:100px;
  5270. background:inherit;
  5271. background-color:rgba(255, 255, 255, 1);
  5272. border:none;
  5273. border-radius:9px;
  5274. -moz-box-shadow:none;
  5275. -webkit-box-shadow:none;
  5276. box-shadow:none;
  5277. }
  5278. #u41966 {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:0px;
  5282. top:150px;
  5283. width:1325px;
  5284. height:100px;
  5285. display:flex;
  5286. }
  5287. #u41966 .text {
  5288. position:absolute;
  5289. align-self:center;
  5290. padding:2px 2px 2px 2px;
  5291. box-sizing:border-box;
  5292. width:100%;
  5293. }
  5294. #u41966_text {
  5295. border-width:0px;
  5296. word-wrap:break-word;
  5297. text-transform:none;
  5298. visibility:hidden;
  5299. }
  5300. #u41967_div {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:57px;
  5306. height:20px;
  5307. background:inherit;
  5308. background-color:rgba(255, 255, 255, 0);
  5309. border:none;
  5310. border-left:0px;
  5311. border-top:0px;
  5312. border-right:0px;
  5313. border-radius:0px;
  5314. border-bottom-right-radius:0px;
  5315. border-bottom-left-radius:0px;
  5316. -moz-box-shadow:none;
  5317. -webkit-box-shadow:none;
  5318. box-shadow:none;
  5319. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5320. font-weight:500;
  5321. font-style:normal;
  5322. font-size:14px;
  5323. }
  5324. #u41967 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:20px;
  5328. top:170px;
  5329. width:57px;
  5330. height:20px;
  5331. display:flex;
  5332. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5333. font-weight:500;
  5334. font-style:normal;
  5335. font-size:14px;
  5336. }
  5337. #u41967 .text {
  5338. position:absolute;
  5339. align-self:center;
  5340. padding:0px 0px 0px 0px;
  5341. box-sizing:border-box;
  5342. width:100%;
  5343. }
  5344. #u41967_text {
  5345. border-width:0px;
  5346. white-space:nowrap;
  5347. text-transform:none;
  5348. }
  5349. #u41968_div {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:100px;
  5355. height:20px;
  5356. background:inherit;
  5357. background-color:rgba(255, 255, 255, 0);
  5358. border:none;
  5359. border-left:0px;
  5360. border-top:0px;
  5361. border-right:0px;
  5362. border-radius:0px;
  5363. border-bottom-right-radius:0px;
  5364. border-bottom-left-radius:0px;
  5365. -moz-box-shadow:none;
  5366. -webkit-box-shadow:none;
  5367. box-shadow:none;
  5368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5369. font-weight:400;
  5370. font-style:normal;
  5371. font-size:14px;
  5372. color:#555555;
  5373. }
  5374. #u41968 {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:20px;
  5378. top:206px;
  5379. width:100px;
  5380. height:20px;
  5381. display:flex;
  5382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5383. font-weight:400;
  5384. font-style:normal;
  5385. font-size:14px;
  5386. color:#555555;
  5387. }
  5388. #u41968 .text {
  5389. position:absolute;
  5390. align-self:center;
  5391. padding:0px 0px 0px 0px;
  5392. box-sizing:border-box;
  5393. width:100%;
  5394. }
  5395. #u41968_text {
  5396. border-width:0px;
  5397. word-wrap:break-word;
  5398. text-transform:none;
  5399. }
  5400. #u41969_div {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:200px;
  5406. height:20px;
  5407. background:inherit;
  5408. background-color:rgba(255, 255, 255, 0);
  5409. border:none;
  5410. border-left:0px;
  5411. border-top:0px;
  5412. border-right:0px;
  5413. border-radius:0px;
  5414. border-bottom-right-radius:0px;
  5415. border-bottom-left-radius:0px;
  5416. -moz-box-shadow:none;
  5417. -webkit-box-shadow:none;
  5418. box-shadow:none;
  5419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5420. font-weight:400;
  5421. font-style:normal;
  5422. font-size:14px;
  5423. color:#555555;
  5424. }
  5425. #u41969 {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:120px;
  5429. top:206px;
  5430. width:200px;
  5431. height:20px;
  5432. display:flex;
  5433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:14px;
  5437. color:#555555;
  5438. }
  5439. #u41969 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:0px 0px 0px 0px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u41969_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. }
  5451. #u41970_div {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:100px;
  5457. height:20px;
  5458. background:inherit;
  5459. background-color:rgba(255, 255, 255, 0);
  5460. border:none;
  5461. border-left:0px;
  5462. border-top:0px;
  5463. border-right:0px;
  5464. border-radius:0px;
  5465. border-bottom-right-radius:0px;
  5466. border-bottom-left-radius:0px;
  5467. -moz-box-shadow:none;
  5468. -webkit-box-shadow:none;
  5469. box-shadow:none;
  5470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5471. font-weight:400;
  5472. font-style:normal;
  5473. font-size:14px;
  5474. color:#555555;
  5475. }
  5476. #u41970 {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:320px;
  5480. top:206px;
  5481. width:100px;
  5482. height:20px;
  5483. display:flex;
  5484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5485. font-weight:400;
  5486. font-style:normal;
  5487. font-size:14px;
  5488. color:#555555;
  5489. }
  5490. #u41970 .text {
  5491. position:absolute;
  5492. align-self:center;
  5493. padding:0px 0px 0px 0px;
  5494. box-sizing:border-box;
  5495. width:100%;
  5496. }
  5497. #u41970_text {
  5498. border-width:0px;
  5499. word-wrap:break-word;
  5500. text-transform:none;
  5501. }
  5502. #u41971_div {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:0px;
  5506. top:0px;
  5507. width:200px;
  5508. height:20px;
  5509. background:inherit;
  5510. background-color:rgba(255, 255, 255, 0);
  5511. border:none;
  5512. border-left:0px;
  5513. border-top:0px;
  5514. border-right:0px;
  5515. border-radius:0px;
  5516. border-bottom-right-radius:0px;
  5517. border-bottom-left-radius:0px;
  5518. -moz-box-shadow:none;
  5519. -webkit-box-shadow:none;
  5520. box-shadow:none;
  5521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5522. font-weight:400;
  5523. font-style:normal;
  5524. font-size:14px;
  5525. color:#555555;
  5526. }
  5527. #u41971 {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:420px;
  5531. top:206px;
  5532. width:200px;
  5533. height:20px;
  5534. display:flex;
  5535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5536. font-weight:400;
  5537. font-style:normal;
  5538. font-size:14px;
  5539. color:#555555;
  5540. }
  5541. #u41971 .text {
  5542. position:absolute;
  5543. align-self:center;
  5544. padding:0px 0px 0px 0px;
  5545. box-sizing:border-box;
  5546. width:100%;
  5547. }
  5548. #u41971_text {
  5549. border-width:0px;
  5550. word-wrap:break-word;
  5551. text-transform:none;
  5552. }
  5553. #u41972_div {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:0px;
  5557. top:0px;
  5558. width:100px;
  5559. height:20px;
  5560. background:inherit;
  5561. background-color:rgba(255, 255, 255, 0);
  5562. border:none;
  5563. border-left:0px;
  5564. border-top:0px;
  5565. border-right:0px;
  5566. border-radius:0px;
  5567. border-bottom-right-radius:0px;
  5568. border-bottom-left-radius:0px;
  5569. -moz-box-shadow:none;
  5570. -webkit-box-shadow:none;
  5571. box-shadow:none;
  5572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5573. font-weight:400;
  5574. font-style:normal;
  5575. font-size:14px;
  5576. color:#555555;
  5577. }
  5578. #u41972 {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:620px;
  5582. top:206px;
  5583. width:100px;
  5584. height:20px;
  5585. display:flex;
  5586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5587. font-weight:400;
  5588. font-style:normal;
  5589. font-size:14px;
  5590. color:#555555;
  5591. }
  5592. #u41972 .text {
  5593. position:absolute;
  5594. align-self:center;
  5595. padding:0px 0px 0px 0px;
  5596. box-sizing:border-box;
  5597. width:100%;
  5598. }
  5599. #u41972_text {
  5600. border-width:0px;
  5601. word-wrap:break-word;
  5602. text-transform:none;
  5603. }
  5604. #u41973_div {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:0px;
  5608. top:0px;
  5609. width:200px;
  5610. height:20px;
  5611. background:inherit;
  5612. background-color:rgba(255, 255, 255, 0);
  5613. border:none;
  5614. border-left:0px;
  5615. border-top:0px;
  5616. border-right:0px;
  5617. border-radius:0px;
  5618. border-bottom-right-radius:0px;
  5619. border-bottom-left-radius:0px;
  5620. -moz-box-shadow:none;
  5621. -webkit-box-shadow:none;
  5622. box-shadow:none;
  5623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5624. font-weight:400;
  5625. font-style:normal;
  5626. font-size:14px;
  5627. color:#555555;
  5628. }
  5629. #u41973 {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:720px;
  5633. top:206px;
  5634. width:200px;
  5635. height:20px;
  5636. display:flex;
  5637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5638. font-weight:400;
  5639. font-style:normal;
  5640. font-size:14px;
  5641. color:#555555;
  5642. }
  5643. #u41973 .text {
  5644. position:absolute;
  5645. align-self:center;
  5646. padding:0px 0px 0px 0px;
  5647. box-sizing:border-box;
  5648. width:100%;
  5649. }
  5650. #u41973_text {
  5651. border-width:0px;
  5652. word-wrap:break-word;
  5653. text-transform:none;
  5654. }
  5655. #u41974_div {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:80px;
  5661. height:30px;
  5662. background:inherit;
  5663. background-color:rgba(24, 144, 255, 0);
  5664. box-sizing:border-box;
  5665. border-width:1px;
  5666. border-style:solid;
  5667. border-color:rgba(24, 144, 255, 1);
  5668. border-radius:4px;
  5669. -moz-box-shadow:none;
  5670. -webkit-box-shadow:none;
  5671. box-shadow:none;
  5672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. font-size:12px;
  5676. color:#0099FF;
  5677. }
  5678. #u41974 {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:1196px;
  5682. top:186px;
  5683. width:80px;
  5684. height:30px;
  5685. display:flex;
  5686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5687. font-weight:400;
  5688. font-style:normal;
  5689. font-size:12px;
  5690. color:#0099FF;
  5691. }
  5692. #u41974 .text {
  5693. position:absolute;
  5694. align-self:center;
  5695. padding:2px 8px 2px 8px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u41974_text {
  5700. border-width:0px;
  5701. word-wrap:break-word;
  5702. text-transform:none;
  5703. }
  5704. #u41975 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:0px;
  5710. height:0px;
  5711. }
  5712. #u41976_div {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:1325px;
  5718. height:100px;
  5719. background:inherit;
  5720. background-color:rgba(255, 255, 255, 1);
  5721. border:none;
  5722. border-radius:9px;
  5723. -moz-box-shadow:none;
  5724. -webkit-box-shadow:none;
  5725. box-shadow:none;
  5726. }
  5727. #u41976 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:0px;
  5731. top:260px;
  5732. width:1325px;
  5733. height:100px;
  5734. display:flex;
  5735. }
  5736. #u41976 .text {
  5737. position:absolute;
  5738. align-self:center;
  5739. padding:2px 2px 2px 2px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u41976_text {
  5744. border-width:0px;
  5745. word-wrap:break-word;
  5746. text-transform:none;
  5747. visibility:hidden;
  5748. }
  5749. #u41977_div {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:0px;
  5753. top:0px;
  5754. width:57px;
  5755. height:20px;
  5756. background:inherit;
  5757. background-color:rgba(255, 255, 255, 0);
  5758. border:none;
  5759. border-left:0px;
  5760. border-top:0px;
  5761. border-right:0px;
  5762. border-radius:0px;
  5763. border-bottom-right-radius:0px;
  5764. border-bottom-left-radius:0px;
  5765. -moz-box-shadow:none;
  5766. -webkit-box-shadow:none;
  5767. box-shadow:none;
  5768. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5769. font-weight:500;
  5770. font-style:normal;
  5771. font-size:14px;
  5772. }
  5773. #u41977 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:20px;
  5777. top:280px;
  5778. width:57px;
  5779. height:20px;
  5780. display:flex;
  5781. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5782. font-weight:500;
  5783. font-style:normal;
  5784. font-size:14px;
  5785. }
  5786. #u41977 .text {
  5787. position:absolute;
  5788. align-self:center;
  5789. padding:0px 0px 0px 0px;
  5790. box-sizing:border-box;
  5791. width:100%;
  5792. }
  5793. #u41977_text {
  5794. border-width:0px;
  5795. white-space:nowrap;
  5796. text-transform:none;
  5797. }
  5798. #u41978_div {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:0px;
  5802. top:0px;
  5803. width:100px;
  5804. height:20px;
  5805. background:inherit;
  5806. background-color:rgba(255, 255, 255, 0);
  5807. border:none;
  5808. border-left:0px;
  5809. border-top:0px;
  5810. border-right:0px;
  5811. border-radius:0px;
  5812. border-bottom-right-radius:0px;
  5813. border-bottom-left-radius:0px;
  5814. -moz-box-shadow:none;
  5815. -webkit-box-shadow:none;
  5816. box-shadow:none;
  5817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5818. font-weight:400;
  5819. font-style:normal;
  5820. font-size:14px;
  5821. color:#555555;
  5822. }
  5823. #u41978 {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:20px;
  5827. top:316px;
  5828. width:100px;
  5829. height:20px;
  5830. display:flex;
  5831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5832. font-weight:400;
  5833. font-style:normal;
  5834. font-size:14px;
  5835. color:#555555;
  5836. }
  5837. #u41978 .text {
  5838. position:absolute;
  5839. align-self:center;
  5840. padding:0px 0px 0px 0px;
  5841. box-sizing:border-box;
  5842. width:100%;
  5843. }
  5844. #u41978_text {
  5845. border-width:0px;
  5846. word-wrap:break-word;
  5847. text-transform:none;
  5848. }
  5849. #u41979_div {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:200px;
  5855. height:20px;
  5856. background:inherit;
  5857. background-color:rgba(255, 255, 255, 0);
  5858. border:none;
  5859. border-left:0px;
  5860. border-top:0px;
  5861. border-right:0px;
  5862. border-radius:0px;
  5863. border-bottom-right-radius:0px;
  5864. border-bottom-left-radius:0px;
  5865. -moz-box-shadow:none;
  5866. -webkit-box-shadow:none;
  5867. box-shadow:none;
  5868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:14px;
  5872. color:#555555;
  5873. }
  5874. #u41979 {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:120px;
  5878. top:316px;
  5879. width:200px;
  5880. height:20px;
  5881. display:flex;
  5882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5883. font-weight:400;
  5884. font-style:normal;
  5885. font-size:14px;
  5886. color:#555555;
  5887. }
  5888. #u41979 .text {
  5889. position:absolute;
  5890. align-self:center;
  5891. padding:0px 0px 0px 0px;
  5892. box-sizing:border-box;
  5893. width:100%;
  5894. }
  5895. #u41979_text {
  5896. border-width:0px;
  5897. word-wrap:break-word;
  5898. text-transform:none;
  5899. }
  5900. #u41980_div {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:0px;
  5904. top:0px;
  5905. width:100px;
  5906. height:20px;
  5907. background:inherit;
  5908. background-color:rgba(255, 255, 255, 0);
  5909. border:none;
  5910. border-left:0px;
  5911. border-top:0px;
  5912. border-right:0px;
  5913. border-radius:0px;
  5914. border-bottom-right-radius:0px;
  5915. border-bottom-left-radius:0px;
  5916. -moz-box-shadow:none;
  5917. -webkit-box-shadow:none;
  5918. box-shadow:none;
  5919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5920. font-weight:400;
  5921. font-style:normal;
  5922. font-size:14px;
  5923. color:#555555;
  5924. }
  5925. #u41980 {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:320px;
  5929. top:316px;
  5930. width:100px;
  5931. height:20px;
  5932. display:flex;
  5933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5934. font-weight:400;
  5935. font-style:normal;
  5936. font-size:14px;
  5937. color:#555555;
  5938. }
  5939. #u41980 .text {
  5940. position:absolute;
  5941. align-self:center;
  5942. padding:0px 0px 0px 0px;
  5943. box-sizing:border-box;
  5944. width:100%;
  5945. }
  5946. #u41980_text {
  5947. border-width:0px;
  5948. word-wrap:break-word;
  5949. text-transform:none;
  5950. }
  5951. #u41981_div {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:0px;
  5955. top:0px;
  5956. width:200px;
  5957. height:20px;
  5958. background:inherit;
  5959. background-color:rgba(255, 255, 255, 0);
  5960. border:none;
  5961. border-left:0px;
  5962. border-top:0px;
  5963. border-right:0px;
  5964. border-radius:0px;
  5965. border-bottom-right-radius:0px;
  5966. border-bottom-left-radius:0px;
  5967. -moz-box-shadow:none;
  5968. -webkit-box-shadow:none;
  5969. box-shadow:none;
  5970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5971. font-weight:400;
  5972. font-style:normal;
  5973. font-size:14px;
  5974. color:#555555;
  5975. }
  5976. #u41981 {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:420px;
  5980. top:316px;
  5981. width:200px;
  5982. height:20px;
  5983. display:flex;
  5984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. font-size:14px;
  5988. color:#555555;
  5989. }
  5990. #u41981 .text {
  5991. position:absolute;
  5992. align-self:center;
  5993. padding:0px 0px 0px 0px;
  5994. box-sizing:border-box;
  5995. width:100%;
  5996. }
  5997. #u41981_text {
  5998. border-width:0px;
  5999. word-wrap:break-word;
  6000. text-transform:none;
  6001. }
  6002. #u41982_div {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:0px;
  6006. top:0px;
  6007. width:100px;
  6008. height:20px;
  6009. background:inherit;
  6010. background-color:rgba(255, 255, 255, 0);
  6011. border:none;
  6012. border-left:0px;
  6013. border-top:0px;
  6014. border-right:0px;
  6015. border-radius:0px;
  6016. border-bottom-right-radius:0px;
  6017. border-bottom-left-radius:0px;
  6018. -moz-box-shadow:none;
  6019. -webkit-box-shadow:none;
  6020. box-shadow:none;
  6021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6022. font-weight:400;
  6023. font-style:normal;
  6024. font-size:14px;
  6025. color:#555555;
  6026. }
  6027. #u41982 {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:620px;
  6031. top:316px;
  6032. width:100px;
  6033. height:20px;
  6034. display:flex;
  6035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:14px;
  6039. color:#555555;
  6040. }
  6041. #u41982 .text {
  6042. position:absolute;
  6043. align-self:center;
  6044. padding:0px 0px 0px 0px;
  6045. box-sizing:border-box;
  6046. width:100%;
  6047. }
  6048. #u41982_text {
  6049. border-width:0px;
  6050. word-wrap:break-word;
  6051. text-transform:none;
  6052. }
  6053. #u41983_div {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:200px;
  6059. height:20px;
  6060. background:inherit;
  6061. background-color:rgba(255, 255, 255, 0);
  6062. border:none;
  6063. border-left:0px;
  6064. border-top:0px;
  6065. border-right:0px;
  6066. border-radius:0px;
  6067. border-bottom-right-radius:0px;
  6068. border-bottom-left-radius:0px;
  6069. -moz-box-shadow:none;
  6070. -webkit-box-shadow:none;
  6071. box-shadow:none;
  6072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:14px;
  6076. color:#555555;
  6077. }
  6078. #u41983 {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:720px;
  6082. top:316px;
  6083. width:200px;
  6084. height:20px;
  6085. display:flex;
  6086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6087. font-weight:400;
  6088. font-style:normal;
  6089. font-size:14px;
  6090. color:#555555;
  6091. }
  6092. #u41983 .text {
  6093. position:absolute;
  6094. align-self:center;
  6095. padding:0px 0px 0px 0px;
  6096. box-sizing:border-box;
  6097. width:100%;
  6098. }
  6099. #u41983_text {
  6100. border-width:0px;
  6101. word-wrap:break-word;
  6102. text-transform:none;
  6103. }
  6104. #u41984_div {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:0px;
  6108. top:0px;
  6109. width:80px;
  6110. height:30px;
  6111. background:inherit;
  6112. background-color:rgba(24, 144, 255, 0);
  6113. box-sizing:border-box;
  6114. border-width:1px;
  6115. border-style:solid;
  6116. border-color:rgba(24, 144, 255, 1);
  6117. border-radius:4px;
  6118. -moz-box-shadow:none;
  6119. -webkit-box-shadow:none;
  6120. box-shadow:none;
  6121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6122. font-weight:400;
  6123. font-style:normal;
  6124. font-size:12px;
  6125. color:#0099FF;
  6126. }
  6127. #u41984 {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:1196px;
  6131. top:296px;
  6132. width:80px;
  6133. height:30px;
  6134. display:flex;
  6135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6136. font-weight:400;
  6137. font-style:normal;
  6138. font-size:12px;
  6139. color:#0099FF;
  6140. }
  6141. #u41984 .text {
  6142. position:absolute;
  6143. align-self:center;
  6144. padding:2px 8px 2px 8px;
  6145. box-sizing:border-box;
  6146. width:100%;
  6147. }
  6148. #u41984_text {
  6149. border-width:0px;
  6150. word-wrap:break-word;
  6151. text-transform:none;
  6152. }
  6153. #u41985 {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:0px;
  6159. height:0px;
  6160. }
  6161. #u41986_div {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:0px;
  6165. top:0px;
  6166. width:1325px;
  6167. height:150px;
  6168. background:inherit;
  6169. background-color:rgba(255, 255, 255, 1);
  6170. border:none;
  6171. border-radius:9px;
  6172. -moz-box-shadow:none;
  6173. -webkit-box-shadow:none;
  6174. box-shadow:none;
  6175. }
  6176. #u41986 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:370px;
  6181. width:1325px;
  6182. height:150px;
  6183. display:flex;
  6184. }
  6185. #u41986 .text {
  6186. position:absolute;
  6187. align-self:center;
  6188. padding:2px 2px 2px 2px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u41986_text {
  6193. border-width:0px;
  6194. word-wrap:break-word;
  6195. text-transform:none;
  6196. visibility:hidden;
  6197. }
  6198. #u41987_div {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:71px;
  6204. height:20px;
  6205. background:inherit;
  6206. background-color:rgba(255, 255, 255, 0);
  6207. border:none;
  6208. border-left:0px;
  6209. border-top:0px;
  6210. border-right:0px;
  6211. border-radius:0px;
  6212. border-bottom-right-radius:0px;
  6213. border-bottom-left-radius:0px;
  6214. -moz-box-shadow:none;
  6215. -webkit-box-shadow:none;
  6216. box-shadow:none;
  6217. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6218. font-weight:500;
  6219. font-style:normal;
  6220. font-size:14px;
  6221. }
  6222. #u41987 {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:20px;
  6226. top:390px;
  6227. width:71px;
  6228. height:20px;
  6229. display:flex;
  6230. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6231. font-weight:500;
  6232. font-style:normal;
  6233. font-size:14px;
  6234. }
  6235. #u41987 .text {
  6236. position:absolute;
  6237. align-self:center;
  6238. padding:0px 0px 0px 0px;
  6239. box-sizing:border-box;
  6240. width:100%;
  6241. }
  6242. #u41987_text {
  6243. border-width:0px;
  6244. white-space:nowrap;
  6245. text-transform:none;
  6246. }
  6247. #u41988_div {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:0px;
  6251. top:0px;
  6252. width:100px;
  6253. height:20px;
  6254. background:inherit;
  6255. background-color:rgba(255, 255, 255, 0);
  6256. border:none;
  6257. border-left:0px;
  6258. border-top:0px;
  6259. border-right:0px;
  6260. border-radius:0px;
  6261. border-bottom-right-radius:0px;
  6262. border-bottom-left-radius:0px;
  6263. -moz-box-shadow:none;
  6264. -webkit-box-shadow:none;
  6265. box-shadow:none;
  6266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6267. font-weight:400;
  6268. font-style:normal;
  6269. font-size:14px;
  6270. color:#555555;
  6271. }
  6272. #u41988 {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:20px;
  6276. top:426px;
  6277. width:100px;
  6278. height:20px;
  6279. display:flex;
  6280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6281. font-weight:400;
  6282. font-style:normal;
  6283. font-size:14px;
  6284. color:#555555;
  6285. }
  6286. #u41988 .text {
  6287. position:absolute;
  6288. align-self:center;
  6289. padding:0px 0px 0px 0px;
  6290. box-sizing:border-box;
  6291. width:100%;
  6292. }
  6293. #u41988_text {
  6294. border-width:0px;
  6295. word-wrap:break-word;
  6296. text-transform:none;
  6297. }
  6298. #u41989_div {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:0px;
  6302. top:0px;
  6303. width:200px;
  6304. height:20px;
  6305. background:inherit;
  6306. background-color:rgba(255, 255, 255, 0);
  6307. border:none;
  6308. border-left:0px;
  6309. border-top:0px;
  6310. border-right:0px;
  6311. border-radius:0px;
  6312. border-bottom-right-radius:0px;
  6313. border-bottom-left-radius:0px;
  6314. -moz-box-shadow:none;
  6315. -webkit-box-shadow:none;
  6316. box-shadow:none;
  6317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6318. font-weight:400;
  6319. font-style:normal;
  6320. font-size:14px;
  6321. color:#555555;
  6322. }
  6323. #u41989 {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:120px;
  6327. top:426px;
  6328. width:200px;
  6329. height:20px;
  6330. display:flex;
  6331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6332. font-weight:400;
  6333. font-style:normal;
  6334. font-size:14px;
  6335. color:#555555;
  6336. }
  6337. #u41989 .text {
  6338. position:absolute;
  6339. align-self:center;
  6340. padding:0px 0px 0px 0px;
  6341. box-sizing:border-box;
  6342. width:100%;
  6343. }
  6344. #u41989_text {
  6345. border-width:0px;
  6346. word-wrap:break-word;
  6347. text-transform:none;
  6348. }
  6349. #u41990_div {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:0px;
  6353. top:0px;
  6354. width:100px;
  6355. height:20px;
  6356. background:inherit;
  6357. background-color:rgba(255, 255, 255, 0);
  6358. border:none;
  6359. border-left:0px;
  6360. border-top:0px;
  6361. border-right:0px;
  6362. border-radius:0px;
  6363. border-bottom-right-radius:0px;
  6364. border-bottom-left-radius:0px;
  6365. -moz-box-shadow:none;
  6366. -webkit-box-shadow:none;
  6367. box-shadow:none;
  6368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6369. font-weight:400;
  6370. font-style:normal;
  6371. font-size:14px;
  6372. color:#555555;
  6373. }
  6374. #u41990 {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:320px;
  6378. top:426px;
  6379. width:100px;
  6380. height:20px;
  6381. display:flex;
  6382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6383. font-weight:400;
  6384. font-style:normal;
  6385. font-size:14px;
  6386. color:#555555;
  6387. }
  6388. #u41990 .text {
  6389. position:absolute;
  6390. align-self:center;
  6391. padding:0px 0px 0px 0px;
  6392. box-sizing:border-box;
  6393. width:100%;
  6394. }
  6395. #u41990_text {
  6396. border-width:0px;
  6397. word-wrap:break-word;
  6398. text-transform:none;
  6399. }
  6400. #u41991_div {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:200px;
  6406. height:20px;
  6407. background:inherit;
  6408. background-color:rgba(255, 255, 255, 0);
  6409. border:none;
  6410. border-left:0px;
  6411. border-top:0px;
  6412. border-right:0px;
  6413. border-radius:0px;
  6414. border-bottom-right-radius:0px;
  6415. border-bottom-left-radius:0px;
  6416. -moz-box-shadow:none;
  6417. -webkit-box-shadow:none;
  6418. box-shadow:none;
  6419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:14px;
  6423. color:#555555;
  6424. }
  6425. #u41991 {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:420px;
  6429. top:426px;
  6430. width:200px;
  6431. height:20px;
  6432. display:flex;
  6433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6434. font-weight:400;
  6435. font-style:normal;
  6436. font-size:14px;
  6437. color:#555555;
  6438. }
  6439. #u41991 .text {
  6440. position:absolute;
  6441. align-self:center;
  6442. padding:0px 0px 0px 0px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u41991_text {
  6447. border-width:0px;
  6448. word-wrap:break-word;
  6449. text-transform:none;
  6450. }
  6451. #u41992_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:100px;
  6457. height:20px;
  6458. background:inherit;
  6459. background-color:rgba(255, 255, 255, 0);
  6460. border:none;
  6461. border-left:0px;
  6462. border-top:0px;
  6463. border-right:0px;
  6464. border-radius:0px;
  6465. border-bottom-right-radius:0px;
  6466. border-bottom-left-radius:0px;
  6467. -moz-box-shadow:none;
  6468. -webkit-box-shadow:none;
  6469. box-shadow:none;
  6470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6471. font-weight:400;
  6472. font-style:normal;
  6473. font-size:14px;
  6474. color:#555555;
  6475. }
  6476. #u41992 {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:620px;
  6480. top:426px;
  6481. width:100px;
  6482. height:20px;
  6483. display:flex;
  6484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6485. font-weight:400;
  6486. font-style:normal;
  6487. font-size:14px;
  6488. color:#555555;
  6489. }
  6490. #u41992 .text {
  6491. position:absolute;
  6492. align-self:center;
  6493. padding:0px 0px 0px 0px;
  6494. box-sizing:border-box;
  6495. width:100%;
  6496. }
  6497. #u41992_text {
  6498. border-width:0px;
  6499. word-wrap:break-word;
  6500. text-transform:none;
  6501. }
  6502. #u41993_div {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:0px;
  6506. top:0px;
  6507. width:200px;
  6508. height:20px;
  6509. background:inherit;
  6510. background-color:rgba(255, 255, 255, 0);
  6511. border:none;
  6512. border-left:0px;
  6513. border-top:0px;
  6514. border-right:0px;
  6515. border-radius:0px;
  6516. border-bottom-right-radius:0px;
  6517. border-bottom-left-radius:0px;
  6518. -moz-box-shadow:none;
  6519. -webkit-box-shadow:none;
  6520. box-shadow:none;
  6521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:14px;
  6525. color:#555555;
  6526. }
  6527. #u41993 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:720px;
  6531. top:426px;
  6532. width:200px;
  6533. height:20px;
  6534. display:flex;
  6535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6536. font-weight:400;
  6537. font-style:normal;
  6538. font-size:14px;
  6539. color:#555555;
  6540. }
  6541. #u41993 .text {
  6542. position:absolute;
  6543. align-self:center;
  6544. padding:0px 0px 0px 0px;
  6545. box-sizing:border-box;
  6546. width:100%;
  6547. }
  6548. #u41993_text {
  6549. border-width:0px;
  6550. word-wrap:break-word;
  6551. text-transform:none;
  6552. }
  6553. #u41994_div {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:0px;
  6557. top:0px;
  6558. width:100px;
  6559. height:20px;
  6560. background:inherit;
  6561. background-color:rgba(255, 255, 255, 0);
  6562. border:none;
  6563. border-left:0px;
  6564. border-top:0px;
  6565. border-right:0px;
  6566. border-radius:0px;
  6567. border-bottom-right-radius:0px;
  6568. border-bottom-left-radius:0px;
  6569. -moz-box-shadow:none;
  6570. -webkit-box-shadow:none;
  6571. box-shadow:none;
  6572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6573. font-weight:400;
  6574. font-style:normal;
  6575. font-size:14px;
  6576. color:#555555;
  6577. }
  6578. #u41994 {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:20px;
  6582. top:466px;
  6583. width:100px;
  6584. height:20px;
  6585. display:flex;
  6586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6587. font-weight:400;
  6588. font-style:normal;
  6589. font-size:14px;
  6590. color:#555555;
  6591. }
  6592. #u41994 .text {
  6593. position:absolute;
  6594. align-self:center;
  6595. padding:0px 0px 0px 0px;
  6596. box-sizing:border-box;
  6597. width:100%;
  6598. }
  6599. #u41994_text {
  6600. border-width:0px;
  6601. word-wrap:break-word;
  6602. text-transform:none;
  6603. }
  6604. #u41995_div {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:0px;
  6609. width:200px;
  6610. height:20px;
  6611. background:inherit;
  6612. background-color:rgba(255, 255, 255, 0);
  6613. border:none;
  6614. border-left:0px;
  6615. border-top:0px;
  6616. border-right:0px;
  6617. border-radius:0px;
  6618. border-bottom-right-radius:0px;
  6619. border-bottom-left-radius:0px;
  6620. -moz-box-shadow:none;
  6621. -webkit-box-shadow:none;
  6622. box-shadow:none;
  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. #u41995 {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:120px;
  6633. top:466px;
  6634. width:200px;
  6635. height:20px;
  6636. display:flex;
  6637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6638. font-weight:400;
  6639. font-style:normal;
  6640. font-size:14px;
  6641. color:#555555;
  6642. }
  6643. #u41995 .text {
  6644. position:absolute;
  6645. align-self:center;
  6646. padding:0px 0px 0px 0px;
  6647. box-sizing:border-box;
  6648. width:100%;
  6649. }
  6650. #u41995_text {
  6651. border-width:0px;
  6652. word-wrap:break-word;
  6653. text-transform:none;
  6654. }
  6655. #u41996_div {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:0px;
  6659. top:0px;
  6660. width:100px;
  6661. height:20px;
  6662. background:inherit;
  6663. background-color:rgba(255, 255, 255, 0);
  6664. border:none;
  6665. border-left:0px;
  6666. border-top:0px;
  6667. border-right:0px;
  6668. border-radius:0px;
  6669. border-bottom-right-radius:0px;
  6670. border-bottom-left-radius:0px;
  6671. -moz-box-shadow:none;
  6672. -webkit-box-shadow:none;
  6673. box-shadow:none;
  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. #u41996 {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:320px;
  6684. top:466px;
  6685. width:100px;
  6686. height:20px;
  6687. display:flex;
  6688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6689. font-weight:400;
  6690. font-style:normal;
  6691. font-size:14px;
  6692. color:#555555;
  6693. }
  6694. #u41996 .text {
  6695. position:absolute;
  6696. align-self:center;
  6697. padding:0px 0px 0px 0px;
  6698. box-sizing:border-box;
  6699. width:100%;
  6700. }
  6701. #u41996_text {
  6702. border-width:0px;
  6703. word-wrap:break-word;
  6704. text-transform:none;
  6705. }
  6706. #u41997_div {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:200px;
  6712. height:20px;
  6713. background:inherit;
  6714. background-color:rgba(255, 255, 255, 0);
  6715. border:none;
  6716. border-left:0px;
  6717. border-top:0px;
  6718. border-right:0px;
  6719. border-radius:0px;
  6720. border-bottom-right-radius:0px;
  6721. border-bottom-left-radius:0px;
  6722. -moz-box-shadow:none;
  6723. -webkit-box-shadow:none;
  6724. box-shadow:none;
  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. #u41997 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:420px;
  6735. top:466px;
  6736. width:200px;
  6737. height:20px;
  6738. display:flex;
  6739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:14px;
  6743. color:#555555;
  6744. }
  6745. #u41997 .text {
  6746. position:absolute;
  6747. align-self:center;
  6748. padding:0px 0px 0px 0px;
  6749. box-sizing:border-box;
  6750. width:100%;
  6751. }
  6752. #u41997_text {
  6753. border-width:0px;
  6754. word-wrap:break-word;
  6755. text-transform:none;
  6756. }
  6757. #u41998_div {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:0px;
  6761. top:0px;
  6762. width:80px;
  6763. height:30px;
  6764. background:inherit;
  6765. background-color:rgba(24, 144, 255, 0);
  6766. box-sizing:border-box;
  6767. border-width:1px;
  6768. border-style:solid;
  6769. border-color:rgba(24, 144, 255, 1);
  6770. border-radius:4px;
  6771. -moz-box-shadow:none;
  6772. -webkit-box-shadow:none;
  6773. box-shadow:none;
  6774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6775. font-weight:400;
  6776. font-style:normal;
  6777. font-size:12px;
  6778. color:#0099FF;
  6779. }
  6780. #u41998 {
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:1196px;
  6784. top:426px;
  6785. width:80px;
  6786. height:30px;
  6787. display:flex;
  6788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6789. font-weight:400;
  6790. font-style:normal;
  6791. font-size:12px;
  6792. color:#0099FF;
  6793. }
  6794. #u41998 .text {
  6795. position:absolute;
  6796. align-self:center;
  6797. padding:2px 8px 2px 8px;
  6798. box-sizing:border-box;
  6799. width:100%;
  6800. }
  6801. #u41998_text {
  6802. border-width:0px;
  6803. word-wrap:break-word;
  6804. text-transform:none;
  6805. }
  6806. #u41999 {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:0px;
  6810. top:0px;
  6811. width:0px;
  6812. height:0px;
  6813. }
  6814. #u42000_div {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:0px;
  6818. top:0px;
  6819. width:1325px;
  6820. height:100px;
  6821. background:inherit;
  6822. background-color:rgba(255, 255, 255, 1);
  6823. border:none;
  6824. border-radius:9px;
  6825. -moz-box-shadow:none;
  6826. -webkit-box-shadow:none;
  6827. box-shadow:none;
  6828. }
  6829. #u42000 {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:0px;
  6833. top:530px;
  6834. width:1325px;
  6835. height:100px;
  6836. display:flex;
  6837. }
  6838. #u42000 .text {
  6839. position:absolute;
  6840. align-self:center;
  6841. padding:2px 2px 2px 2px;
  6842. box-sizing:border-box;
  6843. width:100%;
  6844. }
  6845. #u42000_text {
  6846. border-width:0px;
  6847. word-wrap:break-word;
  6848. text-transform:none;
  6849. visibility:hidden;
  6850. }
  6851. #u42001_div {
  6852. border-width:0px;
  6853. position:absolute;
  6854. left:0px;
  6855. top:0px;
  6856. width:71px;
  6857. height:20px;
  6858. background:inherit;
  6859. background-color:rgba(255, 255, 255, 0);
  6860. border:none;
  6861. border-left:0px;
  6862. border-top:0px;
  6863. border-right:0px;
  6864. border-radius:0px;
  6865. border-bottom-right-radius:0px;
  6866. border-bottom-left-radius:0px;
  6867. -moz-box-shadow:none;
  6868. -webkit-box-shadow:none;
  6869. box-shadow:none;
  6870. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6871. font-weight:500;
  6872. font-style:normal;
  6873. font-size:14px;
  6874. }
  6875. #u42001 {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:20px;
  6879. top:550px;
  6880. width:71px;
  6881. height:20px;
  6882. display:flex;
  6883. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6884. font-weight:500;
  6885. font-style:normal;
  6886. font-size:14px;
  6887. }
  6888. #u42001 .text {
  6889. position:absolute;
  6890. align-self:center;
  6891. padding:0px 0px 0px 0px;
  6892. box-sizing:border-box;
  6893. width:100%;
  6894. }
  6895. #u42001_text {
  6896. border-width:0px;
  6897. white-space:nowrap;
  6898. text-transform:none;
  6899. }
  6900. #u42002_div {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:100px;
  6906. height:20px;
  6907. background:inherit;
  6908. background-color:rgba(255, 255, 255, 0);
  6909. border:none;
  6910. border-left:0px;
  6911. border-top:0px;
  6912. border-right:0px;
  6913. border-radius:0px;
  6914. border-bottom-right-radius:0px;
  6915. border-bottom-left-radius:0px;
  6916. -moz-box-shadow:none;
  6917. -webkit-box-shadow:none;
  6918. box-shadow:none;
  6919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6920. font-weight:400;
  6921. font-style:normal;
  6922. font-size:14px;
  6923. color:#555555;
  6924. }
  6925. #u42002 {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:20px;
  6929. top:586px;
  6930. width:100px;
  6931. height:20px;
  6932. display:flex;
  6933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6934. font-weight:400;
  6935. font-style:normal;
  6936. font-size:14px;
  6937. color:#555555;
  6938. }
  6939. #u42002 .text {
  6940. position:absolute;
  6941. align-self:center;
  6942. padding:0px 0px 0px 0px;
  6943. box-sizing:border-box;
  6944. width:100%;
  6945. }
  6946. #u42002_text {
  6947. border-width:0px;
  6948. word-wrap:break-word;
  6949. text-transform:none;
  6950. }
  6951. #u42003_div {
  6952. border-width:0px;
  6953. position:absolute;
  6954. left:0px;
  6955. top:0px;
  6956. width:200px;
  6957. height:20px;
  6958. background:inherit;
  6959. background-color:rgba(255, 255, 255, 0);
  6960. border:none;
  6961. border-left:0px;
  6962. border-top:0px;
  6963. border-right:0px;
  6964. border-radius:0px;
  6965. border-bottom-right-radius:0px;
  6966. border-bottom-left-radius:0px;
  6967. -moz-box-shadow:none;
  6968. -webkit-box-shadow:none;
  6969. box-shadow:none;
  6970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6971. font-weight:400;
  6972. font-style:normal;
  6973. font-size:14px;
  6974. color:#555555;
  6975. }
  6976. #u42003 {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:120px;
  6980. top:586px;
  6981. width:200px;
  6982. height:20px;
  6983. display:flex;
  6984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6985. font-weight:400;
  6986. font-style:normal;
  6987. font-size:14px;
  6988. color:#555555;
  6989. }
  6990. #u42003 .text {
  6991. position:absolute;
  6992. align-self:center;
  6993. padding:0px 0px 0px 0px;
  6994. box-sizing:border-box;
  6995. width:100%;
  6996. }
  6997. #u42003_text {
  6998. border-width:0px;
  6999. word-wrap:break-word;
  7000. text-transform:none;
  7001. }
  7002. #u42004_div {
  7003. border-width:0px;
  7004. position:absolute;
  7005. left:0px;
  7006. top:0px;
  7007. width:100px;
  7008. height:20px;
  7009. background:inherit;
  7010. background-color:rgba(255, 255, 255, 0);
  7011. border:none;
  7012. border-left:0px;
  7013. border-top:0px;
  7014. border-right:0px;
  7015. border-radius:0px;
  7016. border-bottom-right-radius:0px;
  7017. border-bottom-left-radius:0px;
  7018. -moz-box-shadow:none;
  7019. -webkit-box-shadow:none;
  7020. box-shadow:none;
  7021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7022. font-weight:400;
  7023. font-style:normal;
  7024. font-size:14px;
  7025. color:#555555;
  7026. }
  7027. #u42004 {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:320px;
  7031. top:586px;
  7032. width:100px;
  7033. height:20px;
  7034. display:flex;
  7035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7036. font-weight:400;
  7037. font-style:normal;
  7038. font-size:14px;
  7039. color:#555555;
  7040. }
  7041. #u42004 .text {
  7042. position:absolute;
  7043. align-self:center;
  7044. padding:0px 0px 0px 0px;
  7045. box-sizing:border-box;
  7046. width:100%;
  7047. }
  7048. #u42004_text {
  7049. border-width:0px;
  7050. word-wrap:break-word;
  7051. text-transform:none;
  7052. }
  7053. #u42005_div {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:200px;
  7059. height:20px;
  7060. background:inherit;
  7061. background-color:rgba(255, 255, 255, 0);
  7062. border:none;
  7063. border-left:0px;
  7064. border-top:0px;
  7065. border-right:0px;
  7066. border-radius:0px;
  7067. border-bottom-right-radius:0px;
  7068. border-bottom-left-radius:0px;
  7069. -moz-box-shadow:none;
  7070. -webkit-box-shadow:none;
  7071. box-shadow:none;
  7072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7073. font-weight:400;
  7074. font-style:normal;
  7075. font-size:14px;
  7076. color:#555555;
  7077. }
  7078. #u42005 {
  7079. border-width:0px;
  7080. position:absolute;
  7081. left:420px;
  7082. top:586px;
  7083. width:200px;
  7084. height:20px;
  7085. display:flex;
  7086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7087. font-weight:400;
  7088. font-style:normal;
  7089. font-size:14px;
  7090. color:#555555;
  7091. }
  7092. #u42005 .text {
  7093. position:absolute;
  7094. align-self:center;
  7095. padding:0px 0px 0px 0px;
  7096. box-sizing:border-box;
  7097. width:100%;
  7098. }
  7099. #u42005_text {
  7100. border-width:0px;
  7101. word-wrap:break-word;
  7102. text-transform:none;
  7103. }
  7104. #u42006_div {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:0px;
  7108. top:0px;
  7109. width:100px;
  7110. height:20px;
  7111. background:inherit;
  7112. background-color:rgba(255, 255, 255, 0);
  7113. border:none;
  7114. border-left:0px;
  7115. border-top:0px;
  7116. border-right:0px;
  7117. border-radius:0px;
  7118. border-bottom-right-radius:0px;
  7119. border-bottom-left-radius:0px;
  7120. -moz-box-shadow:none;
  7121. -webkit-box-shadow:none;
  7122. box-shadow:none;
  7123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7124. font-weight:400;
  7125. font-style:normal;
  7126. font-size:14px;
  7127. color:#555555;
  7128. }
  7129. #u42006 {
  7130. border-width:0px;
  7131. position:absolute;
  7132. left:620px;
  7133. top:586px;
  7134. width:100px;
  7135. height:20px;
  7136. display:flex;
  7137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7138. font-weight:400;
  7139. font-style:normal;
  7140. font-size:14px;
  7141. color:#555555;
  7142. }
  7143. #u42006 .text {
  7144. position:absolute;
  7145. align-self:center;
  7146. padding:0px 0px 0px 0px;
  7147. box-sizing:border-box;
  7148. width:100%;
  7149. }
  7150. #u42006_text {
  7151. border-width:0px;
  7152. word-wrap:break-word;
  7153. text-transform:none;
  7154. }
  7155. #u42007_div {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:0px;
  7159. top:0px;
  7160. width:200px;
  7161. height:20px;
  7162. background:inherit;
  7163. background-color:rgba(255, 255, 255, 0);
  7164. border:none;
  7165. border-left:0px;
  7166. border-top:0px;
  7167. border-right:0px;
  7168. border-radius:0px;
  7169. border-bottom-right-radius:0px;
  7170. border-bottom-left-radius:0px;
  7171. -moz-box-shadow:none;
  7172. -webkit-box-shadow:none;
  7173. box-shadow:none;
  7174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7175. font-weight:400;
  7176. font-style:normal;
  7177. font-size:14px;
  7178. color:#555555;
  7179. }
  7180. #u42007 {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:720px;
  7184. top:586px;
  7185. width:200px;
  7186. height:20px;
  7187. display:flex;
  7188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7189. font-weight:400;
  7190. font-style:normal;
  7191. font-size:14px;
  7192. color:#555555;
  7193. }
  7194. #u42007 .text {
  7195. position:absolute;
  7196. align-self:center;
  7197. padding:0px 0px 0px 0px;
  7198. box-sizing:border-box;
  7199. width:100%;
  7200. }
  7201. #u42007_text {
  7202. border-width:0px;
  7203. word-wrap:break-word;
  7204. text-transform:none;
  7205. }
  7206. #u42008_div {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:0px;
  7210. top:0px;
  7211. width:80px;
  7212. height:30px;
  7213. background:inherit;
  7214. background-color:rgba(24, 144, 255, 0);
  7215. box-sizing:border-box;
  7216. border-width:1px;
  7217. border-style:solid;
  7218. border-color:rgba(24, 144, 255, 1);
  7219. border-radius:4px;
  7220. -moz-box-shadow:none;
  7221. -webkit-box-shadow:none;
  7222. box-shadow:none;
  7223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7224. font-weight:400;
  7225. font-style:normal;
  7226. font-size:12px;
  7227. color:#0099FF;
  7228. }
  7229. #u42008 {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:1196px;
  7233. top:565px;
  7234. width:80px;
  7235. height:30px;
  7236. display:flex;
  7237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7238. font-weight:400;
  7239. font-style:normal;
  7240. font-size:12px;
  7241. color:#0099FF;
  7242. }
  7243. #u42008 .text {
  7244. position:absolute;
  7245. align-self:center;
  7246. padding:2px 8px 2px 8px;
  7247. box-sizing:border-box;
  7248. width:100%;
  7249. }
  7250. #u42008_text {
  7251. border-width:0px;
  7252. word-wrap:break-word;
  7253. text-transform:none;
  7254. }
  7255. #u42009 {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:0px;
  7259. top:0px;
  7260. width:0px;
  7261. height:0px;
  7262. }
  7263. #u42010_div {
  7264. border-width:0px;
  7265. position:absolute;
  7266. left:0px;
  7267. top:0px;
  7268. width:1325px;
  7269. height:100px;
  7270. background:inherit;
  7271. background-color:rgba(255, 255, 255, 1);
  7272. border:none;
  7273. border-radius:9px;
  7274. -moz-box-shadow:none;
  7275. -webkit-box-shadow:none;
  7276. box-shadow:none;
  7277. }
  7278. #u42010 {
  7279. border-width:0px;
  7280. position:absolute;
  7281. left:0px;
  7282. top:640px;
  7283. width:1325px;
  7284. height:100px;
  7285. display:flex;
  7286. }
  7287. #u42010 .text {
  7288. position:absolute;
  7289. align-self:center;
  7290. padding:2px 2px 2px 2px;
  7291. box-sizing:border-box;
  7292. width:100%;
  7293. }
  7294. #u42010_text {
  7295. border-width:0px;
  7296. word-wrap:break-word;
  7297. text-transform:none;
  7298. visibility:hidden;
  7299. }
  7300. #u42011_div {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:0px;
  7304. top:0px;
  7305. width:57px;
  7306. height:20px;
  7307. background:inherit;
  7308. background-color:rgba(255, 255, 255, 0);
  7309. border:none;
  7310. border-left:0px;
  7311. border-top:0px;
  7312. border-right:0px;
  7313. border-radius:0px;
  7314. border-bottom-right-radius:0px;
  7315. border-bottom-left-radius:0px;
  7316. -moz-box-shadow:none;
  7317. -webkit-box-shadow:none;
  7318. box-shadow:none;
  7319. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7320. font-weight:500;
  7321. font-style:normal;
  7322. font-size:14px;
  7323. }
  7324. #u42011 {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:20px;
  7328. top:660px;
  7329. width:57px;
  7330. height:20px;
  7331. display:flex;
  7332. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7333. font-weight:500;
  7334. font-style:normal;
  7335. font-size:14px;
  7336. }
  7337. #u42011 .text {
  7338. position:absolute;
  7339. align-self:center;
  7340. padding:0px 0px 0px 0px;
  7341. box-sizing:border-box;
  7342. width:100%;
  7343. }
  7344. #u42011_text {
  7345. border-width:0px;
  7346. white-space:nowrap;
  7347. text-transform:none;
  7348. }
  7349. #u42012_div {
  7350. border-width:0px;
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:100px;
  7355. height:20px;
  7356. background:inherit;
  7357. background-color:rgba(255, 255, 255, 0);
  7358. border:none;
  7359. border-left:0px;
  7360. border-top:0px;
  7361. border-right:0px;
  7362. border-radius:0px;
  7363. border-bottom-right-radius:0px;
  7364. border-bottom-left-radius:0px;
  7365. -moz-box-shadow:none;
  7366. -webkit-box-shadow:none;
  7367. box-shadow:none;
  7368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7369. font-weight:400;
  7370. font-style:normal;
  7371. font-size:14px;
  7372. color:#555555;
  7373. }
  7374. #u42012 {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:20px;
  7378. top:696px;
  7379. width:100px;
  7380. height:20px;
  7381. display:flex;
  7382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7383. font-weight:400;
  7384. font-style:normal;
  7385. font-size:14px;
  7386. color:#555555;
  7387. }
  7388. #u42012 .text {
  7389. position:absolute;
  7390. align-self:center;
  7391. padding:0px 0px 0px 0px;
  7392. box-sizing:border-box;
  7393. width:100%;
  7394. }
  7395. #u42012_text {
  7396. border-width:0px;
  7397. word-wrap:break-word;
  7398. text-transform:none;
  7399. }
  7400. #u42013_div {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:0px;
  7404. top:0px;
  7405. width:200px;
  7406. height:20px;
  7407. background:inherit;
  7408. background-color:rgba(255, 255, 255, 0);
  7409. border:none;
  7410. border-left:0px;
  7411. border-top:0px;
  7412. border-right:0px;
  7413. border-radius:0px;
  7414. border-bottom-right-radius:0px;
  7415. border-bottom-left-radius:0px;
  7416. -moz-box-shadow:none;
  7417. -webkit-box-shadow:none;
  7418. box-shadow:none;
  7419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7420. font-weight:400;
  7421. font-style:normal;
  7422. font-size:14px;
  7423. color:#555555;
  7424. }
  7425. #u42013 {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:120px;
  7429. top:696px;
  7430. width:200px;
  7431. height:20px;
  7432. display:flex;
  7433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7434. font-weight:400;
  7435. font-style:normal;
  7436. font-size:14px;
  7437. color:#555555;
  7438. }
  7439. #u42013 .text {
  7440. position:absolute;
  7441. align-self:center;
  7442. padding:0px 0px 0px 0px;
  7443. box-sizing:border-box;
  7444. width:100%;
  7445. }
  7446. #u42013_text {
  7447. border-width:0px;
  7448. word-wrap:break-word;
  7449. text-transform:none;
  7450. }
  7451. #u42014_div {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:0px;
  7455. top:0px;
  7456. width:100px;
  7457. height:20px;
  7458. background:inherit;
  7459. background-color:rgba(255, 255, 255, 0);
  7460. border:none;
  7461. border-left:0px;
  7462. border-top:0px;
  7463. border-right:0px;
  7464. border-radius:0px;
  7465. border-bottom-right-radius:0px;
  7466. border-bottom-left-radius:0px;
  7467. -moz-box-shadow:none;
  7468. -webkit-box-shadow:none;
  7469. box-shadow:none;
  7470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7471. font-weight:400;
  7472. font-style:normal;
  7473. font-size:14px;
  7474. color:#555555;
  7475. }
  7476. #u42014 {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:320px;
  7480. top:696px;
  7481. width:100px;
  7482. height:20px;
  7483. display:flex;
  7484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7485. font-weight:400;
  7486. font-style:normal;
  7487. font-size:14px;
  7488. color:#555555;
  7489. }
  7490. #u42014 .text {
  7491. position:absolute;
  7492. align-self:center;
  7493. padding:0px 0px 0px 0px;
  7494. box-sizing:border-box;
  7495. width:100%;
  7496. }
  7497. #u42014_text {
  7498. border-width:0px;
  7499. word-wrap:break-word;
  7500. text-transform:none;
  7501. }
  7502. #u42015_div {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:0px;
  7506. top:0px;
  7507. width:200px;
  7508. height:20px;
  7509. background:inherit;
  7510. background-color:rgba(255, 255, 255, 0);
  7511. border:none;
  7512. border-left:0px;
  7513. border-top:0px;
  7514. border-right:0px;
  7515. border-radius:0px;
  7516. border-bottom-right-radius:0px;
  7517. border-bottom-left-radius:0px;
  7518. -moz-box-shadow:none;
  7519. -webkit-box-shadow:none;
  7520. box-shadow:none;
  7521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7522. font-weight:400;
  7523. font-style:normal;
  7524. font-size:14px;
  7525. color:#555555;
  7526. }
  7527. #u42015 {
  7528. border-width:0px;
  7529. position:absolute;
  7530. left:420px;
  7531. top:696px;
  7532. width:200px;
  7533. height:20px;
  7534. display:flex;
  7535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7536. font-weight:400;
  7537. font-style:normal;
  7538. font-size:14px;
  7539. color:#555555;
  7540. }
  7541. #u42015 .text {
  7542. position:absolute;
  7543. align-self:center;
  7544. padding:0px 0px 0px 0px;
  7545. box-sizing:border-box;
  7546. width:100%;
  7547. }
  7548. #u42015_text {
  7549. border-width:0px;
  7550. word-wrap:break-word;
  7551. text-transform:none;
  7552. }
  7553. #u42016_div {
  7554. border-width:0px;
  7555. position:absolute;
  7556. left:0px;
  7557. top:0px;
  7558. width:100px;
  7559. height:20px;
  7560. background:inherit;
  7561. background-color:rgba(255, 255, 255, 0);
  7562. border:none;
  7563. border-left:0px;
  7564. border-top:0px;
  7565. border-right:0px;
  7566. border-radius:0px;
  7567. border-bottom-right-radius:0px;
  7568. border-bottom-left-radius:0px;
  7569. -moz-box-shadow:none;
  7570. -webkit-box-shadow:none;
  7571. box-shadow:none;
  7572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7573. font-weight:400;
  7574. font-style:normal;
  7575. font-size:14px;
  7576. color:#555555;
  7577. }
  7578. #u42016 {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:620px;
  7582. top:696px;
  7583. width:100px;
  7584. height:20px;
  7585. display:flex;
  7586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7587. font-weight:400;
  7588. font-style:normal;
  7589. font-size:14px;
  7590. color:#555555;
  7591. }
  7592. #u42016 .text {
  7593. position:absolute;
  7594. align-self:center;
  7595. padding:0px 0px 0px 0px;
  7596. box-sizing:border-box;
  7597. width:100%;
  7598. }
  7599. #u42016_text {
  7600. border-width:0px;
  7601. word-wrap:break-word;
  7602. text-transform:none;
  7603. }
  7604. #u42017_div {
  7605. border-width:0px;
  7606. position:absolute;
  7607. left:0px;
  7608. top:0px;
  7609. width:200px;
  7610. height:20px;
  7611. background:inherit;
  7612. background-color:rgba(255, 255, 255, 0);
  7613. border:none;
  7614. border-left:0px;
  7615. border-top:0px;
  7616. border-right:0px;
  7617. border-radius:0px;
  7618. border-bottom-right-radius:0px;
  7619. border-bottom-left-radius:0px;
  7620. -moz-box-shadow:none;
  7621. -webkit-box-shadow:none;
  7622. box-shadow:none;
  7623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7624. font-weight:400;
  7625. font-style:normal;
  7626. font-size:14px;
  7627. color:#555555;
  7628. }
  7629. #u42017 {
  7630. border-width:0px;
  7631. position:absolute;
  7632. left:720px;
  7633. top:696px;
  7634. width:200px;
  7635. height:20px;
  7636. display:flex;
  7637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7638. font-weight:400;
  7639. font-style:normal;
  7640. font-size:14px;
  7641. color:#555555;
  7642. }
  7643. #u42017 .text {
  7644. position:absolute;
  7645. align-self:center;
  7646. padding:0px 0px 0px 0px;
  7647. box-sizing:border-box;
  7648. width:100%;
  7649. }
  7650. #u42017_text {
  7651. border-width:0px;
  7652. word-wrap:break-word;
  7653. text-transform:none;
  7654. }
  7655. #u42018_div {
  7656. border-width:0px;
  7657. position:absolute;
  7658. left:0px;
  7659. top:0px;
  7660. width:80px;
  7661. height:30px;
  7662. background:inherit;
  7663. background-color:rgba(24, 144, 255, 0);
  7664. box-sizing:border-box;
  7665. border-width:1px;
  7666. border-style:solid;
  7667. border-color:rgba(24, 144, 255, 1);
  7668. border-radius:4px;
  7669. -moz-box-shadow:none;
  7670. -webkit-box-shadow:none;
  7671. box-shadow:none;
  7672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7673. font-weight:400;
  7674. font-style:normal;
  7675. font-size:12px;
  7676. color:#0099FF;
  7677. }
  7678. #u42018 {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:1196px;
  7682. top:676px;
  7683. width:80px;
  7684. height:30px;
  7685. display:flex;
  7686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7687. font-weight:400;
  7688. font-style:normal;
  7689. font-size:12px;
  7690. color:#0099FF;
  7691. }
  7692. #u42018 .text {
  7693. position:absolute;
  7694. align-self:center;
  7695. padding:2px 8px 2px 8px;
  7696. box-sizing:border-box;
  7697. width:100%;
  7698. }
  7699. #u42018_text {
  7700. border-width:0px;
  7701. word-wrap:break-word;
  7702. text-transform:none;
  7703. }
  7704. #u42019 {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:0px;
  7708. top:0px;
  7709. width:0px;
  7710. height:0px;
  7711. }
  7712. #u42020_div {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:1325px;
  7718. height:100px;
  7719. background:inherit;
  7720. background-color:rgba(255, 255, 255, 1);
  7721. border:none;
  7722. border-radius:9px;
  7723. -moz-box-shadow:none;
  7724. -webkit-box-shadow:none;
  7725. box-shadow:none;
  7726. }
  7727. #u42020 {
  7728. border-width:0px;
  7729. position:absolute;
  7730. left:0px;
  7731. top:750px;
  7732. width:1325px;
  7733. height:100px;
  7734. display:flex;
  7735. }
  7736. #u42020 .text {
  7737. position:absolute;
  7738. align-self:center;
  7739. padding:2px 2px 2px 2px;
  7740. box-sizing:border-box;
  7741. width:100%;
  7742. }
  7743. #u42020_text {
  7744. border-width:0px;
  7745. word-wrap:break-word;
  7746. text-transform:none;
  7747. visibility:hidden;
  7748. }
  7749. #u42021_div {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:0px;
  7753. top:0px;
  7754. width:57px;
  7755. height:20px;
  7756. background:inherit;
  7757. background-color:rgba(255, 255, 255, 0);
  7758. border:none;
  7759. border-left:0px;
  7760. border-top:0px;
  7761. border-right:0px;
  7762. border-radius:0px;
  7763. border-bottom-right-radius:0px;
  7764. border-bottom-left-radius:0px;
  7765. -moz-box-shadow:none;
  7766. -webkit-box-shadow:none;
  7767. box-shadow:none;
  7768. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7769. font-weight:500;
  7770. font-style:normal;
  7771. font-size:14px;
  7772. }
  7773. #u42021 {
  7774. border-width:0px;
  7775. position:absolute;
  7776. left:20px;
  7777. top:770px;
  7778. width:57px;
  7779. height:20px;
  7780. display:flex;
  7781. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7782. font-weight:500;
  7783. font-style:normal;
  7784. font-size:14px;
  7785. }
  7786. #u42021 .text {
  7787. position:absolute;
  7788. align-self:center;
  7789. padding:0px 0px 0px 0px;
  7790. box-sizing:border-box;
  7791. width:100%;
  7792. }
  7793. #u42021_text {
  7794. border-width:0px;
  7795. white-space:nowrap;
  7796. text-transform:none;
  7797. }
  7798. #u42022_div {
  7799. border-width:0px;
  7800. position:absolute;
  7801. left:0px;
  7802. top:0px;
  7803. width:100px;
  7804. height:20px;
  7805. background:inherit;
  7806. background-color:rgba(255, 255, 255, 0);
  7807. border:none;
  7808. border-left:0px;
  7809. border-top:0px;
  7810. border-right:0px;
  7811. border-radius:0px;
  7812. border-bottom-right-radius:0px;
  7813. border-bottom-left-radius:0px;
  7814. -moz-box-shadow:none;
  7815. -webkit-box-shadow:none;
  7816. box-shadow:none;
  7817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7818. font-weight:400;
  7819. font-style:normal;
  7820. font-size:14px;
  7821. color:#555555;
  7822. }
  7823. #u42022 {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:20px;
  7827. top:806px;
  7828. width:100px;
  7829. height:20px;
  7830. display:flex;
  7831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7832. font-weight:400;
  7833. font-style:normal;
  7834. font-size:14px;
  7835. color:#555555;
  7836. }
  7837. #u42022 .text {
  7838. position:absolute;
  7839. align-self:center;
  7840. padding:0px 0px 0px 0px;
  7841. box-sizing:border-box;
  7842. width:100%;
  7843. }
  7844. #u42022_text {
  7845. border-width:0px;
  7846. word-wrap:break-word;
  7847. text-transform:none;
  7848. }
  7849. #u42023_div {
  7850. border-width:0px;
  7851. position:absolute;
  7852. left:0px;
  7853. top:0px;
  7854. width:200px;
  7855. height:20px;
  7856. background:inherit;
  7857. background-color:rgba(255, 255, 255, 0);
  7858. border:none;
  7859. border-left:0px;
  7860. border-top:0px;
  7861. border-right:0px;
  7862. border-radius:0px;
  7863. border-bottom-right-radius:0px;
  7864. border-bottom-left-radius:0px;
  7865. -moz-box-shadow:none;
  7866. -webkit-box-shadow:none;
  7867. box-shadow:none;
  7868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7869. font-weight:400;
  7870. font-style:normal;
  7871. font-size:14px;
  7872. color:#555555;
  7873. }
  7874. #u42023 {
  7875. border-width:0px;
  7876. position:absolute;
  7877. left:120px;
  7878. top:806px;
  7879. width:200px;
  7880. height:20px;
  7881. display:flex;
  7882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7883. font-weight:400;
  7884. font-style:normal;
  7885. font-size:14px;
  7886. color:#555555;
  7887. }
  7888. #u42023 .text {
  7889. position:absolute;
  7890. align-self:center;
  7891. padding:0px 0px 0px 0px;
  7892. box-sizing:border-box;
  7893. width:100%;
  7894. }
  7895. #u42023_text {
  7896. border-width:0px;
  7897. word-wrap:break-word;
  7898. text-transform:none;
  7899. }
  7900. #u42024_div {
  7901. border-width:0px;
  7902. position:absolute;
  7903. left:0px;
  7904. top:0px;
  7905. width:100px;
  7906. height:20px;
  7907. background:inherit;
  7908. background-color:rgba(255, 255, 255, 0);
  7909. border:none;
  7910. border-left:0px;
  7911. border-top:0px;
  7912. border-right:0px;
  7913. border-radius:0px;
  7914. border-bottom-right-radius:0px;
  7915. border-bottom-left-radius:0px;
  7916. -moz-box-shadow:none;
  7917. -webkit-box-shadow:none;
  7918. box-shadow:none;
  7919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7920. font-weight:400;
  7921. font-style:normal;
  7922. font-size:14px;
  7923. color:#555555;
  7924. }
  7925. #u42024 {
  7926. border-width:0px;
  7927. position:absolute;
  7928. left:320px;
  7929. top:806px;
  7930. width:100px;
  7931. height:20px;
  7932. display:flex;
  7933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7934. font-weight:400;
  7935. font-style:normal;
  7936. font-size:14px;
  7937. color:#555555;
  7938. }
  7939. #u42024 .text {
  7940. position:absolute;
  7941. align-self:center;
  7942. padding:0px 0px 0px 0px;
  7943. box-sizing:border-box;
  7944. width:100%;
  7945. }
  7946. #u42024_text {
  7947. border-width:0px;
  7948. word-wrap:break-word;
  7949. text-transform:none;
  7950. }
  7951. #u42025_div {
  7952. border-width:0px;
  7953. position:absolute;
  7954. left:0px;
  7955. top:0px;
  7956. width:200px;
  7957. height:20px;
  7958. background:inherit;
  7959. background-color:rgba(255, 255, 255, 0);
  7960. border:none;
  7961. border-left:0px;
  7962. border-top:0px;
  7963. border-right:0px;
  7964. border-radius:0px;
  7965. border-bottom-right-radius:0px;
  7966. border-bottom-left-radius:0px;
  7967. -moz-box-shadow:none;
  7968. -webkit-box-shadow:none;
  7969. box-shadow:none;
  7970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7971. font-weight:400;
  7972. font-style:normal;
  7973. font-size:14px;
  7974. color:#555555;
  7975. }
  7976. #u42025 {
  7977. border-width:0px;
  7978. position:absolute;
  7979. left:420px;
  7980. top:806px;
  7981. width:200px;
  7982. height:20px;
  7983. display:flex;
  7984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7985. font-weight:400;
  7986. font-style:normal;
  7987. font-size:14px;
  7988. color:#555555;
  7989. }
  7990. #u42025 .text {
  7991. position:absolute;
  7992. align-self:center;
  7993. padding:0px 0px 0px 0px;
  7994. box-sizing:border-box;
  7995. width:100%;
  7996. }
  7997. #u42025_text {
  7998. border-width:0px;
  7999. word-wrap:break-word;
  8000. text-transform:none;
  8001. }
  8002. #u42026_div {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:0px;
  8006. top:0px;
  8007. width:100px;
  8008. height:20px;
  8009. background:inherit;
  8010. background-color:rgba(255, 255, 255, 0);
  8011. border:none;
  8012. border-left:0px;
  8013. border-top:0px;
  8014. border-right:0px;
  8015. border-radius:0px;
  8016. border-bottom-right-radius:0px;
  8017. border-bottom-left-radius:0px;
  8018. -moz-box-shadow:none;
  8019. -webkit-box-shadow:none;
  8020. box-shadow:none;
  8021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8022. font-weight:400;
  8023. font-style:normal;
  8024. font-size:14px;
  8025. color:#555555;
  8026. }
  8027. #u42026 {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:620px;
  8031. top:806px;
  8032. width:100px;
  8033. height:20px;
  8034. display:flex;
  8035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8036. font-weight:400;
  8037. font-style:normal;
  8038. font-size:14px;
  8039. color:#555555;
  8040. }
  8041. #u42026 .text {
  8042. position:absolute;
  8043. align-self:center;
  8044. padding:0px 0px 0px 0px;
  8045. box-sizing:border-box;
  8046. width:100%;
  8047. }
  8048. #u42026_text {
  8049. border-width:0px;
  8050. word-wrap:break-word;
  8051. text-transform:none;
  8052. }
  8053. #u42027_div {
  8054. border-width:0px;
  8055. position:absolute;
  8056. left:0px;
  8057. top:0px;
  8058. width:200px;
  8059. height:20px;
  8060. background:inherit;
  8061. background-color:rgba(255, 255, 255, 0);
  8062. border:none;
  8063. border-left:0px;
  8064. border-top:0px;
  8065. border-right:0px;
  8066. border-radius:0px;
  8067. border-bottom-right-radius:0px;
  8068. border-bottom-left-radius:0px;
  8069. -moz-box-shadow:none;
  8070. -webkit-box-shadow:none;
  8071. box-shadow:none;
  8072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8073. font-weight:400;
  8074. font-style:normal;
  8075. font-size:14px;
  8076. color:#555555;
  8077. }
  8078. #u42027 {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:720px;
  8082. top:806px;
  8083. width:200px;
  8084. height:20px;
  8085. display:flex;
  8086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8087. font-weight:400;
  8088. font-style:normal;
  8089. font-size:14px;
  8090. color:#555555;
  8091. }
  8092. #u42027 .text {
  8093. position:absolute;
  8094. align-self:center;
  8095. padding:0px 0px 0px 0px;
  8096. box-sizing:border-box;
  8097. width:100%;
  8098. }
  8099. #u42027_text {
  8100. border-width:0px;
  8101. word-wrap:break-word;
  8102. text-transform:none;
  8103. }
  8104. #u42028_div {
  8105. border-width:0px;
  8106. position:absolute;
  8107. left:0px;
  8108. top:0px;
  8109. width:80px;
  8110. height:30px;
  8111. background:inherit;
  8112. background-color:rgba(24, 144, 255, 0);
  8113. box-sizing:border-box;
  8114. border-width:1px;
  8115. border-style:solid;
  8116. border-color:rgba(24, 144, 255, 1);
  8117. border-radius:4px;
  8118. -moz-box-shadow:none;
  8119. -webkit-box-shadow:none;
  8120. box-shadow:none;
  8121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8122. font-weight:400;
  8123. font-style:normal;
  8124. font-size:12px;
  8125. color:#0099FF;
  8126. }
  8127. #u42028 {
  8128. border-width:0px;
  8129. position:absolute;
  8130. left:1196px;
  8131. top:785px;
  8132. width:80px;
  8133. height:30px;
  8134. display:flex;
  8135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8136. font-weight:400;
  8137. font-style:normal;
  8138. font-size:12px;
  8139. color:#0099FF;
  8140. }
  8141. #u42028 .text {
  8142. position:absolute;
  8143. align-self:center;
  8144. padding:2px 8px 2px 8px;
  8145. box-sizing:border-box;
  8146. width:100%;
  8147. }
  8148. #u42028_text {
  8149. border-width:0px;
  8150. word-wrap:break-word;
  8151. text-transform:none;
  8152. }
  8153. #u42029 {
  8154. border-width:0px;
  8155. position:absolute;
  8156. left:0px;
  8157. top:0px;
  8158. width:0px;
  8159. height:0px;
  8160. }
  8161. #u42030_div {
  8162. border-width:0px;
  8163. position:absolute;
  8164. left:0px;
  8165. top:0px;
  8166. width:1325px;
  8167. height:100px;
  8168. background:inherit;
  8169. background-color:rgba(255, 255, 255, 1);
  8170. border:none;
  8171. border-radius:9px;
  8172. -moz-box-shadow:none;
  8173. -webkit-box-shadow:none;
  8174. box-shadow:none;
  8175. }
  8176. #u42030 {
  8177. border-width:0px;
  8178. position:absolute;
  8179. left:0px;
  8180. top:860px;
  8181. width:1325px;
  8182. height:100px;
  8183. display:flex;
  8184. }
  8185. #u42030 .text {
  8186. position:absolute;
  8187. align-self:center;
  8188. padding:2px 2px 2px 2px;
  8189. box-sizing:border-box;
  8190. width:100%;
  8191. }
  8192. #u42030_text {
  8193. border-width:0px;
  8194. word-wrap:break-word;
  8195. text-transform:none;
  8196. visibility:hidden;
  8197. }
  8198. #u42031_div {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:0px;
  8202. top:0px;
  8203. width:57px;
  8204. height:20px;
  8205. background:inherit;
  8206. background-color:rgba(255, 255, 255, 0);
  8207. border:none;
  8208. border-left:0px;
  8209. border-top:0px;
  8210. border-right:0px;
  8211. border-radius:0px;
  8212. border-bottom-right-radius:0px;
  8213. border-bottom-left-radius:0px;
  8214. -moz-box-shadow:none;
  8215. -webkit-box-shadow:none;
  8216. box-shadow:none;
  8217. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8218. font-weight:500;
  8219. font-style:normal;
  8220. font-size:14px;
  8221. }
  8222. #u42031 {
  8223. border-width:0px;
  8224. position:absolute;
  8225. left:20px;
  8226. top:880px;
  8227. width:57px;
  8228. height:20px;
  8229. display:flex;
  8230. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8231. font-weight:500;
  8232. font-style:normal;
  8233. font-size:14px;
  8234. }
  8235. #u42031 .text {
  8236. position:absolute;
  8237. align-self:center;
  8238. padding:0px 0px 0px 0px;
  8239. box-sizing:border-box;
  8240. width:100%;
  8241. }
  8242. #u42031_text {
  8243. border-width:0px;
  8244. white-space:nowrap;
  8245. text-transform:none;
  8246. }
  8247. #u42032_div {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:0px;
  8251. top:0px;
  8252. width:100px;
  8253. height:20px;
  8254. background:inherit;
  8255. background-color:rgba(255, 255, 255, 0);
  8256. border:none;
  8257. border-left:0px;
  8258. border-top:0px;
  8259. border-right:0px;
  8260. border-radius:0px;
  8261. border-bottom-right-radius:0px;
  8262. border-bottom-left-radius:0px;
  8263. -moz-box-shadow:none;
  8264. -webkit-box-shadow:none;
  8265. box-shadow:none;
  8266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8267. font-weight:400;
  8268. font-style:normal;
  8269. font-size:14px;
  8270. color:#555555;
  8271. }
  8272. #u42032 {
  8273. border-width:0px;
  8274. position:absolute;
  8275. left:20px;
  8276. top:916px;
  8277. width:100px;
  8278. height:20px;
  8279. display:flex;
  8280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8281. font-weight:400;
  8282. font-style:normal;
  8283. font-size:14px;
  8284. color:#555555;
  8285. }
  8286. #u42032 .text {
  8287. position:absolute;
  8288. align-self:center;
  8289. padding:0px 0px 0px 0px;
  8290. box-sizing:border-box;
  8291. width:100%;
  8292. }
  8293. #u42032_text {
  8294. border-width:0px;
  8295. word-wrap:break-word;
  8296. text-transform:none;
  8297. }
  8298. #u42033_div {
  8299. border-width:0px;
  8300. position:absolute;
  8301. left:0px;
  8302. top:0px;
  8303. width:200px;
  8304. height:20px;
  8305. background:inherit;
  8306. background-color:rgba(255, 255, 255, 0);
  8307. border:none;
  8308. border-left:0px;
  8309. border-top:0px;
  8310. border-right:0px;
  8311. border-radius:0px;
  8312. border-bottom-right-radius:0px;
  8313. border-bottom-left-radius:0px;
  8314. -moz-box-shadow:none;
  8315. -webkit-box-shadow:none;
  8316. box-shadow:none;
  8317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8318. font-weight:400;
  8319. font-style:normal;
  8320. font-size:14px;
  8321. color:#555555;
  8322. }
  8323. #u42033 {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:120px;
  8327. top:916px;
  8328. width:200px;
  8329. height:20px;
  8330. display:flex;
  8331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8332. font-weight:400;
  8333. font-style:normal;
  8334. font-size:14px;
  8335. color:#555555;
  8336. }
  8337. #u42033 .text {
  8338. position:absolute;
  8339. align-self:center;
  8340. padding:0px 0px 0px 0px;
  8341. box-sizing:border-box;
  8342. width:100%;
  8343. }
  8344. #u42033_text {
  8345. border-width:0px;
  8346. word-wrap:break-word;
  8347. text-transform:none;
  8348. }
  8349. #u42034_div {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:0px;
  8353. top:0px;
  8354. width:100px;
  8355. height:20px;
  8356. background:inherit;
  8357. background-color:rgba(255, 255, 255, 0);
  8358. border:none;
  8359. border-left:0px;
  8360. border-top:0px;
  8361. border-right:0px;
  8362. border-radius:0px;
  8363. border-bottom-right-radius:0px;
  8364. border-bottom-left-radius:0px;
  8365. -moz-box-shadow:none;
  8366. -webkit-box-shadow:none;
  8367. box-shadow:none;
  8368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8369. font-weight:400;
  8370. font-style:normal;
  8371. font-size:14px;
  8372. color:#555555;
  8373. }
  8374. #u42034 {
  8375. border-width:0px;
  8376. position:absolute;
  8377. left:320px;
  8378. top:916px;
  8379. width:100px;
  8380. height:20px;
  8381. display:flex;
  8382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8383. font-weight:400;
  8384. font-style:normal;
  8385. font-size:14px;
  8386. color:#555555;
  8387. }
  8388. #u42034 .text {
  8389. position:absolute;
  8390. align-self:center;
  8391. padding:0px 0px 0px 0px;
  8392. box-sizing:border-box;
  8393. width:100%;
  8394. }
  8395. #u42034_text {
  8396. border-width:0px;
  8397. word-wrap:break-word;
  8398. text-transform:none;
  8399. }
  8400. #u42035_div {
  8401. border-width:0px;
  8402. position:absolute;
  8403. left:0px;
  8404. top:0px;
  8405. width:200px;
  8406. height:20px;
  8407. background:inherit;
  8408. background-color:rgba(255, 255, 255, 0);
  8409. border:none;
  8410. border-left:0px;
  8411. border-top:0px;
  8412. border-right:0px;
  8413. border-radius:0px;
  8414. border-bottom-right-radius:0px;
  8415. border-bottom-left-radius:0px;
  8416. -moz-box-shadow:none;
  8417. -webkit-box-shadow:none;
  8418. box-shadow:none;
  8419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8420. font-weight:400;
  8421. font-style:normal;
  8422. font-size:14px;
  8423. color:#555555;
  8424. }
  8425. #u42035 {
  8426. border-width:0px;
  8427. position:absolute;
  8428. left:420px;
  8429. top:916px;
  8430. width:200px;
  8431. height:20px;
  8432. display:flex;
  8433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8434. font-weight:400;
  8435. font-style:normal;
  8436. font-size:14px;
  8437. color:#555555;
  8438. }
  8439. #u42035 .text {
  8440. position:absolute;
  8441. align-self:center;
  8442. padding:0px 0px 0px 0px;
  8443. box-sizing:border-box;
  8444. width:100%;
  8445. }
  8446. #u42035_text {
  8447. border-width:0px;
  8448. word-wrap:break-word;
  8449. text-transform:none;
  8450. }
  8451. #u42036_div {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:0px;
  8455. top:0px;
  8456. width:100px;
  8457. height:20px;
  8458. background:inherit;
  8459. background-color:rgba(255, 255, 255, 0);
  8460. border:none;
  8461. border-left:0px;
  8462. border-top:0px;
  8463. border-right:0px;
  8464. border-radius:0px;
  8465. border-bottom-right-radius:0px;
  8466. border-bottom-left-radius:0px;
  8467. -moz-box-shadow:none;
  8468. -webkit-box-shadow:none;
  8469. box-shadow:none;
  8470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8471. font-weight:400;
  8472. font-style:normal;
  8473. font-size:14px;
  8474. color:#555555;
  8475. }
  8476. #u42036 {
  8477. border-width:0px;
  8478. position:absolute;
  8479. left:620px;
  8480. top:916px;
  8481. width:100px;
  8482. height:20px;
  8483. display:flex;
  8484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8485. font-weight:400;
  8486. font-style:normal;
  8487. font-size:14px;
  8488. color:#555555;
  8489. }
  8490. #u42036 .text {
  8491. position:absolute;
  8492. align-self:center;
  8493. padding:0px 0px 0px 0px;
  8494. box-sizing:border-box;
  8495. width:100%;
  8496. }
  8497. #u42036_text {
  8498. border-width:0px;
  8499. word-wrap:break-word;
  8500. text-transform:none;
  8501. }
  8502. #u42037_div {
  8503. border-width:0px;
  8504. position:absolute;
  8505. left:0px;
  8506. top:0px;
  8507. width:200px;
  8508. height:20px;
  8509. background:inherit;
  8510. background-color:rgba(255, 255, 255, 0);
  8511. border:none;
  8512. border-left:0px;
  8513. border-top:0px;
  8514. border-right:0px;
  8515. border-radius:0px;
  8516. border-bottom-right-radius:0px;
  8517. border-bottom-left-radius:0px;
  8518. -moz-box-shadow:none;
  8519. -webkit-box-shadow:none;
  8520. box-shadow:none;
  8521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8522. font-weight:400;
  8523. font-style:normal;
  8524. font-size:14px;
  8525. color:#555555;
  8526. }
  8527. #u42037 {
  8528. border-width:0px;
  8529. position:absolute;
  8530. left:720px;
  8531. top:916px;
  8532. width:200px;
  8533. height:20px;
  8534. display:flex;
  8535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8536. font-weight:400;
  8537. font-style:normal;
  8538. font-size:14px;
  8539. color:#555555;
  8540. }
  8541. #u42037 .text {
  8542. position:absolute;
  8543. align-self:center;
  8544. padding:0px 0px 0px 0px;
  8545. box-sizing:border-box;
  8546. width:100%;
  8547. }
  8548. #u42037_text {
  8549. border-width:0px;
  8550. word-wrap:break-word;
  8551. text-transform:none;
  8552. }
  8553. #u42038_div {
  8554. border-width:0px;
  8555. position:absolute;
  8556. left:0px;
  8557. top:0px;
  8558. width:80px;
  8559. height:30px;
  8560. background:inherit;
  8561. background-color:rgba(24, 144, 255, 0);
  8562. box-sizing:border-box;
  8563. border-width:1px;
  8564. border-style:solid;
  8565. border-color:rgba(24, 144, 255, 1);
  8566. border-radius:4px;
  8567. -moz-box-shadow:none;
  8568. -webkit-box-shadow:none;
  8569. box-shadow:none;
  8570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8571. font-weight:400;
  8572. font-style:normal;
  8573. font-size:12px;
  8574. color:#0099FF;
  8575. }
  8576. #u42038 {
  8577. border-width:0px;
  8578. position:absolute;
  8579. left:1196px;
  8580. top:896px;
  8581. width:80px;
  8582. height:30px;
  8583. display:flex;
  8584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8585. font-weight:400;
  8586. font-style:normal;
  8587. font-size:12px;
  8588. color:#0099FF;
  8589. }
  8590. #u42038 .text {
  8591. position:absolute;
  8592. align-self:center;
  8593. padding:2px 8px 2px 8px;
  8594. box-sizing:border-box;
  8595. width:100%;
  8596. }
  8597. #u42038_text {
  8598. border-width:0px;
  8599. word-wrap:break-word;
  8600. text-transform:none;
  8601. }
  8602. #u42039 {
  8603. border-width:0px;
  8604. position:absolute;
  8605. left:0px;
  8606. top:0px;
  8607. width:0px;
  8608. height:0px;
  8609. }
  8610. #u42040_div {
  8611. border-width:0px;
  8612. position:absolute;
  8613. left:0px;
  8614. top:0px;
  8615. width:1325px;
  8616. height:150px;
  8617. background:inherit;
  8618. background-color:rgba(255, 255, 255, 1);
  8619. border:none;
  8620. border-radius:9px;
  8621. -moz-box-shadow:none;
  8622. -webkit-box-shadow:none;
  8623. box-shadow:none;
  8624. }
  8625. #u42040 {
  8626. border-width:0px;
  8627. position:absolute;
  8628. left:0px;
  8629. top:970px;
  8630. width:1325px;
  8631. height:150px;
  8632. display:flex;
  8633. }
  8634. #u42040 .text {
  8635. position:absolute;
  8636. align-self:center;
  8637. padding:2px 2px 2px 2px;
  8638. box-sizing:border-box;
  8639. width:100%;
  8640. }
  8641. #u42040_text {
  8642. border-width:0px;
  8643. word-wrap:break-word;
  8644. text-transform:none;
  8645. visibility:hidden;
  8646. }
  8647. #u42041_div {
  8648. border-width:0px;
  8649. position:absolute;
  8650. left:0px;
  8651. top:0px;
  8652. width:71px;
  8653. height:20px;
  8654. background:inherit;
  8655. background-color:rgba(255, 255, 255, 0);
  8656. border:none;
  8657. border-left:0px;
  8658. border-top:0px;
  8659. border-right:0px;
  8660. border-radius:0px;
  8661. border-bottom-right-radius:0px;
  8662. border-bottom-left-radius:0px;
  8663. -moz-box-shadow:none;
  8664. -webkit-box-shadow:none;
  8665. box-shadow:none;
  8666. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8667. font-weight:500;
  8668. font-style:normal;
  8669. font-size:14px;
  8670. }
  8671. #u42041 {
  8672. border-width:0px;
  8673. position:absolute;
  8674. left:20px;
  8675. top:990px;
  8676. width:71px;
  8677. height:20px;
  8678. display:flex;
  8679. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8680. font-weight:500;
  8681. font-style:normal;
  8682. font-size:14px;
  8683. }
  8684. #u42041 .text {
  8685. position:absolute;
  8686. align-self:center;
  8687. padding:0px 0px 0px 0px;
  8688. box-sizing:border-box;
  8689. width:100%;
  8690. }
  8691. #u42041_text {
  8692. border-width:0px;
  8693. white-space:nowrap;
  8694. text-transform:none;
  8695. }
  8696. #u42042_div {
  8697. border-width:0px;
  8698. position:absolute;
  8699. left:0px;
  8700. top:0px;
  8701. width:100px;
  8702. height:20px;
  8703. background:inherit;
  8704. background-color:rgba(255, 255, 255, 0);
  8705. border:none;
  8706. border-left:0px;
  8707. border-top:0px;
  8708. border-right:0px;
  8709. border-radius:0px;
  8710. border-bottom-right-radius:0px;
  8711. border-bottom-left-radius:0px;
  8712. -moz-box-shadow:none;
  8713. -webkit-box-shadow:none;
  8714. box-shadow:none;
  8715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8716. font-weight:400;
  8717. font-style:normal;
  8718. font-size:14px;
  8719. color:#555555;
  8720. }
  8721. #u42042 {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:20px;
  8725. top:1026px;
  8726. width:100px;
  8727. height:20px;
  8728. display:flex;
  8729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8730. font-weight:400;
  8731. font-style:normal;
  8732. font-size:14px;
  8733. color:#555555;
  8734. }
  8735. #u42042 .text {
  8736. position:absolute;
  8737. align-self:center;
  8738. padding:0px 0px 0px 0px;
  8739. box-sizing:border-box;
  8740. width:100%;
  8741. }
  8742. #u42042_text {
  8743. border-width:0px;
  8744. word-wrap:break-word;
  8745. text-transform:none;
  8746. }
  8747. #u42043_div {
  8748. border-width:0px;
  8749. position:absolute;
  8750. left:0px;
  8751. top:0px;
  8752. width:200px;
  8753. height:20px;
  8754. background:inherit;
  8755. background-color:rgba(255, 255, 255, 0);
  8756. border:none;
  8757. border-left:0px;
  8758. border-top:0px;
  8759. border-right:0px;
  8760. border-radius:0px;
  8761. border-bottom-right-radius:0px;
  8762. border-bottom-left-radius:0px;
  8763. -moz-box-shadow:none;
  8764. -webkit-box-shadow:none;
  8765. box-shadow:none;
  8766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8767. font-weight:400;
  8768. font-style:normal;
  8769. font-size:14px;
  8770. color:#555555;
  8771. }
  8772. #u42043 {
  8773. border-width:0px;
  8774. position:absolute;
  8775. left:120px;
  8776. top:1026px;
  8777. width:200px;
  8778. height:20px;
  8779. display:flex;
  8780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8781. font-weight:400;
  8782. font-style:normal;
  8783. font-size:14px;
  8784. color:#555555;
  8785. }
  8786. #u42043 .text {
  8787. position:absolute;
  8788. align-self:center;
  8789. padding:0px 0px 0px 0px;
  8790. box-sizing:border-box;
  8791. width:100%;
  8792. }
  8793. #u42043_text {
  8794. border-width:0px;
  8795. word-wrap:break-word;
  8796. text-transform:none;
  8797. }
  8798. #u42044_div {
  8799. border-width:0px;
  8800. position:absolute;
  8801. left:0px;
  8802. top:0px;
  8803. width:100px;
  8804. height:20px;
  8805. background:inherit;
  8806. background-color:rgba(255, 255, 255, 0);
  8807. border:none;
  8808. border-left:0px;
  8809. border-top:0px;
  8810. border-right:0px;
  8811. border-radius:0px;
  8812. border-bottom-right-radius:0px;
  8813. border-bottom-left-radius:0px;
  8814. -moz-box-shadow:none;
  8815. -webkit-box-shadow:none;
  8816. box-shadow:none;
  8817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8818. font-weight:400;
  8819. font-style:normal;
  8820. font-size:14px;
  8821. color:#555555;
  8822. }
  8823. #u42044 {
  8824. border-width:0px;
  8825. position:absolute;
  8826. left:320px;
  8827. top:1026px;
  8828. width:100px;
  8829. height:20px;
  8830. display:flex;
  8831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8832. font-weight:400;
  8833. font-style:normal;
  8834. font-size:14px;
  8835. color:#555555;
  8836. }
  8837. #u42044 .text {
  8838. position:absolute;
  8839. align-self:center;
  8840. padding:0px 0px 0px 0px;
  8841. box-sizing:border-box;
  8842. width:100%;
  8843. }
  8844. #u42044_text {
  8845. border-width:0px;
  8846. word-wrap:break-word;
  8847. text-transform:none;
  8848. }
  8849. #u42045_div {
  8850. border-width:0px;
  8851. position:absolute;
  8852. left:0px;
  8853. top:0px;
  8854. width:200px;
  8855. height:20px;
  8856. background:inherit;
  8857. background-color:rgba(255, 255, 255, 0);
  8858. border:none;
  8859. border-left:0px;
  8860. border-top:0px;
  8861. border-right:0px;
  8862. border-radius:0px;
  8863. border-bottom-right-radius:0px;
  8864. border-bottom-left-radius:0px;
  8865. -moz-box-shadow:none;
  8866. -webkit-box-shadow:none;
  8867. box-shadow:none;
  8868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8869. font-weight:400;
  8870. font-style:normal;
  8871. font-size:14px;
  8872. color:#555555;
  8873. }
  8874. #u42045 {
  8875. border-width:0px;
  8876. position:absolute;
  8877. left:420px;
  8878. top:1026px;
  8879. width:200px;
  8880. height:20px;
  8881. display:flex;
  8882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8883. font-weight:400;
  8884. font-style:normal;
  8885. font-size:14px;
  8886. color:#555555;
  8887. }
  8888. #u42045 .text {
  8889. position:absolute;
  8890. align-self:center;
  8891. padding:0px 0px 0px 0px;
  8892. box-sizing:border-box;
  8893. width:100%;
  8894. }
  8895. #u42045_text {
  8896. border-width:0px;
  8897. word-wrap:break-word;
  8898. text-transform:none;
  8899. }
  8900. #u42046_div {
  8901. border-width:0px;
  8902. position:absolute;
  8903. left:0px;
  8904. top:0px;
  8905. width:100px;
  8906. height:20px;
  8907. background:inherit;
  8908. background-color:rgba(255, 255, 255, 0);
  8909. border:none;
  8910. border-left:0px;
  8911. border-top:0px;
  8912. border-right:0px;
  8913. border-radius:0px;
  8914. border-bottom-right-radius:0px;
  8915. border-bottom-left-radius:0px;
  8916. -moz-box-shadow:none;
  8917. -webkit-box-shadow:none;
  8918. box-shadow:none;
  8919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8920. font-weight:400;
  8921. font-style:normal;
  8922. font-size:14px;
  8923. color:#555555;
  8924. }
  8925. #u42046 {
  8926. border-width:0px;
  8927. position:absolute;
  8928. left:620px;
  8929. top:1026px;
  8930. width:100px;
  8931. height:20px;
  8932. display:flex;
  8933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8934. font-weight:400;
  8935. font-style:normal;
  8936. font-size:14px;
  8937. color:#555555;
  8938. }
  8939. #u42046 .text {
  8940. position:absolute;
  8941. align-self:center;
  8942. padding:0px 0px 0px 0px;
  8943. box-sizing:border-box;
  8944. width:100%;
  8945. }
  8946. #u42046_text {
  8947. border-width:0px;
  8948. word-wrap:break-word;
  8949. text-transform:none;
  8950. }
  8951. #u42047_div {
  8952. border-width:0px;
  8953. position:absolute;
  8954. left:0px;
  8955. top:0px;
  8956. width:200px;
  8957. height:20px;
  8958. background:inherit;
  8959. background-color:rgba(255, 255, 255, 0);
  8960. border:none;
  8961. border-left:0px;
  8962. border-top:0px;
  8963. border-right:0px;
  8964. border-radius:0px;
  8965. border-bottom-right-radius:0px;
  8966. border-bottom-left-radius:0px;
  8967. -moz-box-shadow:none;
  8968. -webkit-box-shadow:none;
  8969. box-shadow:none;
  8970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8971. font-weight:400;
  8972. font-style:normal;
  8973. font-size:14px;
  8974. color:#555555;
  8975. }
  8976. #u42047 {
  8977. border-width:0px;
  8978. position:absolute;
  8979. left:720px;
  8980. top:1026px;
  8981. width:200px;
  8982. height:20px;
  8983. display:flex;
  8984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8985. font-weight:400;
  8986. font-style:normal;
  8987. font-size:14px;
  8988. color:#555555;
  8989. }
  8990. #u42047 .text {
  8991. position:absolute;
  8992. align-self:center;
  8993. padding:0px 0px 0px 0px;
  8994. box-sizing:border-box;
  8995. width:100%;
  8996. }
  8997. #u42047_text {
  8998. border-width:0px;
  8999. word-wrap:break-word;
  9000. text-transform:none;
  9001. }
  9002. #u42048_div {
  9003. border-width:0px;
  9004. position:absolute;
  9005. left:0px;
  9006. top:0px;
  9007. width:100px;
  9008. height:20px;
  9009. background:inherit;
  9010. background-color:rgba(255, 255, 255, 0);
  9011. border:none;
  9012. border-left:0px;
  9013. border-top:0px;
  9014. border-right:0px;
  9015. border-radius:0px;
  9016. border-bottom-right-radius:0px;
  9017. border-bottom-left-radius:0px;
  9018. -moz-box-shadow:none;
  9019. -webkit-box-shadow:none;
  9020. box-shadow:none;
  9021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9022. font-weight:400;
  9023. font-style:normal;
  9024. font-size:14px;
  9025. color:#555555;
  9026. }
  9027. #u42048 {
  9028. border-width:0px;
  9029. position:absolute;
  9030. left:20px;
  9031. top:1066px;
  9032. width:100px;
  9033. height:20px;
  9034. display:flex;
  9035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9036. font-weight:400;
  9037. font-style:normal;
  9038. font-size:14px;
  9039. color:#555555;
  9040. }
  9041. #u42048 .text {
  9042. position:absolute;
  9043. align-self:center;
  9044. padding:0px 0px 0px 0px;
  9045. box-sizing:border-box;
  9046. width:100%;
  9047. }
  9048. #u42048_text {
  9049. border-width:0px;
  9050. word-wrap:break-word;
  9051. text-transform:none;
  9052. }
  9053. #u42049_div {
  9054. border-width:0px;
  9055. position:absolute;
  9056. left:0px;
  9057. top:0px;
  9058. width:200px;
  9059. height:20px;
  9060. background:inherit;
  9061. background-color:rgba(255, 255, 255, 0);
  9062. border:none;
  9063. border-left:0px;
  9064. border-top:0px;
  9065. border-right:0px;
  9066. border-radius:0px;
  9067. border-bottom-right-radius:0px;
  9068. border-bottom-left-radius:0px;
  9069. -moz-box-shadow:none;
  9070. -webkit-box-shadow:none;
  9071. box-shadow:none;
  9072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9073. font-weight:400;
  9074. font-style:normal;
  9075. font-size:14px;
  9076. color:#555555;
  9077. }
  9078. #u42049 {
  9079. border-width:0px;
  9080. position:absolute;
  9081. left:120px;
  9082. top:1066px;
  9083. width:200px;
  9084. height:20px;
  9085. display:flex;
  9086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9087. font-weight:400;
  9088. font-style:normal;
  9089. font-size:14px;
  9090. color:#555555;
  9091. }
  9092. #u42049 .text {
  9093. position:absolute;
  9094. align-self:center;
  9095. padding:0px 0px 0px 0px;
  9096. box-sizing:border-box;
  9097. width:100%;
  9098. }
  9099. #u42049_text {
  9100. border-width:0px;
  9101. word-wrap:break-word;
  9102. text-transform:none;
  9103. }
  9104. #u42050_div {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:0px;
  9108. top:0px;
  9109. width:100px;
  9110. height:20px;
  9111. background:inherit;
  9112. background-color:rgba(255, 255, 255, 0);
  9113. border:none;
  9114. border-left:0px;
  9115. border-top:0px;
  9116. border-right:0px;
  9117. border-radius:0px;
  9118. border-bottom-right-radius:0px;
  9119. border-bottom-left-radius:0px;
  9120. -moz-box-shadow:none;
  9121. -webkit-box-shadow:none;
  9122. box-shadow:none;
  9123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9124. font-weight:400;
  9125. font-style:normal;
  9126. font-size:14px;
  9127. color:#555555;
  9128. }
  9129. #u42050 {
  9130. border-width:0px;
  9131. position:absolute;
  9132. left:320px;
  9133. top:1066px;
  9134. width:100px;
  9135. height:20px;
  9136. display:flex;
  9137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9138. font-weight:400;
  9139. font-style:normal;
  9140. font-size:14px;
  9141. color:#555555;
  9142. }
  9143. #u42050 .text {
  9144. position:absolute;
  9145. align-self:center;
  9146. padding:0px 0px 0px 0px;
  9147. box-sizing:border-box;
  9148. width:100%;
  9149. }
  9150. #u42050_text {
  9151. border-width:0px;
  9152. word-wrap:break-word;
  9153. text-transform:none;
  9154. }
  9155. #u42051_div {
  9156. border-width:0px;
  9157. position:absolute;
  9158. left:0px;
  9159. top:0px;
  9160. width:200px;
  9161. height:20px;
  9162. background:inherit;
  9163. background-color:rgba(255, 255, 255, 0);
  9164. border:none;
  9165. border-left:0px;
  9166. border-top:0px;
  9167. border-right:0px;
  9168. border-radius:0px;
  9169. border-bottom-right-radius:0px;
  9170. border-bottom-left-radius:0px;
  9171. -moz-box-shadow:none;
  9172. -webkit-box-shadow:none;
  9173. box-shadow:none;
  9174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9175. font-weight:400;
  9176. font-style:normal;
  9177. font-size:14px;
  9178. color:#555555;
  9179. }
  9180. #u42051 {
  9181. border-width:0px;
  9182. position:absolute;
  9183. left:420px;
  9184. top:1066px;
  9185. width:200px;
  9186. height:20px;
  9187. display:flex;
  9188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9189. font-weight:400;
  9190. font-style:normal;
  9191. font-size:14px;
  9192. color:#555555;
  9193. }
  9194. #u42051 .text {
  9195. position:absolute;
  9196. align-self:center;
  9197. padding:0px 0px 0px 0px;
  9198. box-sizing:border-box;
  9199. width:100%;
  9200. }
  9201. #u42051_text {
  9202. border-width:0px;
  9203. word-wrap:break-word;
  9204. text-transform:none;
  9205. }
  9206. #u42052_div {
  9207. border-width:0px;
  9208. position:absolute;
  9209. left:0px;
  9210. top:0px;
  9211. width:80px;
  9212. height:30px;
  9213. background:inherit;
  9214. background-color:rgba(24, 144, 255, 0);
  9215. box-sizing:border-box;
  9216. border-width:1px;
  9217. border-style:solid;
  9218. border-color:rgba(24, 144, 255, 1);
  9219. border-radius:4px;
  9220. -moz-box-shadow:none;
  9221. -webkit-box-shadow:none;
  9222. box-shadow:none;
  9223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9224. font-weight:400;
  9225. font-style:normal;
  9226. font-size:12px;
  9227. color:#0099FF;
  9228. }
  9229. #u42052 {
  9230. border-width:0px;
  9231. position:absolute;
  9232. left:1196px;
  9233. top:1030px;
  9234. width:80px;
  9235. height:30px;
  9236. display:flex;
  9237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9238. font-weight:400;
  9239. font-style:normal;
  9240. font-size:12px;
  9241. color:#0099FF;
  9242. }
  9243. #u42052 .text {
  9244. position:absolute;
  9245. align-self:center;
  9246. padding:2px 8px 2px 8px;
  9247. box-sizing:border-box;
  9248. width:100%;
  9249. }
  9250. #u42052_text {
  9251. border-width:0px;
  9252. word-wrap:break-word;
  9253. text-transform:none;
  9254. }
  9255. #u42053_div {
  9256. border-width:0px;
  9257. position:absolute;
  9258. left:0px;
  9259. top:0px;
  9260. width:85px;
  9261. height:20px;
  9262. background:inherit;
  9263. background-color:rgba(30, 42, 68, 1);
  9264. border:none;
  9265. border-radius:0px;
  9266. -moz-box-shadow:none;
  9267. -webkit-box-shadow:none;
  9268. box-shadow:none;
  9269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9270. font-weight:400;
  9271. font-style:normal;
  9272. color:#FFFFFF;
  9273. }
  9274. #u42053 {
  9275. border-width:0px;
  9276. position:absolute;
  9277. left:1374px;
  9278. top:15px;
  9279. width:85px;
  9280. height:20px;
  9281. display:flex;
  9282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9283. font-weight:400;
  9284. font-style:normal;
  9285. color:#FFFFFF;
  9286. }
  9287. #u42053 .text {
  9288. position:absolute;
  9289. align-self:flex-start;
  9290. padding:0px 0px 0px 0px;
  9291. box-sizing:border-box;
  9292. width:100%;
  9293. }
  9294. #u42053_text {
  9295. border-width:0px;
  9296. white-space:nowrap;
  9297. text-transform:none;
  9298. }