styles.css 131 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492
  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. #u19876_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. #u19876 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u19876 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u19876_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u19877_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. #u19877 {
  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. #u19877 .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. #u19877_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u19878_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. #u19878 {
  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. #u19878 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u19878_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u19879 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u19880_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u19880 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u19880 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u19880_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u19881_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. #u19881 {
  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. #u19881 .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. #u19881_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u19882_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. #u19882 {
  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. #u19882 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u19882_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u19883 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u19884_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. #u19884_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. #u19884_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. #u19884 {
  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. #u19884 .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. #u19884_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. #u19884.disabled {
  356. }
  357. .u19884_input_option {
  358. font-size:14px;
  359. }
  360. #u19885_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u19885 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u19885 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u19885_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u19886_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. #u19886 {
  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. #u19886 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u19886_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u19887_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. #u19887 {
  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. #u19887 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u19887_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u19888 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u19889_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. #u19889 {
  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. #u19889 .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. #u19889_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u19890_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u19890 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u19890 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u19890_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u19891 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u19892_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. #u19892 {
  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. #u19892 .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. #u19892_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u19893_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u19893 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u19893 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u19893_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u19894 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u19895_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. #u19895 {
  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. #u19895 .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. #u19895_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u19896_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u19896 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:443px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u19896 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u19896_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u19897 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u19898_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. #u19898 {
  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. #u19898 .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. #u19898_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u19899_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u19899 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u19899 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u19899_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u19900 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u19901_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. #u19901 {
  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. #u19901 .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. #u19901_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u19902_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u19902 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:485px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u19902 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u19902_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u19903 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u19904_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. #u19904 {
  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. #u19904 .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. #u19904_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u19905_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u19905 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:359px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u19905 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u19905_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u19906 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u19907_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. #u19907 {
  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. #u19907 .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. #u19907_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u19908_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u19908 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u19908 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u19908_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u19909 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u19910_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. #u19910 {
  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. #u19910 .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. #u19910_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u19911_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u19911 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:401px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u19911 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u19911_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u19912 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u19913_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. #u19913 {
  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. #u19913 .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. #u19913_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u19914_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u19914 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:527px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u19914 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u19914_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u19915 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u19916_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. #u19916 {
  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. #u19916 .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. #u19916_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u19917_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u19917 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:235px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u19917 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u19917_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u19918_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. #u19918 {
  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. #u19918 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u19918_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u19919_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u19919 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u19919 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u19919_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u19920_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. #u19920 {
  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. #u19920 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u19920_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u19921_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u19921 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u19921 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u19921_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u19922 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u19923_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. #u19923 {
  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. #u19923 .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. #u19923_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u19924_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u19924 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:277px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u19924 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u19924_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u19925 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u19926_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. #u19926 {
  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. #u19926 .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. #u19926_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u19927_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u19927 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u19927 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u19927_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u19928 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u19929_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. #u19929 {
  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. #u19929 .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. #u19929_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u19930_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u19930 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:319px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u19930 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u19930_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u19931_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1258px;
  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. #u19931 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:330px;
  1742. top:50px;
  1743. width:1258px;
  1744. height:1191px;
  1745. display:flex;
  1746. color:#1890FF;
  1747. }
  1748. #u19931 .text {
  1749. position:absolute;
  1750. align-self:center;
  1751. padding:2px 2px 2px 2px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u19931_text {
  1756. border-width:0px;
  1757. word-wrap:break-word;
  1758. text-transform:none;
  1759. visibility:hidden;
  1760. }
  1761. #u19933 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:0px;
  1767. height:0px;
  1768. }
  1769. #u19934_img {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:200px;
  1775. height:1191px;
  1776. }
  1777. #u19934 {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:120px;
  1781. top:50px;
  1782. width:200px;
  1783. height:1191px;
  1784. display:flex;
  1785. }
  1786. #u19934 .text {
  1787. position:absolute;
  1788. align-self:center;
  1789. padding:2px 2px 2px 2px;
  1790. box-sizing:border-box;
  1791. width:100%;
  1792. }
  1793. #u19934_text {
  1794. border-width:0px;
  1795. word-wrap:break-word;
  1796. text-transform:none;
  1797. visibility:hidden;
  1798. }
  1799. #u19935_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. #u19935 {
  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. #u19935 .text {
  1832. position:absolute;
  1833. align-self:center;
  1834. padding:0px 0px 0px 20px;
  1835. box-sizing:border-box;
  1836. width:100%;
  1837. }
  1838. #u19935_text {
  1839. border-width:0px;
  1840. word-wrap:break-word;
  1841. text-transform:none;
  1842. }
  1843. #u19936 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:120px;
  1847. top:130px;
  1848. width:200px;
  1849. height:1078px;
  1850. }
  1851. #u19936_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. #u19936_state0_content {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:1px;
  1875. height:1px;
  1876. }
  1877. #u19937_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. #u19937 {
  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. #u19937 .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. #u19937_text {
  1917. border-width:0px;
  1918. word-wrap:break-word;
  1919. text-transform:none;
  1920. }
  1921. #u19938_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. #u19938 {
  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. #u19938 .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. #u19938_text {
  1961. border-width:0px;
  1962. white-space:nowrap;
  1963. text-transform:none;
  1964. }
  1965. #u19939_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. #u19939 {
  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. #u19939 .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. #u19939_text {
  2005. border-width:0px;
  2006. white-space:nowrap;
  2007. text-transform:none;
  2008. }
  2009. #u19940_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. #u19940 {
  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. #u19940 .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. #u19940_text {
  2049. border-width:0px;
  2050. word-wrap:break-word;
  2051. text-transform:none;
  2052. }
  2053. #u19941_img {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:201px;
  2059. height:2px;
  2060. }
  2061. #u19941 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:84px;
  2066. width:200px;
  2067. height:1px;
  2068. display:flex;
  2069. }
  2070. #u19941 .text {
  2071. position:absolute;
  2072. align-self:center;
  2073. padding:2px 2px 2px 2px;
  2074. box-sizing:border-box;
  2075. width:100%;
  2076. }
  2077. #u19941_text {
  2078. border-width:0px;
  2079. word-wrap:break-word;
  2080. text-transform:none;
  2081. visibility:hidden;
  2082. }
  2083. #u19942_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. #u19942 {
  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. #u19942 .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. #u19942_text {
  2125. border-width:0px;
  2126. white-space:nowrap;
  2127. text-transform:none;
  2128. }
  2129. #u19943_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. #u19943 {
  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. #u19943 .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. #u19943_text {
  2169. border-width:0px;
  2170. word-wrap:break-word;
  2171. text-transform:none;
  2172. }
  2173. #u19944_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. #u19944 {
  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. #u19944 .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. #u19944_text {
  2213. border-width:0px;
  2214. white-space:nowrap;
  2215. text-transform:none;
  2216. }
  2217. #u19945_img {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:201px;
  2223. height:2px;
  2224. }
  2225. #u19945 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:353px;
  2230. width:200px;
  2231. height:1px;
  2232. display:flex;
  2233. }
  2234. #u19945 .text {
  2235. position:absolute;
  2236. align-self:center;
  2237. padding:2px 2px 2px 2px;
  2238. box-sizing:border-box;
  2239. width:100%;
  2240. }
  2241. #u19945_text {
  2242. border-width:0px;
  2243. word-wrap:break-word;
  2244. text-transform:none;
  2245. visibility:hidden;
  2246. }
  2247. #u19946_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. #u19946 {
  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. #u19946 .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. #u19946_text {
  2287. border-width:0px;
  2288. white-space:nowrap;
  2289. text-transform:none;
  2290. }
  2291. #u19947_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. #u19947 {
  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. #u19947 .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. #u19947_text {
  2333. border-width:0px;
  2334. white-space:nowrap;
  2335. text-transform:none;
  2336. }
  2337. #u19948_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. #u19948 {
  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. #u19948 .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. #u19948_text {
  2377. border-width:0px;
  2378. white-space:nowrap;
  2379. text-transform:none;
  2380. }
  2381. #u19949_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. #u19949 {
  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. #u19949 .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. #u19949_text {
  2421. border-width:0px;
  2422. white-space:nowrap;
  2423. text-transform:none;
  2424. }
  2425. #u19950_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. #u19950 {
  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. #u19950 .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. #u19950_text {
  2465. border-width:0px;
  2466. white-space:nowrap;
  2467. text-transform:none;
  2468. }
  2469. #u19951_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. #u19951 {
  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. #u19951 .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. #u19951_text {
  2509. border-width:0px;
  2510. white-space:nowrap;
  2511. text-transform:none;
  2512. }
  2513. #u19952_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. #u19952 {
  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. #u19952 .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. #u19952_text {
  2553. border-width:0px;
  2554. white-space:nowrap;
  2555. text-transform:none;
  2556. }
  2557. #u19953_img {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:201px;
  2563. height:2px;
  2564. }
  2565. #u19953 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:0px;
  2569. top:1325px;
  2570. width:200px;
  2571. height:1px;
  2572. display:flex;
  2573. }
  2574. #u19953 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 2px 2px 2px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u19953_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. visibility:hidden;
  2586. }
  2587. #u19954_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. #u19954 {
  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. #u19954 .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. #u19954_text {
  2627. border-width:0px;
  2628. white-space:nowrap;
  2629. text-transform:none;
  2630. }
  2631. #u19955_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. #u19955 {
  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. #u19955 .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. #u19955_text {
  2673. border-width:0px;
  2674. white-space:nowrap;
  2675. text-transform:none;
  2676. }
  2677. #u19956_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. #u19956 {
  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. #u19956 .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. #u19956_text {
  2717. border-width:0px;
  2718. white-space:nowrap;
  2719. text-transform:none;
  2720. }
  2721. #u19957_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. #u19957 {
  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. #u19957 .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. #u19957_text {
  2761. border-width:0px;
  2762. white-space:nowrap;
  2763. text-transform:none;
  2764. }
  2765. #u19958_img {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:201px;
  2771. height:2px;
  2772. }
  2773. #u19958 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:1634px;
  2778. width:200px;
  2779. height:1px;
  2780. display:flex;
  2781. }
  2782. #u19958 .text {
  2783. position:absolute;
  2784. align-self:center;
  2785. padding:2px 2px 2px 2px;
  2786. box-sizing:border-box;
  2787. width:100%;
  2788. }
  2789. #u19958_text {
  2790. border-width:0px;
  2791. word-wrap:break-word;
  2792. text-transform:none;
  2793. visibility:hidden;
  2794. }
  2795. #u19959_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. #u19959 {
  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. #u19959 .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. #u19959_text {
  2835. border-width:0px;
  2836. white-space:nowrap;
  2837. text-transform:none;
  2838. }
  2839. #u19960_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. #u19960 {
  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. #u19960 .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. #u19960_text {
  2881. border-width:0px;
  2882. white-space:nowrap;
  2883. text-transform:none;
  2884. }
  2885. #u19961_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. #u19961 {
  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. #u19961 .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. #u19961_text {
  2925. border-width:0px;
  2926. white-space:nowrap;
  2927. text-transform:none;
  2928. }
  2929. #u19962_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. #u19962 {
  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. #u19962 .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. #u19962_text {
  2969. border-width:0px;
  2970. white-space:nowrap;
  2971. text-transform:none;
  2972. }
  2973. #u19963_img {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:0px;
  2978. width:201px;
  2979. height:2px;
  2980. }
  2981. #u19963 {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:0px;
  2985. top:1817px;
  2986. width:200px;
  2987. height:1px;
  2988. display:flex;
  2989. }
  2990. #u19963 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 2px 2px 2px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u19963_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. visibility:hidden;
  3002. }
  3003. #u19964_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. #u19964 {
  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. #u19964 .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. #u19964_text {
  3043. border-width:0px;
  3044. white-space:nowrap;
  3045. text-transform:none;
  3046. }
  3047. #u19965_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. #u19965 {
  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. #u19965 .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. #u19965_text {
  3089. border-width:0px;
  3090. white-space:nowrap;
  3091. text-transform:none;
  3092. }
  3093. #u19966_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. #u19966 {
  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. #u19966 .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. #u19966_text {
  3133. border-width:0px;
  3134. white-space:nowrap;
  3135. text-transform:none;
  3136. }
  3137. #u19967_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. #u19967 {
  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. #u19967 .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. #u19967_text {
  3177. border-width:0px;
  3178. white-space:nowrap;
  3179. text-transform:none;
  3180. }
  3181. #u19968_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. #u19968 {
  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. #u19968 .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. #u19968_text {
  3221. border-width:0px;
  3222. white-space:nowrap;
  3223. text-transform:none;
  3224. }
  3225. #u19969_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:201px;
  3231. height:2px;
  3232. }
  3233. #u19969 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:709px;
  3238. width:200px;
  3239. height:1px;
  3240. display:flex;
  3241. }
  3242. #u19969 .text {
  3243. position:absolute;
  3244. align-self:center;
  3245. padding:2px 2px 2px 2px;
  3246. box-sizing:border-box;
  3247. width:100%;
  3248. }
  3249. #u19969_text {
  3250. border-width:0px;
  3251. word-wrap:break-word;
  3252. text-transform:none;
  3253. visibility:hidden;
  3254. }
  3255. #u19970_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. #u19970 {
  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. #u19970 .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. #u19970_text {
  3295. border-width:0px;
  3296. white-space:nowrap;
  3297. text-transform:none;
  3298. }
  3299. #u19971_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. #u19971 {
  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. #u19971 .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. #u19971_text {
  3341. border-width:0px;
  3342. white-space:nowrap;
  3343. text-transform:none;
  3344. }
  3345. #u19972_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. #u19972 {
  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. #u19972 .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. #u19972_text {
  3385. border-width:0px;
  3386. white-space:nowrap;
  3387. text-transform:none;
  3388. }
  3389. #u19973_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. #u19973 {
  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. #u19973 .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. #u19973_text {
  3429. border-width:0px;
  3430. white-space:nowrap;
  3431. text-transform:none;
  3432. }
  3433. #u19974_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. #u19974 {
  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. #u19974 .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. #u19974_text {
  3473. border-width:0px;
  3474. white-space:nowrap;
  3475. text-transform:none;
  3476. }
  3477. #u19975_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. #u19975 {
  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. #u19975 .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. #u19975_text {
  3517. border-width:0px;
  3518. white-space:nowrap;
  3519. text-transform:none;
  3520. }
  3521. #u19976_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. #u19976 {
  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. #u19976 .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. #u19976_text {
  3561. border-width:0px;
  3562. white-space:nowrap;
  3563. text-transform:none;
  3564. }
  3565. #u19977_img {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:0px;
  3569. top:0px;
  3570. width:201px;
  3571. height:2px;
  3572. }
  3573. #u19977 {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:1058px;
  3578. width:200px;
  3579. height:1px;
  3580. display:flex;
  3581. }
  3582. #u19977 .text {
  3583. position:absolute;
  3584. align-self:center;
  3585. padding:2px 2px 2px 2px;
  3586. box-sizing:border-box;
  3587. width:100%;
  3588. }
  3589. #u19977_text {
  3590. border-width:0px;
  3591. word-wrap:break-word;
  3592. text-transform:none;
  3593. visibility:hidden;
  3594. }
  3595. #u19978_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. #u19978 {
  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. #u19978 .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. #u19978_text {
  3635. border-width:0px;
  3636. white-space:nowrap;
  3637. text-transform:none;
  3638. }
  3639. #u19979_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. #u19979 {
  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. #u19979 .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. #u19979_text {
  3681. border-width:0px;
  3682. white-space:nowrap;
  3683. text-transform:none;
  3684. }
  3685. #u19980_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. #u19980 {
  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. #u19980 .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. #u19980_text {
  3725. border-width:0px;
  3726. white-space:nowrap;
  3727. text-transform:none;
  3728. }
  3729. #u19981_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. #u19981 {
  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. #u19981 .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. #u19981_text {
  3769. border-width:0px;
  3770. white-space:nowrap;
  3771. text-transform:none;
  3772. }
  3773. #u19982_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. #u19982 {
  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. #u19982 .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. #u19982_text {
  3813. border-width:0px;
  3814. white-space:nowrap;
  3815. text-transform:none;
  3816. }
  3817. #u19983_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. #u19983 {
  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. #u19983 .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. #u19983_text {
  3857. border-width:0px;
  3858. white-space:nowrap;
  3859. text-transform:none;
  3860. }
  3861. #u19984_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. #u19984 {
  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. #u19984 .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. #u19984_text {
  3901. border-width:0px;
  3902. white-space:nowrap;
  3903. text-transform:none;
  3904. }
  3905. #u19985_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. #u19985 {
  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. #u19985 .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. #u19985_text {
  3945. border-width:0px;
  3946. white-space:nowrap;
  3947. text-transform:none;
  3948. }
  3949. #u19986_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. #u19986 {
  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. #u19986 .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. #u19986_text {
  3989. border-width:0px;
  3990. white-space:nowrap;
  3991. text-transform:none;
  3992. }
  3993. #u19987_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. #u19987 {
  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. #u19987 .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. #u19987_text {
  4033. border-width:0px;
  4034. white-space:nowrap;
  4035. text-transform:none;
  4036. }
  4037. #u19988_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. #u19988 {
  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. #u19988 .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. #u19988_text {
  4077. border-width:0px;
  4078. white-space:nowrap;
  4079. text-transform:none;
  4080. }
  4081. #u19989_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. #u19989 {
  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. #u19989 .text {
  4117. position:absolute;
  4118. align-self:center;
  4119. padding:2px 2px 2px 2px;
  4120. box-sizing:border-box;
  4121. width:100%;
  4122. }
  4123. #u19989_text {
  4124. border-width:0px;
  4125. word-wrap:break-word;
  4126. text-transform:none;
  4127. }
  4128. #u19990_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. #u19990 {
  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. #u19990 .text {
  4164. position:absolute;
  4165. align-self:center;
  4166. padding:5px 0px 5px 0px;
  4167. box-sizing:border-box;
  4168. width:100%;
  4169. }
  4170. #u19990_text {
  4171. border-width:0px;
  4172. white-space:nowrap;
  4173. text-transform:none;
  4174. }
  4175. #u19991_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. #u19991 {
  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. #u19991 .text {
  4211. position:absolute;
  4212. align-self:center;
  4213. padding:2px 2px 2px 2px;
  4214. box-sizing:border-box;
  4215. width:100%;
  4216. }
  4217. #u19991_text {
  4218. border-width:0px;
  4219. word-wrap:break-word;
  4220. text-transform:none;
  4221. }
  4222. #u19992_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. #u19992 {
  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. #u19992 .text {
  4260. position:absolute;
  4261. align-self:center;
  4262. padding:5px 15px 5px 15px;
  4263. box-sizing:border-box;
  4264. width:100%;
  4265. }
  4266. #u19992_text {
  4267. border-width:0px;
  4268. white-space:nowrap;
  4269. text-transform:none;
  4270. }
  4271. #u19993 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:0px;
  4277. height:0px;
  4278. }
  4279. #u19994_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. #u19994 {
  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. #u19994 .text {
  4309. position:absolute;
  4310. align-self:center;
  4311. padding:2px 2px 2px 2px;
  4312. box-sizing:border-box;
  4313. width:100%;
  4314. }
  4315. #u19994_text {
  4316. border-width:0px;
  4317. word-wrap:break-word;
  4318. text-transform:none;
  4319. visibility:hidden;
  4320. }
  4321. #u19995_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. #u19995_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. #u19995_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. #u19995 {
  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. #u19995 .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. #u19995_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. #u19995.disabled {
  4412. }
  4413. .u19995_input_option {
  4414. font-size:11px;
  4415. }
  4416. #u19996 {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:0px;
  4422. height:0px;
  4423. }
  4424. #u19997_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. #u19997 {
  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. #u19997 .text {
  4454. position:absolute;
  4455. align-self:center;
  4456. padding:2px 2px 2px 2px;
  4457. box-sizing:border-box;
  4458. width:100%;
  4459. }
  4460. #u19997_text {
  4461. border-width:0px;
  4462. word-wrap:break-word;
  4463. text-transform:none;
  4464. visibility:hidden;
  4465. }
  4466. #u19998_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. #u19998_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. #u19998_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. #u19998 {
  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. #u19998 .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. #u19998_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. #u19998.disabled {
  4557. }
  4558. .u19998_input_option {
  4559. font-size:11px;
  4560. }
  4561. #u19999 label {
  4562. left:0px;
  4563. width:100%;
  4564. }
  4565. #u19999_img {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:4px;
  4570. width:12px;
  4571. height:12px;
  4572. }
  4573. #u19999 {
  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. #u19999 .text {
  4587. position:absolute;
  4588. align-self:center;
  4589. padding:0px 2px 0px 2px;
  4590. box-sizing:border-box;
  4591. }
  4592. #u19999_img.selected {
  4593. }
  4594. #u19999.selected {
  4595. }
  4596. #u19999_img.disabled {
  4597. }
  4598. #u19999.disabled {
  4599. }
  4600. #u19999_img.selectedDisabled {
  4601. }
  4602. #u19999.selectedDisabled {
  4603. }
  4604. #u19999_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. #u19999_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. #u20000 label {
  4623. left:0px;
  4624. width:100%;
  4625. }
  4626. #u20000_img {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:4px;
  4631. width:12px;
  4632. height:12px;
  4633. }
  4634. #u20000 {
  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. #u20000 .text {
  4648. position:absolute;
  4649. align-self:center;
  4650. padding:0px 2px 0px 2px;
  4651. box-sizing:border-box;
  4652. }
  4653. #u20000_img.selected {
  4654. }
  4655. #u20000.selected {
  4656. }
  4657. #u20000_img.disabled {
  4658. }
  4659. #u20000.disabled {
  4660. }
  4661. #u20000_img.selectedDisabled {
  4662. }
  4663. #u20000.selectedDisabled {
  4664. }
  4665. #u20000_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. #u20000_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. #u20001 label {
  4684. left:0px;
  4685. width:100%;
  4686. }
  4687. #u20001_img {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:4px;
  4692. width:12px;
  4693. height:12px;
  4694. }
  4695. #u20001 {
  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. #u20001 .text {
  4709. position:absolute;
  4710. align-self:center;
  4711. padding:0px 2px 0px 2px;
  4712. box-sizing:border-box;
  4713. }
  4714. #u20001_img.selected {
  4715. }
  4716. #u20001.selected {
  4717. }
  4718. #u20001_img.disabled {
  4719. }
  4720. #u20001.disabled {
  4721. }
  4722. #u20001_img.selectedDisabled {
  4723. }
  4724. #u20001.selectedDisabled {
  4725. }
  4726. #u20001_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. #u20001_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. #u20002 label {
  4745. left:0px;
  4746. width:100%;
  4747. }
  4748. #u20002_img {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:0px;
  4752. top:4px;
  4753. width:12px;
  4754. height:12px;
  4755. }
  4756. #u20002 {
  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. #u20002 .text {
  4770. position:absolute;
  4771. align-self:center;
  4772. padding:0px 2px 0px 2px;
  4773. box-sizing:border-box;
  4774. }
  4775. #u20002_img.selected {
  4776. }
  4777. #u20002.selected {
  4778. }
  4779. #u20002_img.disabled {
  4780. }
  4781. #u20002.disabled {
  4782. }
  4783. #u20002_img.selectedDisabled {
  4784. }
  4785. #u20002.selectedDisabled {
  4786. }
  4787. #u20002_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. #u20002_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. #u20003 label {
  4806. left:0px;
  4807. width:100%;
  4808. }
  4809. #u20003_img {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:0px;
  4813. top:4px;
  4814. width:12px;
  4815. height:12px;
  4816. }
  4817. #u20003 {
  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. #u20003 .text {
  4831. position:absolute;
  4832. align-self:center;
  4833. padding:0px 2px 0px 2px;
  4834. box-sizing:border-box;
  4835. }
  4836. #u20003_img.selected {
  4837. }
  4838. #u20003.selected {
  4839. }
  4840. #u20003_img.disabled {
  4841. }
  4842. #u20003.disabled {
  4843. }
  4844. #u20003_img.selectedDisabled {
  4845. }
  4846. #u20003.selectedDisabled {
  4847. }
  4848. #u20003_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. #u20003_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. #u20004 label {
  4867. left:0px;
  4868. width:100%;
  4869. }
  4870. #u20004_img {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:0px;
  4874. top:4px;
  4875. width:12px;
  4876. height:12px;
  4877. }
  4878. #u20004 {
  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. #u20004 .text {
  4892. position:absolute;
  4893. align-self:center;
  4894. padding:0px 2px 0px 2px;
  4895. box-sizing:border-box;
  4896. }
  4897. #u20004_img.selected {
  4898. }
  4899. #u20004.selected {
  4900. }
  4901. #u20004_img.disabled {
  4902. }
  4903. #u20004.disabled {
  4904. }
  4905. #u20004_img.selectedDisabled {
  4906. }
  4907. #u20004.selectedDisabled {
  4908. }
  4909. #u20004_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. #u20004_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. #u20005 label {
  4928. left:0px;
  4929. width:100%;
  4930. }
  4931. #u20005_img {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:4px;
  4936. width:12px;
  4937. height:12px;
  4938. }
  4939. #u20005 {
  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. #u20005 .text {
  4953. position:absolute;
  4954. align-self:center;
  4955. padding:0px 2px 0px 2px;
  4956. box-sizing:border-box;
  4957. }
  4958. #u20005_img.selected {
  4959. }
  4960. #u20005.selected {
  4961. }
  4962. #u20005_img.disabled {
  4963. }
  4964. #u20005.disabled {
  4965. }
  4966. #u20005_img.selectedDisabled {
  4967. }
  4968. #u20005.selectedDisabled {
  4969. }
  4970. #u20005_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. #u20005_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. #u20006 label {
  4989. left:0px;
  4990. width:100%;
  4991. }
  4992. #u20006_img {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:0px;
  4996. top:4px;
  4997. width:12px;
  4998. height:12px;
  4999. }
  5000. #u20006 {
  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. #u20006 .text {
  5014. position:absolute;
  5015. align-self:center;
  5016. padding:0px 2px 0px 2px;
  5017. box-sizing:border-box;
  5018. }
  5019. #u20006_img.selected {
  5020. }
  5021. #u20006.selected {
  5022. }
  5023. #u20006_img.disabled {
  5024. }
  5025. #u20006.disabled {
  5026. }
  5027. #u20006_img.selectedDisabled {
  5028. }
  5029. #u20006.selectedDisabled {
  5030. }
  5031. #u20006_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. #u20006_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. #u20007 label {
  5050. left:0px;
  5051. width:100%;
  5052. }
  5053. #u20007_img {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:0px;
  5057. top:4px;
  5058. width:12px;
  5059. height:12px;
  5060. }
  5061. #u20007 {
  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. #u20007 .text {
  5075. position:absolute;
  5076. align-self:center;
  5077. padding:0px 2px 0px 2px;
  5078. box-sizing:border-box;
  5079. }
  5080. #u20007_img.selected {
  5081. }
  5082. #u20007.selected {
  5083. }
  5084. #u20007_img.disabled {
  5085. }
  5086. #u20007.disabled {
  5087. }
  5088. #u20007_img.selectedDisabled {
  5089. }
  5090. #u20007.selectedDisabled {
  5091. }
  5092. #u20007_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. #u20007_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. #u20008 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:350px;
  5114. top:210px;
  5115. width:1863px;
  5116. height:118px;
  5117. }
  5118. #u20009_img {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:0px;
  5122. top:0px;
  5123. width:81px;
  5124. height:80px;
  5125. }
  5126. #u20009 {
  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. #u20009 .text {
  5141. position:absolute;
  5142. align-self:center;
  5143. padding:2px 2px 2px 0px;
  5144. box-sizing:border-box;
  5145. width:100%;
  5146. }
  5147. #u20009_text {
  5148. border-width:0px;
  5149. word-wrap:break-word;
  5150. text-transform:none;
  5151. }
  5152. #u20010_img {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:81px;
  5158. height:80px;
  5159. }
  5160. #u20010 {
  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. #u20010 .text {
  5175. position:absolute;
  5176. align-self:center;
  5177. padding:2px 2px 2px 0px;
  5178. box-sizing:border-box;
  5179. width:100%;
  5180. }
  5181. #u20010_text {
  5182. border-width:0px;
  5183. word-wrap:break-word;
  5184. text-transform:none;
  5185. }
  5186. #u20011_img {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:81px;
  5192. height:80px;
  5193. }
  5194. #u20011 {
  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. #u20011 .text {
  5209. position:absolute;
  5210. align-self:center;
  5211. padding:2px 2px 2px 0px;
  5212. box-sizing:border-box;
  5213. width:100%;
  5214. }
  5215. #u20011_text {
  5216. border-width:0px;
  5217. word-wrap:break-word;
  5218. text-transform:none;
  5219. visibility:hidden;
  5220. }
  5221. #u20012_img {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:0px;
  5226. width:81px;
  5227. height:80px;
  5228. }
  5229. #u20012 {
  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. #u20012 .text {
  5244. position:absolute;
  5245. align-self:center;
  5246. padding:2px 2px 2px 0px;
  5247. box-sizing:border-box;
  5248. width:100%;
  5249. }
  5250. #u20012_text {
  5251. border-width:0px;
  5252. word-wrap:break-word;
  5253. text-transform:none;
  5254. visibility:hidden;
  5255. }
  5256. #u20013_img {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:81px;
  5262. height:80px;
  5263. }
  5264. #u20013 {
  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. #u20013 .text {
  5279. position:absolute;
  5280. align-self:center;
  5281. padding:2px 2px 2px 0px;
  5282. box-sizing:border-box;
  5283. width:100%;
  5284. }
  5285. #u20013_text {
  5286. border-width:0px;
  5287. word-wrap:break-word;
  5288. text-transform:none;
  5289. visibility:hidden;
  5290. }
  5291. #u20014_img {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:81px;
  5297. height:80px;
  5298. }
  5299. #u20014 {
  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. #u20014 .text {
  5314. position:absolute;
  5315. align-self:center;
  5316. padding:2px 2px 2px 0px;
  5317. box-sizing:border-box;
  5318. width:100%;
  5319. }
  5320. #u20014_text {
  5321. border-width:0px;
  5322. word-wrap:break-word;
  5323. text-transform:none;
  5324. visibility:hidden;
  5325. }
  5326. #u20015_img {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:0px;
  5330. top:0px;
  5331. width:81px;
  5332. height:80px;
  5333. }
  5334. #u20015 {
  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. #u20015 .text {
  5349. position:absolute;
  5350. align-self:center;
  5351. padding:2px 2px 2px 0px;
  5352. box-sizing:border-box;
  5353. width:100%;
  5354. }
  5355. #u20015_text {
  5356. border-width:0px;
  5357. word-wrap:break-word;
  5358. text-transform:none;
  5359. visibility:hidden;
  5360. }
  5361. #u20016_img {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:81px;
  5367. height:80px;
  5368. }
  5369. #u20016 {
  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. #u20016 .text {
  5384. position:absolute;
  5385. align-self:center;
  5386. padding:2px 2px 2px 0px;
  5387. box-sizing:border-box;
  5388. width:100%;
  5389. }
  5390. #u20016_text {
  5391. border-width:0px;
  5392. word-wrap:break-word;
  5393. text-transform:none;
  5394. visibility:hidden;
  5395. }
  5396. #u20017_img {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:0px;
  5400. top:0px;
  5401. width:81px;
  5402. height:80px;
  5403. }
  5404. #u20017 {
  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. #u20017 .text {
  5419. position:absolute;
  5420. align-self:center;
  5421. padding:2px 2px 2px 0px;
  5422. box-sizing:border-box;
  5423. width:100%;
  5424. }
  5425. #u20017_text {
  5426. border-width:0px;
  5427. word-wrap:break-word;
  5428. text-transform:none;
  5429. visibility:hidden;
  5430. }
  5431. #u20018_img {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:81px;
  5437. height:80px;
  5438. }
  5439. #u20018 {
  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. #u20018 .text {
  5454. position:absolute;
  5455. align-self:center;
  5456. padding:2px 2px 2px 0px;
  5457. box-sizing:border-box;
  5458. width:100%;
  5459. }
  5460. #u20018_text {
  5461. border-width:0px;
  5462. word-wrap:break-word;
  5463. text-transform:none;
  5464. visibility:hidden;
  5465. }
  5466. #u20019_img {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:81px;
  5472. height:80px;
  5473. }
  5474. #u20019 {
  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. #u20019 .text {
  5489. position:absolute;
  5490. align-self:center;
  5491. padding:2px 2px 2px 0px;
  5492. box-sizing:border-box;
  5493. width:100%;
  5494. }
  5495. #u20019_text {
  5496. border-width:0px;
  5497. word-wrap:break-word;
  5498. text-transform:none;
  5499. visibility:hidden;
  5500. }
  5501. #u20020_img {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:0px;
  5505. top:0px;
  5506. width:81px;
  5507. height:80px;
  5508. }
  5509. #u20020 {
  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. #u20020 .text {
  5524. position:absolute;
  5525. align-self:center;
  5526. padding:2px 2px 2px 0px;
  5527. box-sizing:border-box;
  5528. width:100%;
  5529. }
  5530. #u20020_text {
  5531. border-width:0px;
  5532. word-wrap:break-word;
  5533. text-transform:none;
  5534. visibility:hidden;
  5535. }
  5536. #u20021_img {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:81px;
  5542. height:80px;
  5543. }
  5544. #u20021 {
  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. #u20021 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:2px 2px 2px 0px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u20021_text {
  5566. border-width:0px;
  5567. word-wrap:break-word;
  5568. text-transform:none;
  5569. visibility:hidden;
  5570. }
  5571. #u20022_img {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:0px;
  5575. top:0px;
  5576. width:81px;
  5577. height:80px;
  5578. }
  5579. #u20022 {
  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. #u20022 .text {
  5594. position:absolute;
  5595. align-self:center;
  5596. padding:2px 2px 2px 0px;
  5597. box-sizing:border-box;
  5598. width:100%;
  5599. }
  5600. #u20022_text {
  5601. border-width:0px;
  5602. word-wrap:break-word;
  5603. text-transform:none;
  5604. visibility:hidden;
  5605. }
  5606. #u20023_img {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:0px;
  5610. top:0px;
  5611. width:81px;
  5612. height:80px;
  5613. }
  5614. #u20023 {
  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. #u20023 .text {
  5629. position:absolute;
  5630. align-self:center;
  5631. padding:2px 2px 2px 0px;
  5632. box-sizing:border-box;
  5633. width:100%;
  5634. }
  5635. #u20023_text {
  5636. border-width:0px;
  5637. word-wrap:break-word;
  5638. text-transform:none;
  5639. visibility:hidden;
  5640. }
  5641. #u20024_img {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:0px;
  5645. top:0px;
  5646. width:81px;
  5647. height:80px;
  5648. }
  5649. #u20024 {
  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. #u20024 .text {
  5664. position:absolute;
  5665. align-self:center;
  5666. padding:2px 2px 2px 0px;
  5667. box-sizing:border-box;
  5668. width:100%;
  5669. }
  5670. #u20024_text {
  5671. border-width:0px;
  5672. word-wrap:break-word;
  5673. text-transform:none;
  5674. visibility:hidden;
  5675. }
  5676. #u20025_img {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:81px;
  5682. height:80px;
  5683. }
  5684. #u20025 {
  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. #u20025 .text {
  5699. position:absolute;
  5700. align-self:center;
  5701. padding:2px 2px 2px 0px;
  5702. box-sizing:border-box;
  5703. width:100%;
  5704. }
  5705. #u20025_text {
  5706. border-width:0px;
  5707. word-wrap:break-word;
  5708. text-transform:none;
  5709. visibility:hidden;
  5710. }
  5711. #u20026_img {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:0px;
  5715. top:0px;
  5716. width:81px;
  5717. height:80px;
  5718. }
  5719. #u20026 {
  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. #u20026 .text {
  5734. position:absolute;
  5735. align-self:center;
  5736. padding:2px 2px 2px 0px;
  5737. box-sizing:border-box;
  5738. width:100%;
  5739. }
  5740. #u20026_text {
  5741. border-width:0px;
  5742. word-wrap:break-word;
  5743. text-transform:none;
  5744. visibility:hidden;
  5745. }
  5746. #u20027_img {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:0px;
  5750. top:0px;
  5751. width:81px;
  5752. height:80px;
  5753. }
  5754. #u20027 {
  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. #u20027 .text {
  5769. position:absolute;
  5770. align-self:center;
  5771. padding:2px 2px 2px 0px;
  5772. box-sizing:border-box;
  5773. width:100%;
  5774. }
  5775. #u20027_text {
  5776. border-width:0px;
  5777. word-wrap:break-word;
  5778. text-transform:none;
  5779. visibility:hidden;
  5780. }
  5781. #u20028_img {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:0px;
  5785. top:0px;
  5786. width:81px;
  5787. height:80px;
  5788. }
  5789. #u20028 {
  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. #u20028 .text {
  5804. position:absolute;
  5805. align-self:center;
  5806. padding:2px 2px 2px 0px;
  5807. box-sizing:border-box;
  5808. width:100%;
  5809. }
  5810. #u20028_text {
  5811. border-width:0px;
  5812. word-wrap:break-word;
  5813. text-transform:none;
  5814. }
  5815. #u20029_img {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:81px;
  5821. height:80px;
  5822. }
  5823. #u20029 {
  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. #u20029 .text {
  5838. position:absolute;
  5839. align-self:center;
  5840. padding:2px 2px 2px 0px;
  5841. box-sizing:border-box;
  5842. width:100%;
  5843. }
  5844. #u20029_text {
  5845. border-width:0px;
  5846. word-wrap:break-word;
  5847. text-transform:none;
  5848. }
  5849. #u20030_img {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:81px;
  5855. height:80px;
  5856. }
  5857. #u20030 {
  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. #u20030 .text {
  5872. position:absolute;
  5873. align-self:center;
  5874. padding:2px 2px 2px 0px;
  5875. box-sizing:border-box;
  5876. width:100%;
  5877. }
  5878. #u20030_text {
  5879. border-width:0px;
  5880. word-wrap:break-word;
  5881. text-transform:none;
  5882. }
  5883. #u20031_img {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:0px;
  5887. top:0px;
  5888. width:81px;
  5889. height:80px;
  5890. }
  5891. #u20031 {
  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. #u20031 .text {
  5906. position:absolute;
  5907. align-self:center;
  5908. padding:2px 2px 2px 0px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u20031_text {
  5913. border-width:0px;
  5914. word-wrap:break-word;
  5915. text-transform:none;
  5916. }
  5917. #u20032_img {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:81px;
  5923. height:38px;
  5924. }
  5925. #u20032 {
  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. #u20032 .text {
  5939. position:absolute;
  5940. align-self:center;
  5941. padding:2px 2px 2px 0px;
  5942. box-sizing:border-box;
  5943. width:100%;
  5944. }
  5945. #u20032_text {
  5946. border-width:0px;
  5947. word-wrap:break-word;
  5948. text-transform:none;
  5949. visibility:hidden;
  5950. }
  5951. #u20033_img {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:0px;
  5955. top:0px;
  5956. width:81px;
  5957. height:38px;
  5958. }
  5959. #u20033 {
  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. #u20033 .text {
  5974. position:absolute;
  5975. align-self:center;
  5976. padding:2px 2px 2px 0px;
  5977. box-sizing:border-box;
  5978. width:100%;
  5979. }
  5980. #u20033_text {
  5981. border-width:0px;
  5982. word-wrap:break-word;
  5983. text-transform:none;
  5984. visibility:hidden;
  5985. }
  5986. #u20034_img {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:0px;
  5990. top:0px;
  5991. width:81px;
  5992. height:38px;
  5993. }
  5994. #u20034 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:162px;
  5998. top:80px;
  5999. width:81px;
  6000. height:38px;
  6001. display:flex;
  6002. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6003. font-weight:400;
  6004. font-style:normal;
  6005. font-size:12px;
  6006. color:#333333;
  6007. }
  6008. #u20034 .text {
  6009. position:absolute;
  6010. align-self:center;
  6011. padding:2px 2px 2px 0px;
  6012. box-sizing:border-box;
  6013. width:100%;
  6014. }
  6015. #u20034_text {
  6016. border-width:0px;
  6017. word-wrap:break-word;
  6018. text-transform:none;
  6019. visibility:hidden;
  6020. }
  6021. #u20035_img {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:0px;
  6026. width:81px;
  6027. height:38px;
  6028. }
  6029. #u20035 {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:243px;
  6033. top:80px;
  6034. width:81px;
  6035. height:38px;
  6036. display:flex;
  6037. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6038. font-weight:400;
  6039. font-style:normal;
  6040. font-size:12px;
  6041. color:#333333;
  6042. }
  6043. #u20035 .text {
  6044. position:absolute;
  6045. align-self:center;
  6046. padding:2px 2px 2px 0px;
  6047. box-sizing:border-box;
  6048. width:100%;
  6049. }
  6050. #u20035_text {
  6051. border-width:0px;
  6052. word-wrap:break-word;
  6053. text-transform:none;
  6054. visibility:hidden;
  6055. }
  6056. #u20036_img {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:0px;
  6060. top:0px;
  6061. width:81px;
  6062. height:38px;
  6063. }
  6064. #u20036 {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:324px;
  6068. top:80px;
  6069. width:81px;
  6070. height:38px;
  6071. display:flex;
  6072. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:12px;
  6076. color:#333333;
  6077. }
  6078. #u20036 .text {
  6079. position:absolute;
  6080. align-self:center;
  6081. padding:2px 2px 2px 0px;
  6082. box-sizing:border-box;
  6083. width:100%;
  6084. }
  6085. #u20036_text {
  6086. border-width:0px;
  6087. word-wrap:break-word;
  6088. text-transform:none;
  6089. visibility:hidden;
  6090. }
  6091. #u20037_img {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:0px;
  6095. top:0px;
  6096. width:81px;
  6097. height:38px;
  6098. }
  6099. #u20037 {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:405px;
  6103. top:80px;
  6104. width:81px;
  6105. height:38px;
  6106. display:flex;
  6107. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6108. font-weight:400;
  6109. font-style:normal;
  6110. font-size:12px;
  6111. color:#333333;
  6112. }
  6113. #u20037 .text {
  6114. position:absolute;
  6115. align-self:center;
  6116. padding:2px 2px 2px 0px;
  6117. box-sizing:border-box;
  6118. width:100%;
  6119. }
  6120. #u20037_text {
  6121. border-width:0px;
  6122. word-wrap:break-word;
  6123. text-transform:none;
  6124. visibility:hidden;
  6125. }
  6126. #u20038_img {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:81px;
  6132. height:38px;
  6133. }
  6134. #u20038 {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:486px;
  6138. top:80px;
  6139. width:81px;
  6140. height:38px;
  6141. display:flex;
  6142. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6143. font-weight:400;
  6144. font-style:normal;
  6145. font-size:12px;
  6146. color:#333333;
  6147. }
  6148. #u20038 .text {
  6149. position:absolute;
  6150. align-self:center;
  6151. padding:2px 2px 2px 0px;
  6152. box-sizing:border-box;
  6153. width:100%;
  6154. }
  6155. #u20038_text {
  6156. border-width:0px;
  6157. word-wrap:break-word;
  6158. text-transform:none;
  6159. visibility:hidden;
  6160. }
  6161. #u20039_img {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:0px;
  6165. top:0px;
  6166. width:81px;
  6167. height:38px;
  6168. }
  6169. #u20039 {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:567px;
  6173. top:80px;
  6174. width:81px;
  6175. height:38px;
  6176. display:flex;
  6177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6178. font-weight:400;
  6179. font-style:normal;
  6180. font-size:12px;
  6181. color:#333333;
  6182. }
  6183. #u20039 .text {
  6184. position:absolute;
  6185. align-self:center;
  6186. padding:2px 2px 2px 0px;
  6187. box-sizing:border-box;
  6188. width:100%;
  6189. }
  6190. #u20039_text {
  6191. border-width:0px;
  6192. word-wrap:break-word;
  6193. text-transform:none;
  6194. visibility:hidden;
  6195. }
  6196. #u20040_img {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:81px;
  6202. height:38px;
  6203. }
  6204. #u20040 {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:648px;
  6208. top:80px;
  6209. width:81px;
  6210. height:38px;
  6211. display:flex;
  6212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6213. font-weight:400;
  6214. font-style:normal;
  6215. font-size:12px;
  6216. color:#333333;
  6217. }
  6218. #u20040 .text {
  6219. position:absolute;
  6220. align-self:center;
  6221. padding:2px 2px 2px 0px;
  6222. box-sizing:border-box;
  6223. width:100%;
  6224. }
  6225. #u20040_text {
  6226. border-width:0px;
  6227. word-wrap:break-word;
  6228. text-transform:none;
  6229. }
  6230. #u20041_img {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:0px;
  6234. top:0px;
  6235. width:81px;
  6236. height:38px;
  6237. }
  6238. #u20041 {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:729px;
  6242. top:80px;
  6243. width:81px;
  6244. height:38px;
  6245. display:flex;
  6246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6247. font-weight:400;
  6248. font-style:normal;
  6249. font-size:12px;
  6250. color:#333333;
  6251. }
  6252. #u20041 .text {
  6253. position:absolute;
  6254. align-self:center;
  6255. padding:2px 2px 2px 0px;
  6256. box-sizing:border-box;
  6257. width:100%;
  6258. }
  6259. #u20041_text {
  6260. border-width:0px;
  6261. word-wrap:break-word;
  6262. text-transform:none;
  6263. visibility:hidden;
  6264. }
  6265. #u20042_img {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:81px;
  6271. height:38px;
  6272. }
  6273. #u20042 {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:810px;
  6277. top:80px;
  6278. width:81px;
  6279. height:38px;
  6280. display:flex;
  6281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6282. font-weight:400;
  6283. font-style:normal;
  6284. font-size:12px;
  6285. color:#333333;
  6286. }
  6287. #u20042 .text {
  6288. position:absolute;
  6289. align-self:center;
  6290. padding:2px 2px 2px 0px;
  6291. box-sizing:border-box;
  6292. width:100%;
  6293. }
  6294. #u20042_text {
  6295. border-width:0px;
  6296. word-wrap:break-word;
  6297. text-transform:none;
  6298. visibility:hidden;
  6299. }
  6300. #u20043_img {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:0px;
  6304. top:0px;
  6305. width:81px;
  6306. height:38px;
  6307. }
  6308. #u20043 {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:891px;
  6312. top:80px;
  6313. width:81px;
  6314. height:38px;
  6315. display:flex;
  6316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6317. font-weight:400;
  6318. font-style:normal;
  6319. font-size:12px;
  6320. color:#333333;
  6321. }
  6322. #u20043 .text {
  6323. position:absolute;
  6324. align-self:center;
  6325. padding:2px 2px 2px 0px;
  6326. box-sizing:border-box;
  6327. width:100%;
  6328. }
  6329. #u20043_text {
  6330. border-width:0px;
  6331. word-wrap:break-word;
  6332. text-transform:none;
  6333. visibility:hidden;
  6334. }
  6335. #u20044_img {
  6336. border-width:0px;
  6337. position:absolute;
  6338. left:0px;
  6339. top:0px;
  6340. width:81px;
  6341. height:38px;
  6342. }
  6343. #u20044 {
  6344. border-width:0px;
  6345. position:absolute;
  6346. left:972px;
  6347. top:80px;
  6348. width:81px;
  6349. height:38px;
  6350. display:flex;
  6351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6352. font-weight:400;
  6353. font-style:normal;
  6354. font-size:12px;
  6355. color:#333333;
  6356. }
  6357. #u20044 .text {
  6358. position:absolute;
  6359. align-self:center;
  6360. padding:2px 2px 2px 0px;
  6361. box-sizing:border-box;
  6362. width:100%;
  6363. }
  6364. #u20044_text {
  6365. border-width:0px;
  6366. word-wrap:break-word;
  6367. text-transform:none;
  6368. visibility:hidden;
  6369. }
  6370. #u20045_img {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:0px;
  6374. top:0px;
  6375. width:81px;
  6376. height:38px;
  6377. }
  6378. #u20045 {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:1053px;
  6382. top:80px;
  6383. width:81px;
  6384. height:38px;
  6385. display:flex;
  6386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6387. font-weight:400;
  6388. font-style:normal;
  6389. font-size:12px;
  6390. color:#333333;
  6391. }
  6392. #u20045 .text {
  6393. position:absolute;
  6394. align-self:center;
  6395. padding:2px 2px 2px 0px;
  6396. box-sizing:border-box;
  6397. width:100%;
  6398. }
  6399. #u20045_text {
  6400. border-width:0px;
  6401. word-wrap:break-word;
  6402. text-transform:none;
  6403. visibility:hidden;
  6404. }
  6405. #u20046_img {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:0px;
  6409. top:0px;
  6410. width:81px;
  6411. height:38px;
  6412. }
  6413. #u20046 {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:1134px;
  6417. top:80px;
  6418. width:81px;
  6419. height:38px;
  6420. display:flex;
  6421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6422. font-weight:400;
  6423. font-style:normal;
  6424. font-size:12px;
  6425. color:#333333;
  6426. }
  6427. #u20046 .text {
  6428. position:absolute;
  6429. align-self:center;
  6430. padding:2px 2px 2px 0px;
  6431. box-sizing:border-box;
  6432. width:100%;
  6433. }
  6434. #u20046_text {
  6435. border-width:0px;
  6436. word-wrap:break-word;
  6437. text-transform:none;
  6438. visibility:hidden;
  6439. }
  6440. #u20047_img {
  6441. border-width:0px;
  6442. position:absolute;
  6443. left:0px;
  6444. top:0px;
  6445. width:81px;
  6446. height:38px;
  6447. }
  6448. #u20047 {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:1215px;
  6452. top:80px;
  6453. width:81px;
  6454. height:38px;
  6455. display:flex;
  6456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6457. font-weight:400;
  6458. font-style:normal;
  6459. font-size:12px;
  6460. color:#333333;
  6461. }
  6462. #u20047 .text {
  6463. position:absolute;
  6464. align-self:center;
  6465. padding:2px 2px 2px 0px;
  6466. box-sizing:border-box;
  6467. width:100%;
  6468. }
  6469. #u20047_text {
  6470. border-width:0px;
  6471. word-wrap:break-word;
  6472. text-transform:none;
  6473. visibility:hidden;
  6474. }
  6475. #u20048_img {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:0px;
  6479. top:0px;
  6480. width:81px;
  6481. height:38px;
  6482. }
  6483. #u20048 {
  6484. border-width:0px;
  6485. position:absolute;
  6486. left:1296px;
  6487. top:80px;
  6488. width:81px;
  6489. height:38px;
  6490. display:flex;
  6491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6492. font-weight:400;
  6493. font-style:normal;
  6494. font-size:12px;
  6495. color:#333333;
  6496. }
  6497. #u20048 .text {
  6498. position:absolute;
  6499. align-self:center;
  6500. padding:2px 2px 2px 0px;
  6501. box-sizing:border-box;
  6502. width:100%;
  6503. }
  6504. #u20048_text {
  6505. border-width:0px;
  6506. word-wrap:break-word;
  6507. text-transform:none;
  6508. visibility:hidden;
  6509. }
  6510. #u20049_img {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:0px;
  6514. top:0px;
  6515. width:81px;
  6516. height:38px;
  6517. }
  6518. #u20049 {
  6519. border-width:0px;
  6520. position:absolute;
  6521. left:1377px;
  6522. top:80px;
  6523. width:81px;
  6524. height:38px;
  6525. display:flex;
  6526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6527. font-weight:400;
  6528. font-style:normal;
  6529. font-size:12px;
  6530. color:#333333;
  6531. }
  6532. #u20049 .text {
  6533. position:absolute;
  6534. align-self:center;
  6535. padding:2px 2px 2px 0px;
  6536. box-sizing:border-box;
  6537. width:100%;
  6538. }
  6539. #u20049_text {
  6540. border-width:0px;
  6541. word-wrap:break-word;
  6542. text-transform:none;
  6543. visibility:hidden;
  6544. }
  6545. #u20050_img {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:0px;
  6549. top:0px;
  6550. width:81px;
  6551. height:38px;
  6552. }
  6553. #u20050 {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:1458px;
  6557. top:80px;
  6558. width:81px;
  6559. height:38px;
  6560. display:flex;
  6561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6562. font-weight:400;
  6563. font-style:normal;
  6564. font-size:12px;
  6565. color:#333333;
  6566. }
  6567. #u20050 .text {
  6568. position:absolute;
  6569. align-self:center;
  6570. padding:2px 2px 2px 0px;
  6571. box-sizing:border-box;
  6572. width:100%;
  6573. }
  6574. #u20050_text {
  6575. border-width:0px;
  6576. word-wrap:break-word;
  6577. text-transform:none;
  6578. visibility:hidden;
  6579. }
  6580. #u20051_img {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:0px;
  6584. top:0px;
  6585. width:81px;
  6586. height:38px;
  6587. }
  6588. #u20051 {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:1539px;
  6592. top:80px;
  6593. width:81px;
  6594. height:38px;
  6595. display:flex;
  6596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6597. font-weight:400;
  6598. font-style:normal;
  6599. font-size:12px;
  6600. color:#333333;
  6601. }
  6602. #u20051 .text {
  6603. position:absolute;
  6604. align-self:center;
  6605. padding:2px 2px 2px 0px;
  6606. box-sizing:border-box;
  6607. width:100%;
  6608. }
  6609. #u20051_text {
  6610. border-width:0px;
  6611. word-wrap:break-word;
  6612. text-transform:none;
  6613. visibility:hidden;
  6614. }
  6615. #u20052_img {
  6616. border-width:0px;
  6617. position:absolute;
  6618. left:0px;
  6619. top:0px;
  6620. width:81px;
  6621. height:38px;
  6622. }
  6623. #u20052 {
  6624. border-width:0px;
  6625. position:absolute;
  6626. left:1620px;
  6627. top:80px;
  6628. width:81px;
  6629. height:38px;
  6630. display:flex;
  6631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6632. font-weight:400;
  6633. font-style:normal;
  6634. font-size:12px;
  6635. color:#333333;
  6636. }
  6637. #u20052 .text {
  6638. position:absolute;
  6639. align-self:center;
  6640. padding:2px 2px 2px 0px;
  6641. box-sizing:border-box;
  6642. width:100%;
  6643. }
  6644. #u20052_text {
  6645. border-width:0px;
  6646. word-wrap:break-word;
  6647. text-transform:none;
  6648. visibility:hidden;
  6649. }
  6650. #u20053_img {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:0px;
  6654. top:0px;
  6655. width:81px;
  6656. height:38px;
  6657. }
  6658. #u20053 {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:1701px;
  6662. top:80px;
  6663. width:81px;
  6664. height:38px;
  6665. display:flex;
  6666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6667. font-weight:400;
  6668. font-style:normal;
  6669. font-size:12px;
  6670. color:#333333;
  6671. }
  6672. #u20053 .text {
  6673. position:absolute;
  6674. align-self:center;
  6675. padding:2px 2px 2px 0px;
  6676. box-sizing:border-box;
  6677. width:100%;
  6678. }
  6679. #u20053_text {
  6680. border-width:0px;
  6681. word-wrap:break-word;
  6682. text-transform:none;
  6683. visibility:hidden;
  6684. }
  6685. #u20054_img {
  6686. border-width:0px;
  6687. position:absolute;
  6688. left:0px;
  6689. top:0px;
  6690. width:81px;
  6691. height:38px;
  6692. }
  6693. #u20054 {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:1782px;
  6697. top:80px;
  6698. width:81px;
  6699. height:38px;
  6700. display:flex;
  6701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6702. font-weight:400;
  6703. font-style:normal;
  6704. font-size:12px;
  6705. color:#333333;
  6706. }
  6707. #u20054 .text {
  6708. position:absolute;
  6709. align-self:center;
  6710. padding:2px 2px 2px 0px;
  6711. box-sizing:border-box;
  6712. width:100%;
  6713. }
  6714. #u20054_text {
  6715. border-width:0px;
  6716. word-wrap:break-word;
  6717. text-transform:none;
  6718. visibility:hidden;
  6719. }
  6720. #u20055 {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:0px;
  6724. top:0px;
  6725. width:0px;
  6726. height:0px;
  6727. }
  6728. #u20056 {
  6729. border-width:0px;
  6730. position:absolute;
  6731. left:512px;
  6732. top:250px;
  6733. width:567px;
  6734. height:40px;
  6735. }
  6736. #u20057_img {
  6737. border-width:0px;
  6738. position:absolute;
  6739. left:0px;
  6740. top:0px;
  6741. width:81px;
  6742. height:40px;
  6743. }
  6744. #u20057 {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:0px;
  6748. top:0px;
  6749. width:81px;
  6750. height:40px;
  6751. display:flex;
  6752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. font-size:12px;
  6756. color:#FFFFFF;
  6757. }
  6758. #u20057 .text {
  6759. position:absolute;
  6760. align-self:center;
  6761. padding:2px 2px 2px 0px;
  6762. box-sizing:border-box;
  6763. width:100%;
  6764. }
  6765. #u20057_text {
  6766. border-width:0px;
  6767. word-wrap:break-word;
  6768. text-transform:none;
  6769. }
  6770. #u20058_img {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:0px;
  6774. top:0px;
  6775. width:81px;
  6776. height:40px;
  6777. }
  6778. #u20058 {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:81px;
  6782. top:0px;
  6783. width:81px;
  6784. height:40px;
  6785. display:flex;
  6786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6787. font-weight:400;
  6788. font-style:normal;
  6789. font-size:12px;
  6790. color:#FFFFFF;
  6791. }
  6792. #u20058 .text {
  6793. position:absolute;
  6794. align-self:center;
  6795. padding:2px 2px 2px 0px;
  6796. box-sizing:border-box;
  6797. width:100%;
  6798. }
  6799. #u20058_text {
  6800. border-width:0px;
  6801. word-wrap:break-word;
  6802. text-transform:none;
  6803. }
  6804. #u20059_img {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:0px;
  6808. top:0px;
  6809. width:81px;
  6810. height:40px;
  6811. }
  6812. #u20059 {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:162px;
  6816. top:0px;
  6817. width:81px;
  6818. height:40px;
  6819. display:flex;
  6820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6821. font-weight:400;
  6822. font-style:normal;
  6823. font-size:12px;
  6824. color:#FFFFFF;
  6825. }
  6826. #u20059 .text {
  6827. position:absolute;
  6828. align-self:center;
  6829. padding:2px 2px 2px 0px;
  6830. box-sizing:border-box;
  6831. width:100%;
  6832. }
  6833. #u20059_text {
  6834. border-width:0px;
  6835. word-wrap:break-word;
  6836. text-transform:none;
  6837. }
  6838. #u20060_img {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:0px;
  6842. top:0px;
  6843. width:81px;
  6844. height:40px;
  6845. }
  6846. #u20060 {
  6847. border-width:0px;
  6848. position:absolute;
  6849. left:243px;
  6850. top:0px;
  6851. width:81px;
  6852. height:40px;
  6853. display:flex;
  6854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6855. font-weight:400;
  6856. font-style:normal;
  6857. font-size:12px;
  6858. color:#FFFFFF;
  6859. }
  6860. #u20060 .text {
  6861. position:absolute;
  6862. align-self:center;
  6863. padding:2px 2px 2px 0px;
  6864. box-sizing:border-box;
  6865. width:100%;
  6866. }
  6867. #u20060_text {
  6868. border-width:0px;
  6869. word-wrap:break-word;
  6870. text-transform:none;
  6871. }
  6872. #u20061_img {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:0px;
  6876. top:0px;
  6877. width:81px;
  6878. height:40px;
  6879. }
  6880. #u20061 {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:324px;
  6884. top:0px;
  6885. width:81px;
  6886. height:40px;
  6887. display:flex;
  6888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6889. font-weight:400;
  6890. font-style:normal;
  6891. font-size:12px;
  6892. color:#FFFFFF;
  6893. }
  6894. #u20061 .text {
  6895. position:absolute;
  6896. align-self:center;
  6897. padding:2px 2px 2px 0px;
  6898. box-sizing:border-box;
  6899. width:100%;
  6900. }
  6901. #u20061_text {
  6902. border-width:0px;
  6903. word-wrap:break-word;
  6904. text-transform:none;
  6905. }
  6906. #u20062_img {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:0px;
  6910. top:0px;
  6911. width:81px;
  6912. height:40px;
  6913. }
  6914. #u20062 {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:405px;
  6918. top:0px;
  6919. width:81px;
  6920. height:40px;
  6921. display:flex;
  6922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6923. font-weight:400;
  6924. font-style:normal;
  6925. font-size:12px;
  6926. color:#FFFFFF;
  6927. }
  6928. #u20062 .text {
  6929. position:absolute;
  6930. align-self:center;
  6931. padding:2px 2px 2px 0px;
  6932. box-sizing:border-box;
  6933. width:100%;
  6934. }
  6935. #u20062_text {
  6936. border-width:0px;
  6937. word-wrap:break-word;
  6938. text-transform:none;
  6939. }
  6940. #u20063_img {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:0px;
  6944. top:0px;
  6945. width:81px;
  6946. height:40px;
  6947. }
  6948. #u20063 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:486px;
  6952. top:0px;
  6953. width:81px;
  6954. height:40px;
  6955. display:flex;
  6956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:12px;
  6960. color:#FFFFFF;
  6961. }
  6962. #u20063 .text {
  6963. position:absolute;
  6964. align-self:center;
  6965. padding:2px 2px 2px 0px;
  6966. box-sizing:border-box;
  6967. width:100%;
  6968. }
  6969. #u20063_text {
  6970. border-width:0px;
  6971. word-wrap:break-word;
  6972. text-transform:none;
  6973. }
  6974. #u20064_div {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:567px;
  6980. height:40px;
  6981. background:inherit;
  6982. background-color:rgba(51, 51, 51, 1);
  6983. box-sizing:border-box;
  6984. border-width:1px;
  6985. border-style:solid;
  6986. border-color:rgba(170, 170, 170, 1);
  6987. border-radius:0px;
  6988. -moz-box-shadow:none;
  6989. -webkit-box-shadow:none;
  6990. box-shadow:none;
  6991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6992. font-weight:400;
  6993. font-style:normal;
  6994. font-size:12px;
  6995. color:#FFFFFF;
  6996. }
  6997. #u20064 {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:512px;
  7001. top:210px;
  7002. width:567px;
  7003. height:40px;
  7004. display:flex;
  7005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7006. font-weight:400;
  7007. font-style:normal;
  7008. font-size:12px;
  7009. color:#FFFFFF;
  7010. }
  7011. #u20064 .text {
  7012. position:absolute;
  7013. align-self:center;
  7014. padding:2px 2px 2px 2px;
  7015. box-sizing:border-box;
  7016. width:100%;
  7017. }
  7018. #u20064_text {
  7019. border-width:0px;
  7020. word-wrap:break-word;
  7021. text-transform:none;
  7022. }
  7023. #u20065 {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:0px;
  7027. top:0px;
  7028. width:0px;
  7029. height:0px;
  7030. }
  7031. #u20066 {
  7032. border-width:0px;
  7033. position:absolute;
  7034. left:1079px;
  7035. top:250px;
  7036. width:567px;
  7037. height:40px;
  7038. }
  7039. #u20067_img {
  7040. border-width:0px;
  7041. position:absolute;
  7042. left:0px;
  7043. top:0px;
  7044. width:81px;
  7045. height:40px;
  7046. }
  7047. #u20067 {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:0px;
  7051. top:0px;
  7052. width:81px;
  7053. height:40px;
  7054. display:flex;
  7055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7056. font-weight:400;
  7057. font-style:normal;
  7058. font-size:12px;
  7059. color:#FFFFFF;
  7060. }
  7061. #u20067 .text {
  7062. position:absolute;
  7063. align-self:center;
  7064. padding:2px 2px 2px 0px;
  7065. box-sizing:border-box;
  7066. width:100%;
  7067. }
  7068. #u20067_text {
  7069. border-width:0px;
  7070. word-wrap:break-word;
  7071. text-transform:none;
  7072. }
  7073. #u20068_img {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:0px;
  7077. top:0px;
  7078. width:81px;
  7079. height:40px;
  7080. }
  7081. #u20068 {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:81px;
  7085. top:0px;
  7086. width:81px;
  7087. height:40px;
  7088. display:flex;
  7089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. font-size:12px;
  7093. color:#FFFFFF;
  7094. }
  7095. #u20068 .text {
  7096. position:absolute;
  7097. align-self:center;
  7098. padding:2px 2px 2px 0px;
  7099. box-sizing:border-box;
  7100. width:100%;
  7101. }
  7102. #u20068_text {
  7103. border-width:0px;
  7104. word-wrap:break-word;
  7105. text-transform:none;
  7106. }
  7107. #u20069_img {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:0px;
  7111. top:0px;
  7112. width:81px;
  7113. height:40px;
  7114. }
  7115. #u20069 {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:162px;
  7119. top:0px;
  7120. width:81px;
  7121. height:40px;
  7122. display:flex;
  7123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7124. font-weight:400;
  7125. font-style:normal;
  7126. font-size:12px;
  7127. color:#FFFFFF;
  7128. }
  7129. #u20069 .text {
  7130. position:absolute;
  7131. align-self:center;
  7132. padding:2px 2px 2px 0px;
  7133. box-sizing:border-box;
  7134. width:100%;
  7135. }
  7136. #u20069_text {
  7137. border-width:0px;
  7138. word-wrap:break-word;
  7139. text-transform:none;
  7140. }
  7141. #u20070_img {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:0px;
  7145. top:0px;
  7146. width:81px;
  7147. height:40px;
  7148. }
  7149. #u20070 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:243px;
  7153. top:0px;
  7154. width:81px;
  7155. height:40px;
  7156. display:flex;
  7157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7158. font-weight:400;
  7159. font-style:normal;
  7160. font-size:12px;
  7161. color:#FFFFFF;
  7162. }
  7163. #u20070 .text {
  7164. position:absolute;
  7165. align-self:center;
  7166. padding:2px 2px 2px 0px;
  7167. box-sizing:border-box;
  7168. width:100%;
  7169. }
  7170. #u20070_text {
  7171. border-width:0px;
  7172. word-wrap:break-word;
  7173. text-transform:none;
  7174. }
  7175. #u20071_img {
  7176. border-width:0px;
  7177. position:absolute;
  7178. left:0px;
  7179. top:0px;
  7180. width:81px;
  7181. height:40px;
  7182. }
  7183. #u20071 {
  7184. border-width:0px;
  7185. position:absolute;
  7186. left:324px;
  7187. top:0px;
  7188. width:81px;
  7189. height:40px;
  7190. display:flex;
  7191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7192. font-weight:400;
  7193. font-style:normal;
  7194. font-size:12px;
  7195. color:#FFFFFF;
  7196. }
  7197. #u20071 .text {
  7198. position:absolute;
  7199. align-self:center;
  7200. padding:2px 2px 2px 0px;
  7201. box-sizing:border-box;
  7202. width:100%;
  7203. }
  7204. #u20071_text {
  7205. border-width:0px;
  7206. word-wrap:break-word;
  7207. text-transform:none;
  7208. }
  7209. #u20072_img {
  7210. border-width:0px;
  7211. position:absolute;
  7212. left:0px;
  7213. top:0px;
  7214. width:81px;
  7215. height:40px;
  7216. }
  7217. #u20072 {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:405px;
  7221. top:0px;
  7222. width:81px;
  7223. height:40px;
  7224. display:flex;
  7225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7226. font-weight:400;
  7227. font-style:normal;
  7228. font-size:12px;
  7229. color:#FFFFFF;
  7230. }
  7231. #u20072 .text {
  7232. position:absolute;
  7233. align-self:center;
  7234. padding:2px 2px 2px 0px;
  7235. box-sizing:border-box;
  7236. width:100%;
  7237. }
  7238. #u20072_text {
  7239. border-width:0px;
  7240. word-wrap:break-word;
  7241. text-transform:none;
  7242. }
  7243. #u20073_img {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:0px;
  7247. top:0px;
  7248. width:81px;
  7249. height:40px;
  7250. }
  7251. #u20073 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:486px;
  7255. top:0px;
  7256. width:81px;
  7257. height:40px;
  7258. display:flex;
  7259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7260. font-weight:400;
  7261. font-style:normal;
  7262. font-size:12px;
  7263. color:#FFFFFF;
  7264. }
  7265. #u20073 .text {
  7266. position:absolute;
  7267. align-self:center;
  7268. padding:2px 2px 2px 0px;
  7269. box-sizing:border-box;
  7270. width:100%;
  7271. }
  7272. #u20073_text {
  7273. border-width:0px;
  7274. word-wrap:break-word;
  7275. text-transform:none;
  7276. }
  7277. #u20074_div {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:567px;
  7283. height:40px;
  7284. background:inherit;
  7285. background-color:rgba(51, 51, 51, 1);
  7286. box-sizing:border-box;
  7287. border-width:1px;
  7288. border-style:solid;
  7289. border-color:rgba(170, 170, 170, 1);
  7290. border-radius:0px;
  7291. -moz-box-shadow:none;
  7292. -webkit-box-shadow:none;
  7293. box-shadow:none;
  7294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7295. font-weight:400;
  7296. font-style:normal;
  7297. font-size:12px;
  7298. color:#FFFFFF;
  7299. }
  7300. #u20074 {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:1079px;
  7304. top:210px;
  7305. width:567px;
  7306. height:40px;
  7307. display:flex;
  7308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7309. font-weight:400;
  7310. font-style:normal;
  7311. font-size:12px;
  7312. color:#FFFFFF;
  7313. }
  7314. #u20074 .text {
  7315. position:absolute;
  7316. align-self:center;
  7317. padding:2px 2px 2px 2px;
  7318. box-sizing:border-box;
  7319. width:100%;
  7320. }
  7321. #u20074_text {
  7322. border-width:0px;
  7323. word-wrap:break-word;
  7324. text-transform:none;
  7325. }
  7326. #u20075 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:0px;
  7332. height:0px;
  7333. }
  7334. #u20076 {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:1646px;
  7338. top:250px;
  7339. width:243px;
  7340. height:40px;
  7341. }
  7342. #u20077_img {
  7343. border-width:0px;
  7344. position:absolute;
  7345. left:0px;
  7346. top:0px;
  7347. width:81px;
  7348. height:40px;
  7349. }
  7350. #u20077 {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:0px;
  7354. top:0px;
  7355. width:81px;
  7356. height:40px;
  7357. display:flex;
  7358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7359. font-weight:400;
  7360. font-style:normal;
  7361. font-size:12px;
  7362. color:#FFFFFF;
  7363. }
  7364. #u20077 .text {
  7365. position:absolute;
  7366. align-self:center;
  7367. padding:2px 2px 2px 0px;
  7368. box-sizing:border-box;
  7369. width:100%;
  7370. }
  7371. #u20077_text {
  7372. border-width:0px;
  7373. word-wrap:break-word;
  7374. text-transform:none;
  7375. }
  7376. #u20078_img {
  7377. border-width:0px;
  7378. position:absolute;
  7379. left:0px;
  7380. top:0px;
  7381. width:81px;
  7382. height:40px;
  7383. }
  7384. #u20078 {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:81px;
  7388. top:0px;
  7389. width:81px;
  7390. height:40px;
  7391. display:flex;
  7392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7393. font-weight:400;
  7394. font-style:normal;
  7395. font-size:12px;
  7396. color:#FFFFFF;
  7397. }
  7398. #u20078 .text {
  7399. position:absolute;
  7400. align-self:center;
  7401. padding:2px 2px 2px 0px;
  7402. box-sizing:border-box;
  7403. width:100%;
  7404. }
  7405. #u20078_text {
  7406. border-width:0px;
  7407. word-wrap:break-word;
  7408. text-transform:none;
  7409. }
  7410. #u20079_img {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:0px;
  7414. top:0px;
  7415. width:81px;
  7416. height:40px;
  7417. }
  7418. #u20079 {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:162px;
  7422. top:0px;
  7423. width:81px;
  7424. height:40px;
  7425. display:flex;
  7426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7427. font-weight:400;
  7428. font-style:normal;
  7429. font-size:12px;
  7430. color:#FFFFFF;
  7431. }
  7432. #u20079 .text {
  7433. position:absolute;
  7434. align-self:center;
  7435. padding:2px 2px 2px 0px;
  7436. box-sizing:border-box;
  7437. width:100%;
  7438. }
  7439. #u20079_text {
  7440. border-width:0px;
  7441. word-wrap:break-word;
  7442. text-transform:none;
  7443. }
  7444. #u20080_div {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:0px;
  7448. top:0px;
  7449. width:243px;
  7450. height:40px;
  7451. background:inherit;
  7452. background-color:rgba(51, 51, 51, 1);
  7453. box-sizing:border-box;
  7454. border-width:1px;
  7455. border-style:solid;
  7456. border-color:rgba(170, 170, 170, 1);
  7457. border-radius:0px;
  7458. -moz-box-shadow:none;
  7459. -webkit-box-shadow:none;
  7460. box-shadow:none;
  7461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7462. font-weight:400;
  7463. font-style:normal;
  7464. font-size:12px;
  7465. color:#FFFFFF;
  7466. }
  7467. #u20080 {
  7468. border-width:0px;
  7469. position:absolute;
  7470. left:1646px;
  7471. top:210px;
  7472. width:243px;
  7473. height:40px;
  7474. display:flex;
  7475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7476. font-weight:400;
  7477. font-style:normal;
  7478. font-size:12px;
  7479. color:#FFFFFF;
  7480. }
  7481. #u20080 .text {
  7482. position:absolute;
  7483. align-self:center;
  7484. padding:2px 2px 2px 2px;
  7485. box-sizing:border-box;
  7486. width:100%;
  7487. }
  7488. #u20080_text {
  7489. border-width:0px;
  7490. word-wrap:break-word;
  7491. text-transform:none;
  7492. }