styles.css 158 KB

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