styles.css 208 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1792px;
  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. #u20832_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u20832 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u20832 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u20832_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u20833_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u20833 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u20833 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u20833_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u20834 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u20835_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u20835 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u20835 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u20835_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u20836_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u20836 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u20836 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u20836_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u20837_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u20837 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u20837 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u20837_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u20838_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u20838 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u20838 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u20838_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u20839 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u20840_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u20840 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u20840 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u20840_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u20841_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u20841 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u20841 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u20841_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u20842 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u20843_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u20843 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u20843 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u20843_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u20844_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u20844 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u20844 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u20844_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u20845 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u20846_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u20846 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u20846 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u20846_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u20847_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u20847 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u20847 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u20847_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u20848 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u20849_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u20849 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u20849 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u20849_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u20850_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u20850 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u20850 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u20850_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u20851 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u20852_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u20852 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u20852 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u20852_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u20853_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u20853 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u20853 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u20853_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u20854 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u20855_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u20855 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u20855 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u20855_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u20856_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u20856 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u20856 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u20856_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u20857 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u20858_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u20858 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u20858 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u20858_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u20859_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u20859 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u20859 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u20859_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u20860 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u20861_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u20861 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u20861 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u20861_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u20862_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u20862 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u20862 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u20862_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u20863 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u20864_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u20864 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:529px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u20864 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u20864_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u20865_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u20865 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u20865 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u20865_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u20866_input {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:214px;
  1014. height:27px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:'ArialMT', 'Arial', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. letter-spacing:normal;
  1021. color:#FFFFFF;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u20866_input.disabled {
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:214px;
  1033. height:27px;
  1034. padding:2px 2px 2px 2px;
  1035. font-family:'ArialMT', 'Arial', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. letter-spacing:normal;
  1040. color:#FFFFFF;
  1041. vertical-align:none;
  1042. text-align:left;
  1043. text-transform:none;
  1044. background-color:transparent;
  1045. border-color:transparent;
  1046. }
  1047. #u20866_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:214px;
  1053. height:27px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-size:14px;
  1062. color:#FFFFFF;
  1063. }
  1064. #u20866 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:1221px;
  1068. top:10px;
  1069. width:214px;
  1070. height:27px;
  1071. display:flex;
  1072. font-size:14px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u20866 .text {
  1076. position:absolute;
  1077. align-self:flex-start;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u20866_div.disabled {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:214px;
  1088. height:27px;
  1089. background:inherit;
  1090. background-color:rgba(240, 240, 240, 1);
  1091. border:none;
  1092. border-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-size:14px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u20866.disabled {
  1100. }
  1101. .u20866_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u20867_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u20867 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u20867 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u20867_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u20868_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:100px;
  1140. height:24px;
  1141. background:inherit;
  1142. background-color:rgba(242, 242, 242, 0.2);
  1143. border:none;
  1144. border-radius:25px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. color:#FFFFFF;
  1152. text-align:center;
  1153. }
  1154. #u20868 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1480px;
  1158. top:12px;
  1159. width:100px;
  1160. height:24px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. color:#FFFFFF;
  1166. text-align:center;
  1167. }
  1168. #u20868 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u20868_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u20869_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u20869 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u20869 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u20869_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u20870 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u20871_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:33px;
  1224. height:22px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 0);
  1227. border:none;
  1228. border-radius:0px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. font-size:16px;
  1236. color:#FFFFFF;
  1237. }
  1238. #u20871 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:39px;
  1242. top:319px;
  1243. width:33px;
  1244. height:22px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:16px;
  1250. color:#FFFFFF;
  1251. }
  1252. #u20871 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u20871_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u20872_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u20872 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u20872 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u20872_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u20873 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u20874_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u20874 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:361px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u20874 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u20874_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u20875_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u20875 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u20875 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u20875_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u20876 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u20877_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u20877 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:151px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u20877 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u20877_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u20878_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u20878 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u20878 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u20878_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u20879 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u20880_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u20880 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:487px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u20880 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u20880_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u20881_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u20881 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u20881 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u20881_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u20882 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u20883_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u20883 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:193px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u20883 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u20883_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u20884_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u20884 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u20884 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u20884_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u20885_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:1259px;
  1636. height:160px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 1);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1642. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1643. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1644. }
  1645. #u20885 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:330px;
  1649. top:50px;
  1650. width:1259px;
  1651. height:160px;
  1652. display:flex;
  1653. }
  1654. #u20885 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u20885_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u20886_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:91px;
  1673. height:50px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 0);
  1676. border:none;
  1677. border-left:0px;
  1678. border-top:0px;
  1679. border-right:0px;
  1680. border-radius:0px;
  1681. border-bottom-right-radius:0px;
  1682. border-bottom-left-radius:0px;
  1683. -moz-box-shadow:none;
  1684. -webkit-box-shadow:none;
  1685. box-shadow:none;
  1686. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1687. font-weight:500;
  1688. font-style:normal;
  1689. font-size:18px;
  1690. }
  1691. #u20886 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:350px;
  1695. top:50px;
  1696. width:91px;
  1697. height:50px;
  1698. display:flex;
  1699. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1700. font-weight:500;
  1701. font-style:normal;
  1702. font-size:18px;
  1703. }
  1704. #u20886 .text {
  1705. position:absolute;
  1706. align-self:center;
  1707. padding:0px 0px 0px 0px;
  1708. box-sizing:border-box;
  1709. width:100%;
  1710. }
  1711. #u20886_text {
  1712. border-width:0px;
  1713. white-space:nowrap;
  1714. text-transform:none;
  1715. }
  1716. #u20887_div {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:1259px;
  1722. height:1010px;
  1723. background:inherit;
  1724. background-color:rgba(255, 255, 255, 1);
  1725. border:none;
  1726. border-radius:0px;
  1727. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1728. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1729. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1730. }
  1731. #u20887 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:330px;
  1735. top:220px;
  1736. width:1259px;
  1737. height:1010px;
  1738. display:flex;
  1739. }
  1740. #u20887 .text {
  1741. position:absolute;
  1742. align-self:center;
  1743. padding:2px 2px 2px 2px;
  1744. box-sizing:border-box;
  1745. width:100%;
  1746. }
  1747. #u20887_text {
  1748. border-width:0px;
  1749. word-wrap:break-word;
  1750. text-transform:none;
  1751. visibility:hidden;
  1752. }
  1753. #u20888 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:0px;
  1759. height:0px;
  1760. }
  1761. #u20889_div {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:200px;
  1767. height:20px;
  1768. background:inherit;
  1769. background-color:rgba(255, 255, 255, 0);
  1770. border:none;
  1771. border-radius:0px;
  1772. -moz-box-shadow:none;
  1773. -webkit-box-shadow:none;
  1774. box-shadow:none;
  1775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1776. font-weight:400;
  1777. font-style:normal;
  1778. font-size:14px;
  1779. }
  1780. #u20889 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:387px;
  1784. top:163px;
  1785. width:200px;
  1786. height:20px;
  1787. display:flex;
  1788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1789. font-weight:400;
  1790. font-style:normal;
  1791. font-size:14px;
  1792. }
  1793. #u20889 .text {
  1794. position:absolute;
  1795. align-self:flex-start;
  1796. padding:0px 0px 0px 0px;
  1797. box-sizing:border-box;
  1798. width:100%;
  1799. }
  1800. #u20889_text {
  1801. border-width:0px;
  1802. word-wrap:break-word;
  1803. text-transform:none;
  1804. }
  1805. #u20890_div {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:200px;
  1811. height:40px;
  1812. background:inherit;
  1813. background-color:rgba(255, 255, 255, 0);
  1814. border:none;
  1815. border-radius:0px;
  1816. -moz-box-shadow:none;
  1817. -webkit-box-shadow:none;
  1818. box-shadow:none;
  1819. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1820. font-weight:650;
  1821. font-style:normal;
  1822. font-size:28px;
  1823. }
  1824. #u20890 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:387px;
  1828. top:123px;
  1829. width:200px;
  1830. height:40px;
  1831. display:flex;
  1832. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1833. font-weight:650;
  1834. font-style:normal;
  1835. font-size:28px;
  1836. }
  1837. #u20890 .text {
  1838. position:absolute;
  1839. align-self:flex-start;
  1840. padding:0px 0px 0px 0px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u20890_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. }
  1849. #u20891 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:0px;
  1855. height:0px;
  1856. }
  1857. #u20892_div {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:200px;
  1863. height:20px;
  1864. background:inherit;
  1865. background-color:rgba(255, 255, 255, 0);
  1866. border:none;
  1867. border-radius:0px;
  1868. -moz-box-shadow:none;
  1869. -webkit-box-shadow:none;
  1870. box-shadow:none;
  1871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. font-size:14px;
  1875. }
  1876. #u20892 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:625px;
  1880. top:163px;
  1881. width:200px;
  1882. height:20px;
  1883. display:flex;
  1884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. font-size:14px;
  1888. }
  1889. #u20892 .text {
  1890. position:absolute;
  1891. align-self:flex-start;
  1892. padding:0px 0px 0px 0px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u20892_text {
  1897. border-width:0px;
  1898. word-wrap:break-word;
  1899. text-transform:none;
  1900. }
  1901. #u20893_div {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:200px;
  1907. height:40px;
  1908. background:inherit;
  1909. background-color:rgba(255, 255, 255, 0);
  1910. border:none;
  1911. border-radius:0px;
  1912. -moz-box-shadow:none;
  1913. -webkit-box-shadow:none;
  1914. box-shadow:none;
  1915. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1916. font-weight:650;
  1917. font-style:normal;
  1918. font-size:28px;
  1919. }
  1920. #u20893 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:625px;
  1924. top:123px;
  1925. width:200px;
  1926. height:40px;
  1927. display:flex;
  1928. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1929. font-weight:650;
  1930. font-style:normal;
  1931. font-size:28px;
  1932. }
  1933. #u20893 .text {
  1934. position:absolute;
  1935. align-self:flex-start;
  1936. padding:0px 0px 0px 0px;
  1937. box-sizing:border-box;
  1938. width:100%;
  1939. }
  1940. #u20893_text {
  1941. border-width:0px;
  1942. word-wrap:break-word;
  1943. text-transform:none;
  1944. }
  1945. #u20894 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:0px;
  1951. height:0px;
  1952. }
  1953. #u20895_div {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:200px;
  1959. height:20px;
  1960. background:inherit;
  1961. background-color:rgba(255, 255, 255, 0);
  1962. border:none;
  1963. border-radius:0px;
  1964. -moz-box-shadow:none;
  1965. -webkit-box-shadow:none;
  1966. box-shadow:none;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. font-size:14px;
  1971. }
  1972. #u20895 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:863px;
  1976. top:163px;
  1977. width:200px;
  1978. height:20px;
  1979. display:flex;
  1980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1981. font-weight:400;
  1982. font-style:normal;
  1983. font-size:14px;
  1984. }
  1985. #u20895 .text {
  1986. position:absolute;
  1987. align-self:flex-start;
  1988. padding:0px 0px 0px 0px;
  1989. box-sizing:border-box;
  1990. width:100%;
  1991. }
  1992. #u20895_text {
  1993. border-width:0px;
  1994. word-wrap:break-word;
  1995. text-transform:none;
  1996. }
  1997. #u20896_div {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:200px;
  2003. height:40px;
  2004. background:inherit;
  2005. background-color:rgba(255, 255, 255, 0);
  2006. border:none;
  2007. border-radius:0px;
  2008. -moz-box-shadow:none;
  2009. -webkit-box-shadow:none;
  2010. box-shadow:none;
  2011. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2012. font-weight:650;
  2013. font-style:normal;
  2014. font-size:28px;
  2015. }
  2016. #u20896 {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:863px;
  2020. top:123px;
  2021. width:200px;
  2022. height:40px;
  2023. display:flex;
  2024. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2025. font-weight:650;
  2026. font-style:normal;
  2027. font-size:28px;
  2028. }
  2029. #u20896 .text {
  2030. position:absolute;
  2031. align-self:flex-start;
  2032. padding:0px 0px 0px 0px;
  2033. box-sizing:border-box;
  2034. width:100%;
  2035. }
  2036. #u20896_text {
  2037. border-width:0px;
  2038. word-wrap:break-word;
  2039. text-transform:none;
  2040. }
  2041. #u20897 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:0px;
  2047. height:0px;
  2048. }
  2049. #u20898_div {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:200px;
  2055. height:20px;
  2056. background:inherit;
  2057. background-color:rgba(255, 255, 255, 0);
  2058. border:none;
  2059. border-radius:0px;
  2060. -moz-box-shadow:none;
  2061. -webkit-box-shadow:none;
  2062. box-shadow:none;
  2063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2064. font-weight:400;
  2065. font-style:normal;
  2066. font-size:14px;
  2067. }
  2068. #u20898 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:1100px;
  2072. top:163px;
  2073. width:200px;
  2074. height:20px;
  2075. display:flex;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:14px;
  2080. }
  2081. #u20898 .text {
  2082. position:absolute;
  2083. align-self:flex-start;
  2084. padding:0px 0px 0px 0px;
  2085. box-sizing:border-box;
  2086. width:100%;
  2087. }
  2088. #u20898_text {
  2089. border-width:0px;
  2090. word-wrap:break-word;
  2091. text-transform:none;
  2092. }
  2093. #u20899_div {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:200px;
  2099. height:40px;
  2100. background:inherit;
  2101. background-color:rgba(255, 255, 255, 0);
  2102. border:none;
  2103. border-radius:0px;
  2104. -moz-box-shadow:none;
  2105. -webkit-box-shadow:none;
  2106. box-shadow:none;
  2107. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2108. font-weight:650;
  2109. font-style:normal;
  2110. font-size:28px;
  2111. }
  2112. #u20899 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:1100px;
  2116. top:123px;
  2117. width:200px;
  2118. height:40px;
  2119. display:flex;
  2120. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2121. font-weight:650;
  2122. font-style:normal;
  2123. font-size:28px;
  2124. }
  2125. #u20899 .text {
  2126. position:absolute;
  2127. align-self:flex-start;
  2128. padding:0px 0px 0px 0px;
  2129. box-sizing:border-box;
  2130. width:100%;
  2131. }
  2132. #u20899_text {
  2133. border-width:0px;
  2134. word-wrap:break-word;
  2135. text-transform:none;
  2136. }
  2137. #u20900 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:0px;
  2143. height:0px;
  2144. }
  2145. #u20901_div {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:200px;
  2151. height:20px;
  2152. background:inherit;
  2153. background-color:rgba(255, 255, 255, 0);
  2154. border:none;
  2155. border-radius:0px;
  2156. -moz-box-shadow:none;
  2157. -webkit-box-shadow:none;
  2158. box-shadow:none;
  2159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2160. font-weight:400;
  2161. font-style:normal;
  2162. font-size:14px;
  2163. }
  2164. #u20901 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:1338px;
  2168. top:163px;
  2169. width:200px;
  2170. height:20px;
  2171. display:flex;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:14px;
  2176. }
  2177. #u20901 .text {
  2178. position:absolute;
  2179. align-self:flex-start;
  2180. padding:0px 0px 0px 0px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u20901_text {
  2185. border-width:0px;
  2186. word-wrap:break-word;
  2187. text-transform:none;
  2188. }
  2189. #u20902_div {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:0px;
  2193. top:0px;
  2194. width:200px;
  2195. height:40px;
  2196. background:inherit;
  2197. background-color:rgba(255, 255, 255, 0);
  2198. border:none;
  2199. border-radius:0px;
  2200. -moz-box-shadow:none;
  2201. -webkit-box-shadow:none;
  2202. box-shadow:none;
  2203. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2204. font-weight:650;
  2205. font-style:normal;
  2206. font-size:28px;
  2207. }
  2208. #u20902 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:1338px;
  2212. top:123px;
  2213. width:200px;
  2214. height:40px;
  2215. display:flex;
  2216. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2217. font-weight:650;
  2218. font-style:normal;
  2219. font-size:28px;
  2220. }
  2221. #u20902 .text {
  2222. position:absolute;
  2223. align-self:flex-start;
  2224. padding:0px 0px 0px 0px;
  2225. box-sizing:border-box;
  2226. width:100%;
  2227. }
  2228. #u20902_text {
  2229. border-width:0px;
  2230. word-wrap:break-word;
  2231. text-transform:none;
  2232. }
  2233. #u20903 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:0px;
  2239. height:0px;
  2240. }
  2241. #u20904_div {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:60px;
  2247. height:30px;
  2248. background:inherit;
  2249. background-color:rgba(24, 144, 255, 1);
  2250. border:none;
  2251. border-radius:0px;
  2252. -moz-box-shadow:none;
  2253. -webkit-box-shadow:none;
  2254. box-shadow:none;
  2255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. color:#FFFFFF;
  2259. text-align:center;
  2260. }
  2261. #u20904 {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:1267px;
  2265. top:60px;
  2266. width:60px;
  2267. height:30px;
  2268. display:flex;
  2269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. color:#FFFFFF;
  2273. text-align:center;
  2274. }
  2275. #u20904 .text {
  2276. position:absolute;
  2277. align-self:center;
  2278. padding:2px 2px 2px 2px;
  2279. box-sizing:border-box;
  2280. width:100%;
  2281. }
  2282. #u20904_text {
  2283. border-width:0px;
  2284. word-wrap:break-word;
  2285. text-transform:none;
  2286. }
  2287. #u20905_div {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:0px;
  2291. top:0px;
  2292. width:60px;
  2293. height:30px;
  2294. background:inherit;
  2295. background-color:rgba(255, 255, 255, 1);
  2296. box-sizing:border-box;
  2297. border-width:1px;
  2298. border-style:solid;
  2299. border-color:rgba(215, 215, 215, 1);
  2300. border-radius:0px;
  2301. -moz-box-shadow:none;
  2302. -webkit-box-shadow:none;
  2303. box-shadow:none;
  2304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2305. font-weight:400;
  2306. font-style:normal;
  2307. text-align:center;
  2308. }
  2309. #u20905 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:1386px;
  2313. top:60px;
  2314. width:60px;
  2315. height:30px;
  2316. display:flex;
  2317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2318. font-weight:400;
  2319. font-style:normal;
  2320. text-align:center;
  2321. }
  2322. #u20905 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 2px 2px 2px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u20905_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. }
  2334. #u20906_div {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:60px;
  2340. height:30px;
  2341. background:inherit;
  2342. background-color:rgba(255, 255, 255, 1);
  2343. box-sizing:border-box;
  2344. border-width:1px;
  2345. border-style:solid;
  2346. border-color:rgba(215, 215, 215, 1);
  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. text-align:center;
  2355. }
  2356. #u20906 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:1445px;
  2360. top:60px;
  2361. width:60px;
  2362. height:30px;
  2363. display:flex;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. text-align:center;
  2368. }
  2369. #u20906 .text {
  2370. position:absolute;
  2371. align-self:center;
  2372. padding:2px 2px 2px 2px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u20906_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. }
  2381. #u20907_div {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:60px;
  2387. height:30px;
  2388. background:inherit;
  2389. background-color:rgba(255, 255, 255, 1);
  2390. box-sizing:border-box;
  2391. border-width:1px;
  2392. border-style:solid;
  2393. border-color:rgba(215, 215, 215, 1);
  2394. border-radius:0px;
  2395. -moz-box-shadow:none;
  2396. -webkit-box-shadow:none;
  2397. box-shadow:none;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. text-align:center;
  2402. }
  2403. #u20907 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:1327px;
  2407. top:60px;
  2408. width:60px;
  2409. height:30px;
  2410. display:flex;
  2411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2412. font-weight:400;
  2413. font-style:normal;
  2414. text-align:center;
  2415. }
  2416. #u20907 .text {
  2417. position:absolute;
  2418. align-self:center;
  2419. padding:2px 2px 2px 2px;
  2420. box-sizing:border-box;
  2421. width:100%;
  2422. }
  2423. #u20907_text {
  2424. border-width:0px;
  2425. word-wrap:break-word;
  2426. text-transform:none;
  2427. }
  2428. #u20908_div {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:60px;
  2434. height:30px;
  2435. background:inherit;
  2436. background-color:rgba(255, 255, 255, 1);
  2437. box-sizing:border-box;
  2438. border-width:1px;
  2439. border-style:solid;
  2440. border-color:rgba(215, 215, 215, 1);
  2441. border-radius:0px;
  2442. -moz-box-shadow:none;
  2443. -webkit-box-shadow:none;
  2444. box-shadow:none;
  2445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2446. font-weight:400;
  2447. font-style:normal;
  2448. text-align:center;
  2449. }
  2450. #u20908 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:1504px;
  2454. top:60px;
  2455. width:60px;
  2456. height:30px;
  2457. display:flex;
  2458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. text-align:center;
  2462. }
  2463. #u20908 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 2px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u20908_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. }
  2475. #u20909 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:350px;
  2479. top:370px;
  2480. width:1442px;
  2481. height:292px;
  2482. }
  2483. #u20910_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:30px;
  2489. height:38px;
  2490. }
  2491. #u20910 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:30px;
  2497. height:38px;
  2498. display:flex;
  2499. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:12px;
  2503. color:#FFFFFF;
  2504. }
  2505. #u20910 .text {
  2506. position:absolute;
  2507. align-self:center;
  2508. padding:2px 2px 2px 0px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u20910_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. }
  2517. #u20911_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:58px;
  2523. height:38px;
  2524. }
  2525. #u20911 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:30px;
  2529. top:0px;
  2530. width:58px;
  2531. height:38px;
  2532. display:flex;
  2533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2534. font-weight:400;
  2535. font-style:normal;
  2536. font-size:12px;
  2537. color:#FFFFFF;
  2538. }
  2539. #u20911 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 0px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u20911_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. }
  2551. #u20912_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:60px;
  2557. height:38px;
  2558. }
  2559. #u20912 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:88px;
  2563. top:0px;
  2564. width:60px;
  2565. height:38px;
  2566. display:flex;
  2567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2568. font-weight:400;
  2569. font-style:normal;
  2570. font-size:12px;
  2571. color:#FFFFFF;
  2572. }
  2573. #u20912 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:2px 2px 2px 0px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u20912_text {
  2581. border-width:0px;
  2582. word-wrap:break-word;
  2583. text-transform:none;
  2584. }
  2585. #u20913_img {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:60px;
  2591. height:38px;
  2592. }
  2593. #u20913 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:148px;
  2597. top:0px;
  2598. width:60px;
  2599. height:38px;
  2600. display:flex;
  2601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:12px;
  2605. color:#FFFFFF;
  2606. }
  2607. #u20913 .text {
  2608. position:absolute;
  2609. align-self:center;
  2610. padding:2px 2px 2px 0px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u20913_text {
  2615. border-width:0px;
  2616. word-wrap:break-word;
  2617. text-transform:none;
  2618. }
  2619. #u20914_img {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:60px;
  2625. height:38px;
  2626. }
  2627. #u20914 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:208px;
  2631. top:0px;
  2632. width:60px;
  2633. height:38px;
  2634. display:flex;
  2635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:12px;
  2639. color:#FFFFFF;
  2640. }
  2641. #u20914 .text {
  2642. position:absolute;
  2643. align-self:center;
  2644. padding:2px 2px 2px 0px;
  2645. box-sizing:border-box;
  2646. width:100%;
  2647. }
  2648. #u20914_text {
  2649. border-width:0px;
  2650. word-wrap:break-word;
  2651. text-transform:none;
  2652. }
  2653. #u20915_img {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:60px;
  2659. height:38px;
  2660. }
  2661. #u20915 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:268px;
  2665. top:0px;
  2666. width:60px;
  2667. height:38px;
  2668. display:flex;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:12px;
  2673. color:#FFFFFF;
  2674. }
  2675. #u20915 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 0px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u20915_text {
  2683. border-width:0px;
  2684. word-wrap:break-word;
  2685. text-transform:none;
  2686. }
  2687. #u20916_img {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:58px;
  2693. height:38px;
  2694. }
  2695. #u20916 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:328px;
  2699. top:0px;
  2700. width:58px;
  2701. height:38px;
  2702. display:flex;
  2703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2704. font-weight:400;
  2705. font-style:normal;
  2706. font-size:12px;
  2707. color:#FFFFFF;
  2708. }
  2709. #u20916 .text {
  2710. position:absolute;
  2711. align-self:center;
  2712. padding:2px 2px 2px 0px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u20916_text {
  2717. border-width:0px;
  2718. word-wrap:break-word;
  2719. text-transform:none;
  2720. }
  2721. #u20917_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:58px;
  2727. height:38px;
  2728. }
  2729. #u20917 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:386px;
  2733. top:0px;
  2734. width:58px;
  2735. height:38px;
  2736. display:flex;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:12px;
  2741. color:#FFFFFF;
  2742. }
  2743. #u20917 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u20917_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. }
  2755. #u20918_img {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:58px;
  2761. height:38px;
  2762. }
  2763. #u20918 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:444px;
  2767. top:0px;
  2768. width:58px;
  2769. height:38px;
  2770. display:flex;
  2771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2772. font-weight:400;
  2773. font-style:normal;
  2774. font-size:12px;
  2775. color:#FFFFFF;
  2776. }
  2777. #u20918 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u20918_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. }
  2789. #u20919_img {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:58px;
  2795. height:38px;
  2796. }
  2797. #u20919 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:502px;
  2801. top:0px;
  2802. width:58px;
  2803. height:38px;
  2804. display:flex;
  2805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2806. font-weight:400;
  2807. font-style:normal;
  2808. font-size:12px;
  2809. color:#FFFFFF;
  2810. }
  2811. #u20919 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 0px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u20919_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. }
  2823. #u20920_img {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:0px;
  2828. width:58px;
  2829. height:38px;
  2830. }
  2831. #u20920 {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:560px;
  2835. top:0px;
  2836. width:58px;
  2837. height:38px;
  2838. display:flex;
  2839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2840. font-weight:400;
  2841. font-style:normal;
  2842. font-size:12px;
  2843. color:#FFFFFF;
  2844. }
  2845. #u20920 .text {
  2846. position:absolute;
  2847. align-self:center;
  2848. padding:2px 2px 2px 0px;
  2849. box-sizing:border-box;
  2850. width:100%;
  2851. }
  2852. #u20920_text {
  2853. border-width:0px;
  2854. word-wrap:break-word;
  2855. text-transform:none;
  2856. }
  2857. #u20921_img {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:58px;
  2863. height:38px;
  2864. }
  2865. #u20921 {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:618px;
  2869. top:0px;
  2870. width:58px;
  2871. height:38px;
  2872. display:flex;
  2873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2874. font-weight:400;
  2875. font-style:normal;
  2876. font-size:12px;
  2877. color:#FFFFFF;
  2878. }
  2879. #u20921 .text {
  2880. position:absolute;
  2881. align-self:center;
  2882. padding:2px 2px 2px 0px;
  2883. box-sizing:border-box;
  2884. width:100%;
  2885. }
  2886. #u20921_text {
  2887. border-width:0px;
  2888. word-wrap:break-word;
  2889. text-transform:none;
  2890. }
  2891. #u20922_img {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:58px;
  2897. height:38px;
  2898. }
  2899. #u20922 {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:676px;
  2903. top:0px;
  2904. width:58px;
  2905. height:38px;
  2906. display:flex;
  2907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2908. font-weight:400;
  2909. font-style:normal;
  2910. font-size:12px;
  2911. color:#FFFFFF;
  2912. }
  2913. #u20922 .text {
  2914. position:absolute;
  2915. align-self:center;
  2916. padding:2px 2px 2px 0px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u20922_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. }
  2925. #u20923_img {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:58px;
  2931. height:38px;
  2932. }
  2933. #u20923 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:734px;
  2937. top:0px;
  2938. width:58px;
  2939. height:38px;
  2940. display:flex;
  2941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. font-size:12px;
  2945. color:#FFFFFF;
  2946. }
  2947. #u20923 .text {
  2948. position:absolute;
  2949. align-self:center;
  2950. padding:2px 2px 2px 0px;
  2951. box-sizing:border-box;
  2952. width:100%;
  2953. }
  2954. #u20923_text {
  2955. border-width:0px;
  2956. word-wrap:break-word;
  2957. text-transform:none;
  2958. }
  2959. #u20924_img {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:58px;
  2965. height:38px;
  2966. }
  2967. #u20924 {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:792px;
  2971. top:0px;
  2972. width:58px;
  2973. height:38px;
  2974. display:flex;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:12px;
  2979. color:#FFFFFF;
  2980. }
  2981. #u20924 .text {
  2982. position:absolute;
  2983. align-self:center;
  2984. padding:2px 2px 2px 0px;
  2985. box-sizing:border-box;
  2986. width:100%;
  2987. }
  2988. #u20924_text {
  2989. border-width:0px;
  2990. word-wrap:break-word;
  2991. text-transform:none;
  2992. }
  2993. #u20925_img {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:58px;
  2999. height:38px;
  3000. }
  3001. #u20925 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:850px;
  3005. top:0px;
  3006. width:58px;
  3007. height:38px;
  3008. display:flex;
  3009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3010. font-weight:400;
  3011. font-style:normal;
  3012. font-size:12px;
  3013. color:#FFFFFF;
  3014. }
  3015. #u20925 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 0px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u20925_text {
  3023. border-width:0px;
  3024. word-wrap:break-word;
  3025. text-transform:none;
  3026. }
  3027. #u20926_img {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:60px;
  3033. height:38px;
  3034. }
  3035. #u20926 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:908px;
  3039. top:0px;
  3040. width:60px;
  3041. height:38px;
  3042. display:flex;
  3043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3044. font-weight:400;
  3045. font-style:normal;
  3046. font-size:12px;
  3047. color:#FFFFFF;
  3048. }
  3049. #u20926 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 0px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u20926_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. }
  3061. #u20927_img {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:60px;
  3067. height:38px;
  3068. }
  3069. #u20927 {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:968px;
  3073. top:0px;
  3074. width:60px;
  3075. height:38px;
  3076. display:flex;
  3077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3078. font-weight:400;
  3079. font-style:normal;
  3080. font-size:12px;
  3081. color:#FFFFFF;
  3082. }
  3083. #u20927 .text {
  3084. position:absolute;
  3085. align-self:center;
  3086. padding:2px 2px 2px 0px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u20927_text {
  3091. border-width:0px;
  3092. word-wrap:break-word;
  3093. text-transform:none;
  3094. }
  3095. #u20928_img {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:60px;
  3101. height:38px;
  3102. }
  3103. #u20928 {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:1028px;
  3107. top:0px;
  3108. width:60px;
  3109. height:38px;
  3110. display:flex;
  3111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3112. font-weight:400;
  3113. font-style:normal;
  3114. font-size:12px;
  3115. color:#FFFFFF;
  3116. }
  3117. #u20928 .text {
  3118. position:absolute;
  3119. align-self:center;
  3120. padding:2px 2px 2px 0px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u20928_text {
  3125. border-width:0px;
  3126. word-wrap:break-word;
  3127. text-transform:none;
  3128. }
  3129. #u20929_img {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:60px;
  3135. height:38px;
  3136. }
  3137. #u20929 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:1088px;
  3141. top:0px;
  3142. width:60px;
  3143. height:38px;
  3144. display:flex;
  3145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. font-size:12px;
  3149. color:#FFFFFF;
  3150. }
  3151. #u20929 .text {
  3152. position:absolute;
  3153. align-self:center;
  3154. padding:2px 2px 2px 0px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u20929_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. }
  3163. #u20930_img {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:60px;
  3169. height:38px;
  3170. }
  3171. #u20930 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:1148px;
  3175. top:0px;
  3176. width:60px;
  3177. height:38px;
  3178. display:flex;
  3179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3180. font-weight:400;
  3181. font-style:normal;
  3182. font-size:12px;
  3183. color:#FFFFFF;
  3184. }
  3185. #u20930 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 2px 2px 0px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u20930_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. }
  3197. #u20931_img {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:60px;
  3203. height:38px;
  3204. }
  3205. #u20931 {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:1208px;
  3209. top:0px;
  3210. width:60px;
  3211. height:38px;
  3212. display:flex;
  3213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3214. font-weight:400;
  3215. font-style:normal;
  3216. font-size:12px;
  3217. color:#FFFFFF;
  3218. }
  3219. #u20931 .text {
  3220. position:absolute;
  3221. align-self:center;
  3222. padding:2px 2px 2px 0px;
  3223. box-sizing:border-box;
  3224. width:100%;
  3225. }
  3226. #u20931_text {
  3227. border-width:0px;
  3228. word-wrap:break-word;
  3229. text-transform:none;
  3230. }
  3231. #u20932_img {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:60px;
  3237. height:38px;
  3238. }
  3239. #u20932 {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:1268px;
  3243. top:0px;
  3244. width:60px;
  3245. height:38px;
  3246. display:flex;
  3247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3248. font-weight:400;
  3249. font-style:normal;
  3250. font-size:12px;
  3251. color:#FFFFFF;
  3252. }
  3253. #u20932 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 0px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u20932_text {
  3261. border-width:0px;
  3262. word-wrap:break-word;
  3263. text-transform:none;
  3264. }
  3265. #u20933_img {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:60px;
  3271. height:38px;
  3272. }
  3273. #u20933 {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:1328px;
  3277. top:0px;
  3278. width:60px;
  3279. height:38px;
  3280. display:flex;
  3281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3282. font-weight:400;
  3283. font-style:normal;
  3284. font-size:12px;
  3285. color:#FFFFFF;
  3286. }
  3287. #u20933 .text {
  3288. position:absolute;
  3289. align-self:center;
  3290. padding:2px 2px 2px 0px;
  3291. box-sizing:border-box;
  3292. width:100%;
  3293. }
  3294. #u20933_text {
  3295. border-width:0px;
  3296. word-wrap:break-word;
  3297. text-transform:none;
  3298. }
  3299. #u20934_img {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:54px;
  3305. height:38px;
  3306. }
  3307. #u20934 {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:1388px;
  3311. top:0px;
  3312. width:54px;
  3313. height:38px;
  3314. display:flex;
  3315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3316. font-weight:400;
  3317. font-style:normal;
  3318. font-size:12px;
  3319. color:#FFFFFF;
  3320. }
  3321. #u20934 .text {
  3322. position:absolute;
  3323. align-self:center;
  3324. padding:2px 2px 2px 0px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u20934_text {
  3329. border-width:0px;
  3330. word-wrap:break-word;
  3331. text-transform:none;
  3332. }
  3333. #u20935_img {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:30px;
  3339. height:38px;
  3340. }
  3341. #u20935 {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:38px;
  3346. width:30px;
  3347. height:38px;
  3348. display:flex;
  3349. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:12px;
  3353. }
  3354. #u20935 .text {
  3355. position:absolute;
  3356. align-self:center;
  3357. padding:2px 2px 2px 0px;
  3358. box-sizing:border-box;
  3359. width:100%;
  3360. }
  3361. #u20935_text {
  3362. border-width:0px;
  3363. word-wrap:break-word;
  3364. text-transform:none;
  3365. }
  3366. #u20936_img {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:0px;
  3370. top:0px;
  3371. width:58px;
  3372. height:38px;
  3373. }
  3374. #u20936 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:30px;
  3378. top:38px;
  3379. width:58px;
  3380. height:38px;
  3381. display:flex;
  3382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3383. font-weight:400;
  3384. font-style:normal;
  3385. font-size:12px;
  3386. }
  3387. #u20936 .text {
  3388. position:absolute;
  3389. align-self:center;
  3390. padding:2px 2px 2px 0px;
  3391. box-sizing:border-box;
  3392. width:100%;
  3393. }
  3394. #u20936_text {
  3395. border-width:0px;
  3396. word-wrap:break-word;
  3397. text-transform:none;
  3398. visibility:hidden;
  3399. }
  3400. #u20937_img {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:0px;
  3404. top:0px;
  3405. width:60px;
  3406. height:38px;
  3407. }
  3408. #u20937 {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:88px;
  3412. top:38px;
  3413. width:60px;
  3414. height:38px;
  3415. display:flex;
  3416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. font-size:12px;
  3420. }
  3421. #u20937 .text {
  3422. position:absolute;
  3423. align-self:center;
  3424. padding:2px 2px 2px 0px;
  3425. box-sizing:border-box;
  3426. width:100%;
  3427. }
  3428. #u20937_text {
  3429. border-width:0px;
  3430. word-wrap:break-word;
  3431. text-transform:none;
  3432. visibility:hidden;
  3433. }
  3434. #u20938_img {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:60px;
  3440. height:38px;
  3441. }
  3442. #u20938 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:148px;
  3446. top:38px;
  3447. width:60px;
  3448. height:38px;
  3449. display:flex;
  3450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3451. font-weight:400;
  3452. font-style:normal;
  3453. font-size:12px;
  3454. }
  3455. #u20938 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 2px 2px 0px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u20938_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. visibility:hidden;
  3467. }
  3468. #u20939_img {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:60px;
  3474. height:38px;
  3475. }
  3476. #u20939 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:208px;
  3480. top:38px;
  3481. width:60px;
  3482. height:38px;
  3483. display:flex;
  3484. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3485. font-weight:400;
  3486. font-style:normal;
  3487. font-size:12px;
  3488. }
  3489. #u20939 .text {
  3490. position:absolute;
  3491. align-self:center;
  3492. padding:2px 2px 2px 0px;
  3493. box-sizing:border-box;
  3494. width:100%;
  3495. }
  3496. #u20939_text {
  3497. border-width:0px;
  3498. word-wrap:break-word;
  3499. text-transform:none;
  3500. visibility:hidden;
  3501. }
  3502. #u20940_img {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:60px;
  3508. height:38px;
  3509. }
  3510. #u20940 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:268px;
  3514. top:38px;
  3515. width:60px;
  3516. height:38px;
  3517. display:flex;
  3518. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. font-size:12px;
  3522. }
  3523. #u20940 .text {
  3524. position:absolute;
  3525. align-self:center;
  3526. padding:2px 2px 2px 0px;
  3527. box-sizing:border-box;
  3528. width:100%;
  3529. }
  3530. #u20940_text {
  3531. border-width:0px;
  3532. word-wrap:break-word;
  3533. text-transform:none;
  3534. visibility:hidden;
  3535. }
  3536. #u20941_img {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:58px;
  3542. height:38px;
  3543. }
  3544. #u20941 {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:328px;
  3548. top:38px;
  3549. width:58px;
  3550. height:38px;
  3551. display:flex;
  3552. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3553. font-weight:400;
  3554. font-style:normal;
  3555. font-size:12px;
  3556. }
  3557. #u20941 .text {
  3558. position:absolute;
  3559. align-self:center;
  3560. padding:2px 2px 2px 0px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u20941_text {
  3565. border-width:0px;
  3566. word-wrap:break-word;
  3567. text-transform:none;
  3568. }
  3569. #u20942_img {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:58px;
  3575. height:38px;
  3576. }
  3577. #u20942 {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:386px;
  3581. top:38px;
  3582. width:58px;
  3583. height:38px;
  3584. display:flex;
  3585. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3586. font-weight:400;
  3587. font-style:normal;
  3588. font-size:12px;
  3589. }
  3590. #u20942 .text {
  3591. position:absolute;
  3592. align-self:center;
  3593. padding:2px 2px 2px 0px;
  3594. box-sizing:border-box;
  3595. width:100%;
  3596. }
  3597. #u20942_text {
  3598. border-width:0px;
  3599. word-wrap:break-word;
  3600. text-transform:none;
  3601. }
  3602. #u20943_img {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:58px;
  3608. height:38px;
  3609. }
  3610. #u20943 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:444px;
  3614. top:38px;
  3615. width:58px;
  3616. height:38px;
  3617. display:flex;
  3618. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3619. font-weight:400;
  3620. font-style:normal;
  3621. font-size:12px;
  3622. }
  3623. #u20943 .text {
  3624. position:absolute;
  3625. align-self:center;
  3626. padding:2px 2px 2px 0px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u20943_text {
  3631. border-width:0px;
  3632. word-wrap:break-word;
  3633. text-transform:none;
  3634. }
  3635. #u20944_img {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:0px;
  3639. top:0px;
  3640. width:58px;
  3641. height:38px;
  3642. }
  3643. #u20944 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:502px;
  3647. top:38px;
  3648. width:58px;
  3649. height:38px;
  3650. display:flex;
  3651. font-family:'ArialMT', 'Arial', sans-serif;
  3652. font-weight:400;
  3653. font-style:normal;
  3654. font-size:12px;
  3655. }
  3656. #u20944 .text {
  3657. position:absolute;
  3658. align-self:center;
  3659. padding:2px 2px 2px 0px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u20944_text {
  3664. border-width:0px;
  3665. word-wrap:break-word;
  3666. text-transform:none;
  3667. visibility:hidden;
  3668. }
  3669. #u20945_img {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:58px;
  3675. height:38px;
  3676. }
  3677. #u20945 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:560px;
  3681. top:38px;
  3682. width:58px;
  3683. height:38px;
  3684. display:flex;
  3685. font-family:'ArialMT', 'Arial', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. font-size:12px;
  3689. }
  3690. #u20945 .text {
  3691. position:absolute;
  3692. align-self:center;
  3693. padding:2px 2px 2px 0px;
  3694. box-sizing:border-box;
  3695. width:100%;
  3696. }
  3697. #u20945_text {
  3698. border-width:0px;
  3699. word-wrap:break-word;
  3700. text-transform:none;
  3701. visibility:hidden;
  3702. }
  3703. #u20946_img {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:58px;
  3709. height:38px;
  3710. }
  3711. #u20946 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:618px;
  3715. top:38px;
  3716. width:58px;
  3717. height:38px;
  3718. display:flex;
  3719. font-family:'ArialMT', 'Arial', sans-serif;
  3720. font-weight:400;
  3721. font-style:normal;
  3722. font-size:12px;
  3723. }
  3724. #u20946 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 2px 2px 0px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u20946_text {
  3732. border-width:0px;
  3733. word-wrap:break-word;
  3734. text-transform:none;
  3735. visibility:hidden;
  3736. }
  3737. #u20947_img {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:58px;
  3743. height:38px;
  3744. }
  3745. #u20947 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:676px;
  3749. top:38px;
  3750. width:58px;
  3751. height:38px;
  3752. display:flex;
  3753. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3754. font-weight:400;
  3755. font-style:normal;
  3756. font-size:12px;
  3757. }
  3758. #u20947 .text {
  3759. position:absolute;
  3760. align-self:center;
  3761. padding:2px 2px 2px 0px;
  3762. box-sizing:border-box;
  3763. width:100%;
  3764. }
  3765. #u20947_text {
  3766. border-width:0px;
  3767. word-wrap:break-word;
  3768. text-transform:none;
  3769. visibility:hidden;
  3770. }
  3771. #u20948_img {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:58px;
  3777. height:38px;
  3778. }
  3779. #u20948 {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:734px;
  3783. top:38px;
  3784. width:58px;
  3785. height:38px;
  3786. display:flex;
  3787. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3788. font-weight:400;
  3789. font-style:normal;
  3790. font-size:12px;
  3791. }
  3792. #u20948 .text {
  3793. position:absolute;
  3794. align-self:center;
  3795. padding:2px 2px 2px 0px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u20948_text {
  3800. border-width:0px;
  3801. word-wrap:break-word;
  3802. text-transform:none;
  3803. visibility:hidden;
  3804. }
  3805. #u20949_img {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:58px;
  3811. height:38px;
  3812. }
  3813. #u20949 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:792px;
  3817. top:38px;
  3818. width:58px;
  3819. height:38px;
  3820. display:flex;
  3821. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:12px;
  3825. }
  3826. #u20949 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:2px 2px 2px 0px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u20949_text {
  3834. border-width:0px;
  3835. word-wrap:break-word;
  3836. text-transform:none;
  3837. }
  3838. #u20950_img {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:0px;
  3842. top:0px;
  3843. width:58px;
  3844. height:38px;
  3845. }
  3846. #u20950 {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:850px;
  3850. top:38px;
  3851. width:58px;
  3852. height:38px;
  3853. display:flex;
  3854. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3855. font-weight:400;
  3856. font-style:normal;
  3857. font-size:12px;
  3858. }
  3859. #u20950 .text {
  3860. position:absolute;
  3861. align-self:center;
  3862. padding:2px 2px 2px 0px;
  3863. box-sizing:border-box;
  3864. width:100%;
  3865. }
  3866. #u20950_text {
  3867. border-width:0px;
  3868. word-wrap:break-word;
  3869. text-transform:none;
  3870. }
  3871. #u20951_img {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:60px;
  3877. height:38px;
  3878. }
  3879. #u20951 {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:908px;
  3883. top:38px;
  3884. width:60px;
  3885. height:38px;
  3886. display:flex;
  3887. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3888. font-weight:400;
  3889. font-style:normal;
  3890. font-size:12px;
  3891. }
  3892. #u20951 .text {
  3893. position:absolute;
  3894. align-self:center;
  3895. padding:2px 2px 2px 0px;
  3896. box-sizing:border-box;
  3897. width:100%;
  3898. }
  3899. #u20951_text {
  3900. border-width:0px;
  3901. word-wrap:break-word;
  3902. text-transform:none;
  3903. visibility:hidden;
  3904. }
  3905. #u20952_img {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:60px;
  3911. height:38px;
  3912. }
  3913. #u20952 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:968px;
  3917. top:38px;
  3918. width:60px;
  3919. height:38px;
  3920. display:flex;
  3921. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3922. font-weight:400;
  3923. font-style:normal;
  3924. font-size:12px;
  3925. }
  3926. #u20952 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 2px 2px 0px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u20952_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. visibility:hidden;
  3938. }
  3939. #u20953_img {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:60px;
  3945. height:38px;
  3946. }
  3947. #u20953 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:1028px;
  3951. top:38px;
  3952. width:60px;
  3953. height:38px;
  3954. display:flex;
  3955. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3956. font-weight:400;
  3957. font-style:normal;
  3958. font-size:12px;
  3959. }
  3960. #u20953 .text {
  3961. position:absolute;
  3962. align-self:center;
  3963. padding:2px 2px 2px 0px;
  3964. box-sizing:border-box;
  3965. width:100%;
  3966. }
  3967. #u20953_text {
  3968. border-width:0px;
  3969. word-wrap:break-word;
  3970. text-transform:none;
  3971. visibility:hidden;
  3972. }
  3973. #u20954_img {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:60px;
  3979. height:38px;
  3980. }
  3981. #u20954 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:1088px;
  3985. top:38px;
  3986. width:60px;
  3987. height:38px;
  3988. display:flex;
  3989. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3990. font-weight:400;
  3991. font-style:normal;
  3992. font-size:12px;
  3993. }
  3994. #u20954 .text {
  3995. position:absolute;
  3996. align-self:center;
  3997. padding:2px 2px 2px 0px;
  3998. box-sizing:border-box;
  3999. width:100%;
  4000. }
  4001. #u20954_text {
  4002. border-width:0px;
  4003. word-wrap:break-word;
  4004. text-transform:none;
  4005. visibility:hidden;
  4006. }
  4007. #u20955_img {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:60px;
  4013. height:38px;
  4014. }
  4015. #u20955 {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:1148px;
  4019. top:38px;
  4020. width:60px;
  4021. height:38px;
  4022. display:flex;
  4023. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4024. font-weight:400;
  4025. font-style:normal;
  4026. font-size:12px;
  4027. }
  4028. #u20955 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 0px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u20955_text {
  4036. border-width:0px;
  4037. word-wrap:break-word;
  4038. text-transform:none;
  4039. visibility:hidden;
  4040. }
  4041. #u20956_img {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:60px;
  4047. height:38px;
  4048. }
  4049. #u20956 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:1208px;
  4053. top:38px;
  4054. width:60px;
  4055. height:38px;
  4056. display:flex;
  4057. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:12px;
  4061. }
  4062. #u20956 .text {
  4063. position:absolute;
  4064. align-self:center;
  4065. padding:2px 2px 2px 0px;
  4066. box-sizing:border-box;
  4067. width:100%;
  4068. }
  4069. #u20956_text {
  4070. border-width:0px;
  4071. word-wrap:break-word;
  4072. text-transform:none;
  4073. visibility:hidden;
  4074. }
  4075. #u20957_img {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:60px;
  4081. height:38px;
  4082. }
  4083. #u20957 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:1268px;
  4087. top:38px;
  4088. width:60px;
  4089. height:38px;
  4090. display:flex;
  4091. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4092. font-weight:400;
  4093. font-style:normal;
  4094. font-size:12px;
  4095. }
  4096. #u20957 .text {
  4097. position:absolute;
  4098. align-self:center;
  4099. padding:2px 2px 2px 0px;
  4100. box-sizing:border-box;
  4101. width:100%;
  4102. }
  4103. #u20957_text {
  4104. border-width:0px;
  4105. word-wrap:break-word;
  4106. text-transform:none;
  4107. visibility:hidden;
  4108. }
  4109. #u20958_img {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:60px;
  4115. height:38px;
  4116. }
  4117. #u20958 {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:1328px;
  4121. top:38px;
  4122. width:60px;
  4123. height:38px;
  4124. display:flex;
  4125. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4126. font-weight:400;
  4127. font-style:normal;
  4128. font-size:12px;
  4129. }
  4130. #u20958 .text {
  4131. position:absolute;
  4132. align-self:center;
  4133. padding:2px 2px 2px 0px;
  4134. box-sizing:border-box;
  4135. width:100%;
  4136. }
  4137. #u20958_text {
  4138. border-width:0px;
  4139. word-wrap:break-word;
  4140. text-transform:none;
  4141. visibility:hidden;
  4142. }
  4143. #u20959_img {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:54px;
  4149. height:38px;
  4150. }
  4151. #u20959 {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:1388px;
  4155. top:38px;
  4156. width:54px;
  4157. height:38px;
  4158. display:flex;
  4159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4160. font-weight:400;
  4161. font-style:normal;
  4162. font-size:12px;
  4163. color:#1890FF;
  4164. }
  4165. #u20959 .text {
  4166. position:absolute;
  4167. align-self:center;
  4168. padding:2px 2px 2px 0px;
  4169. box-sizing:border-box;
  4170. width:100%;
  4171. }
  4172. #u20959_text {
  4173. border-width:0px;
  4174. word-wrap:break-word;
  4175. text-transform:none;
  4176. }
  4177. #u20960_img {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:0px;
  4181. top:0px;
  4182. width:30px;
  4183. height:38px;
  4184. }
  4185. #u20960 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:76px;
  4190. width:30px;
  4191. height:38px;
  4192. display:flex;
  4193. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:12px;
  4197. color:#606266;
  4198. }
  4199. #u20960 .text {
  4200. position:absolute;
  4201. align-self:center;
  4202. padding:2px 2px 2px 0px;
  4203. box-sizing:border-box;
  4204. width:100%;
  4205. }
  4206. #u20960_text {
  4207. border-width:0px;
  4208. word-wrap:break-word;
  4209. text-transform:none;
  4210. }
  4211. #u20961_img {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:0px;
  4216. width:58px;
  4217. height:38px;
  4218. }
  4219. #u20961 {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:30px;
  4223. top:76px;
  4224. width:58px;
  4225. height:38px;
  4226. display:flex;
  4227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4228. font-weight:400;
  4229. font-style:normal;
  4230. font-size:12px;
  4231. color:#606266;
  4232. }
  4233. #u20961 .text {
  4234. position:absolute;
  4235. align-self:center;
  4236. padding:2px 2px 2px 0px;
  4237. box-sizing:border-box;
  4238. width:100%;
  4239. }
  4240. #u20961_text {
  4241. border-width:0px;
  4242. word-wrap:break-word;
  4243. text-transform:none;
  4244. visibility:hidden;
  4245. }
  4246. #u20962_img {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:60px;
  4252. height:38px;
  4253. }
  4254. #u20962 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:88px;
  4258. top:76px;
  4259. width:60px;
  4260. height:38px;
  4261. display:flex;
  4262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4263. font-weight:400;
  4264. font-style:normal;
  4265. font-size:12px;
  4266. color:#606266;
  4267. }
  4268. #u20962 .text {
  4269. position:absolute;
  4270. align-self:center;
  4271. padding:2px 2px 2px 0px;
  4272. box-sizing:border-box;
  4273. width:100%;
  4274. }
  4275. #u20962_text {
  4276. border-width:0px;
  4277. word-wrap:break-word;
  4278. text-transform:none;
  4279. visibility:hidden;
  4280. }
  4281. #u20963_img {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:60px;
  4287. height:38px;
  4288. }
  4289. #u20963 {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:148px;
  4293. top:76px;
  4294. width:60px;
  4295. height:38px;
  4296. display:flex;
  4297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4298. font-weight:400;
  4299. font-style:normal;
  4300. font-size:12px;
  4301. color:#606266;
  4302. }
  4303. #u20963 .text {
  4304. position:absolute;
  4305. align-self:center;
  4306. padding:2px 2px 2px 0px;
  4307. box-sizing:border-box;
  4308. width:100%;
  4309. }
  4310. #u20963_text {
  4311. border-width:0px;
  4312. word-wrap:break-word;
  4313. text-transform:none;
  4314. visibility:hidden;
  4315. }
  4316. #u20964_img {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:60px;
  4322. height:38px;
  4323. }
  4324. #u20964 {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:208px;
  4328. top:76px;
  4329. width:60px;
  4330. height:38px;
  4331. display:flex;
  4332. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4333. font-weight:400;
  4334. font-style:normal;
  4335. font-size:12px;
  4336. color:#606266;
  4337. }
  4338. #u20964 .text {
  4339. position:absolute;
  4340. align-self:center;
  4341. padding:2px 2px 2px 0px;
  4342. box-sizing:border-box;
  4343. width:100%;
  4344. }
  4345. #u20964_text {
  4346. border-width:0px;
  4347. word-wrap:break-word;
  4348. text-transform:none;
  4349. visibility:hidden;
  4350. }
  4351. #u20965_img {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:0px;
  4355. top:0px;
  4356. width:60px;
  4357. height:38px;
  4358. }
  4359. #u20965 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:268px;
  4363. top:76px;
  4364. width:60px;
  4365. height:38px;
  4366. display:flex;
  4367. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4368. font-weight:400;
  4369. font-style:normal;
  4370. font-size:12px;
  4371. color:#606266;
  4372. }
  4373. #u20965 .text {
  4374. position:absolute;
  4375. align-self:center;
  4376. padding:2px 2px 2px 0px;
  4377. box-sizing:border-box;
  4378. width:100%;
  4379. }
  4380. #u20965_text {
  4381. border-width:0px;
  4382. word-wrap:break-word;
  4383. text-transform:none;
  4384. visibility:hidden;
  4385. }
  4386. #u20966_img {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:0px;
  4390. top:0px;
  4391. width:58px;
  4392. height:38px;
  4393. }
  4394. #u20966 {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:328px;
  4398. top:76px;
  4399. width:58px;
  4400. height:38px;
  4401. display:flex;
  4402. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4403. font-weight:400;
  4404. font-style:normal;
  4405. font-size:12px;
  4406. color:#606266;
  4407. }
  4408. #u20966 .text {
  4409. position:absolute;
  4410. align-self:center;
  4411. padding:2px 2px 2px 0px;
  4412. box-sizing:border-box;
  4413. width:100%;
  4414. }
  4415. #u20966_text {
  4416. border-width:0px;
  4417. word-wrap:break-word;
  4418. text-transform:none;
  4419. visibility:hidden;
  4420. }
  4421. #u20967_img {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:58px;
  4427. height:38px;
  4428. }
  4429. #u20967 {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:386px;
  4433. top:76px;
  4434. width:58px;
  4435. height:38px;
  4436. display:flex;
  4437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4438. font-weight:400;
  4439. font-style:normal;
  4440. font-size:12px;
  4441. color:#606266;
  4442. }
  4443. #u20967 .text {
  4444. position:absolute;
  4445. align-self:center;
  4446. padding:2px 2px 2px 0px;
  4447. box-sizing:border-box;
  4448. width:100%;
  4449. }
  4450. #u20967_text {
  4451. border-width:0px;
  4452. word-wrap:break-word;
  4453. text-transform:none;
  4454. }
  4455. #u20968_img {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:58px;
  4461. height:38px;
  4462. }
  4463. #u20968 {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:444px;
  4467. top:76px;
  4468. width:58px;
  4469. height:38px;
  4470. display:flex;
  4471. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4472. font-weight:400;
  4473. font-style:normal;
  4474. font-size:12px;
  4475. color:#606266;
  4476. }
  4477. #u20968 .text {
  4478. position:absolute;
  4479. align-self:center;
  4480. padding:2px 2px 2px 0px;
  4481. box-sizing:border-box;
  4482. width:100%;
  4483. }
  4484. #u20968_text {
  4485. border-width:0px;
  4486. word-wrap:break-word;
  4487. text-transform:none;
  4488. }
  4489. #u20969_img {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:0px;
  4493. top:0px;
  4494. width:58px;
  4495. height:38px;
  4496. }
  4497. #u20969 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:502px;
  4501. top:76px;
  4502. width:58px;
  4503. height:38px;
  4504. display:flex;
  4505. font-family:'ArialMT', 'Arial', sans-serif;
  4506. font-weight:400;
  4507. font-style:normal;
  4508. font-size:12px;
  4509. color:#606266;
  4510. }
  4511. #u20969 .text {
  4512. position:absolute;
  4513. align-self:center;
  4514. padding:2px 2px 2px 0px;
  4515. box-sizing:border-box;
  4516. width:100%;
  4517. }
  4518. #u20969_text {
  4519. border-width:0px;
  4520. word-wrap:break-word;
  4521. text-transform:none;
  4522. visibility:hidden;
  4523. }
  4524. #u20970_img {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:0px;
  4528. top:0px;
  4529. width:58px;
  4530. height:38px;
  4531. }
  4532. #u20970 {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:560px;
  4536. top:76px;
  4537. width:58px;
  4538. height:38px;
  4539. display:flex;
  4540. font-family:'ArialMT', 'Arial', sans-serif;
  4541. font-weight:400;
  4542. font-style:normal;
  4543. font-size:12px;
  4544. color:#606266;
  4545. }
  4546. #u20970 .text {
  4547. position:absolute;
  4548. align-self:center;
  4549. padding:2px 2px 2px 0px;
  4550. box-sizing:border-box;
  4551. width:100%;
  4552. }
  4553. #u20970_text {
  4554. border-width:0px;
  4555. word-wrap:break-word;
  4556. text-transform:none;
  4557. visibility:hidden;
  4558. }
  4559. #u20971_img {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:0px;
  4563. top:0px;
  4564. width:58px;
  4565. height:38px;
  4566. }
  4567. #u20971 {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:618px;
  4571. top:76px;
  4572. width:58px;
  4573. height:38px;
  4574. display:flex;
  4575. font-family:'ArialMT', 'Arial', sans-serif;
  4576. font-weight:400;
  4577. font-style:normal;
  4578. font-size:12px;
  4579. color:#606266;
  4580. }
  4581. #u20971 .text {
  4582. position:absolute;
  4583. align-self:center;
  4584. padding:2px 2px 2px 0px;
  4585. box-sizing:border-box;
  4586. width:100%;
  4587. }
  4588. #u20971_text {
  4589. border-width:0px;
  4590. word-wrap:break-word;
  4591. text-transform:none;
  4592. visibility:hidden;
  4593. }
  4594. #u20972_img {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:58px;
  4600. height:38px;
  4601. }
  4602. #u20972 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:676px;
  4606. top:76px;
  4607. width:58px;
  4608. height:38px;
  4609. display:flex;
  4610. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4611. font-weight:400;
  4612. font-style:normal;
  4613. font-size:12px;
  4614. color:#606266;
  4615. }
  4616. #u20972 .text {
  4617. position:absolute;
  4618. align-self:center;
  4619. padding:2px 2px 2px 0px;
  4620. box-sizing:border-box;
  4621. width:100%;
  4622. }
  4623. #u20972_text {
  4624. border-width:0px;
  4625. word-wrap:break-word;
  4626. text-transform:none;
  4627. visibility:hidden;
  4628. }
  4629. #u20973_img {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:0px;
  4633. top:0px;
  4634. width:58px;
  4635. height:38px;
  4636. }
  4637. #u20973 {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:734px;
  4641. top:76px;
  4642. width:58px;
  4643. height:38px;
  4644. display:flex;
  4645. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4646. font-weight:400;
  4647. font-style:normal;
  4648. font-size:12px;
  4649. color:#606266;
  4650. }
  4651. #u20973 .text {
  4652. position:absolute;
  4653. align-self:center;
  4654. padding:2px 2px 2px 0px;
  4655. box-sizing:border-box;
  4656. width:100%;
  4657. }
  4658. #u20973_text {
  4659. border-width:0px;
  4660. word-wrap:break-word;
  4661. text-transform:none;
  4662. visibility:hidden;
  4663. }
  4664. #u20974_img {
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:0px;
  4668. top:0px;
  4669. width:58px;
  4670. height:38px;
  4671. }
  4672. #u20974 {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:792px;
  4676. top:76px;
  4677. width:58px;
  4678. height:38px;
  4679. display:flex;
  4680. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4681. font-weight:400;
  4682. font-style:normal;
  4683. font-size:12px;
  4684. color:#606266;
  4685. }
  4686. #u20974 .text {
  4687. position:absolute;
  4688. align-self:center;
  4689. padding:2px 2px 2px 0px;
  4690. box-sizing:border-box;
  4691. width:100%;
  4692. }
  4693. #u20974_text {
  4694. border-width:0px;
  4695. word-wrap:break-word;
  4696. text-transform:none;
  4697. visibility:hidden;
  4698. }
  4699. #u20975_img {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:58px;
  4705. height:38px;
  4706. }
  4707. #u20975 {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:850px;
  4711. top:76px;
  4712. width:58px;
  4713. height:38px;
  4714. display:flex;
  4715. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4716. font-weight:400;
  4717. font-style:normal;
  4718. font-size:12px;
  4719. color:#606266;
  4720. }
  4721. #u20975 .text {
  4722. position:absolute;
  4723. align-self:center;
  4724. padding:2px 2px 2px 0px;
  4725. box-sizing:border-box;
  4726. width:100%;
  4727. }
  4728. #u20975_text {
  4729. border-width:0px;
  4730. word-wrap:break-word;
  4731. text-transform:none;
  4732. visibility:hidden;
  4733. }
  4734. #u20976_img {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:0px;
  4738. top:0px;
  4739. width:60px;
  4740. height:38px;
  4741. }
  4742. #u20976 {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:908px;
  4746. top:76px;
  4747. width:60px;
  4748. height:38px;
  4749. display:flex;
  4750. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4751. font-weight:400;
  4752. font-style:normal;
  4753. font-size:12px;
  4754. color:#606266;
  4755. }
  4756. #u20976 .text {
  4757. position:absolute;
  4758. align-self:center;
  4759. padding:2px 2px 2px 0px;
  4760. box-sizing:border-box;
  4761. width:100%;
  4762. }
  4763. #u20976_text {
  4764. border-width:0px;
  4765. word-wrap:break-word;
  4766. text-transform:none;
  4767. visibility:hidden;
  4768. }
  4769. #u20977_img {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:60px;
  4775. height:38px;
  4776. }
  4777. #u20977 {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:968px;
  4781. top:76px;
  4782. width:60px;
  4783. height:38px;
  4784. display:flex;
  4785. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4786. font-weight:400;
  4787. font-style:normal;
  4788. font-size:12px;
  4789. color:#606266;
  4790. }
  4791. #u20977 .text {
  4792. position:absolute;
  4793. align-self:center;
  4794. padding:2px 2px 2px 0px;
  4795. box-sizing:border-box;
  4796. width:100%;
  4797. }
  4798. #u20977_text {
  4799. border-width:0px;
  4800. word-wrap:break-word;
  4801. text-transform:none;
  4802. visibility:hidden;
  4803. }
  4804. #u20978_img {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:0px;
  4808. top:0px;
  4809. width:60px;
  4810. height:38px;
  4811. }
  4812. #u20978 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:1028px;
  4816. top:76px;
  4817. width:60px;
  4818. height:38px;
  4819. display:flex;
  4820. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:12px;
  4824. color:#606266;
  4825. }
  4826. #u20978 .text {
  4827. position:absolute;
  4828. align-self:center;
  4829. padding:2px 2px 2px 0px;
  4830. box-sizing:border-box;
  4831. width:100%;
  4832. }
  4833. #u20978_text {
  4834. border-width:0px;
  4835. word-wrap:break-word;
  4836. text-transform:none;
  4837. visibility:hidden;
  4838. }
  4839. #u20979_img {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:60px;
  4845. height:38px;
  4846. }
  4847. #u20979 {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:1088px;
  4851. top:76px;
  4852. width:60px;
  4853. height:38px;
  4854. display:flex;
  4855. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4856. font-weight:400;
  4857. font-style:normal;
  4858. font-size:12px;
  4859. color:#606266;
  4860. }
  4861. #u20979 .text {
  4862. position:absolute;
  4863. align-self:center;
  4864. padding:2px 2px 2px 0px;
  4865. box-sizing:border-box;
  4866. width:100%;
  4867. }
  4868. #u20979_text {
  4869. border-width:0px;
  4870. word-wrap:break-word;
  4871. text-transform:none;
  4872. visibility:hidden;
  4873. }
  4874. #u20980_img {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:0px;
  4878. top:0px;
  4879. width:60px;
  4880. height:38px;
  4881. }
  4882. #u20980 {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:1148px;
  4886. top:76px;
  4887. width:60px;
  4888. height:38px;
  4889. display:flex;
  4890. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4891. font-weight:400;
  4892. font-style:normal;
  4893. font-size:12px;
  4894. color:#606266;
  4895. }
  4896. #u20980 .text {
  4897. position:absolute;
  4898. align-self:center;
  4899. padding:2px 2px 2px 0px;
  4900. box-sizing:border-box;
  4901. width:100%;
  4902. }
  4903. #u20980_text {
  4904. border-width:0px;
  4905. word-wrap:break-word;
  4906. text-transform:none;
  4907. visibility:hidden;
  4908. }
  4909. #u20981_img {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:0px;
  4913. top:0px;
  4914. width:60px;
  4915. height:38px;
  4916. }
  4917. #u20981 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:1208px;
  4921. top:76px;
  4922. width:60px;
  4923. height:38px;
  4924. display:flex;
  4925. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4926. font-weight:400;
  4927. font-style:normal;
  4928. font-size:12px;
  4929. color:#606266;
  4930. }
  4931. #u20981 .text {
  4932. position:absolute;
  4933. align-self:center;
  4934. padding:2px 2px 2px 0px;
  4935. box-sizing:border-box;
  4936. width:100%;
  4937. }
  4938. #u20981_text {
  4939. border-width:0px;
  4940. word-wrap:break-word;
  4941. text-transform:none;
  4942. visibility:hidden;
  4943. }
  4944. #u20982_img {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:60px;
  4950. height:38px;
  4951. }
  4952. #u20982 {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:1268px;
  4956. top:76px;
  4957. width:60px;
  4958. height:38px;
  4959. display:flex;
  4960. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4961. font-weight:400;
  4962. font-style:normal;
  4963. font-size:12px;
  4964. color:#606266;
  4965. }
  4966. #u20982 .text {
  4967. position:absolute;
  4968. align-self:center;
  4969. padding:2px 2px 2px 0px;
  4970. box-sizing:border-box;
  4971. width:100%;
  4972. }
  4973. #u20982_text {
  4974. border-width:0px;
  4975. word-wrap:break-word;
  4976. text-transform:none;
  4977. visibility:hidden;
  4978. }
  4979. #u20983_img {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:60px;
  4985. height:38px;
  4986. }
  4987. #u20983 {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:1328px;
  4991. top:76px;
  4992. width:60px;
  4993. height:38px;
  4994. display:flex;
  4995. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4996. font-weight:400;
  4997. font-style:normal;
  4998. font-size:12px;
  4999. color:#606266;
  5000. }
  5001. #u20983 .text {
  5002. position:absolute;
  5003. align-self:center;
  5004. padding:2px 2px 2px 0px;
  5005. box-sizing:border-box;
  5006. width:100%;
  5007. }
  5008. #u20983_text {
  5009. border-width:0px;
  5010. word-wrap:break-word;
  5011. text-transform:none;
  5012. visibility:hidden;
  5013. }
  5014. #u20984_img {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:54px;
  5020. height:38px;
  5021. }
  5022. #u20984 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:1388px;
  5026. top:76px;
  5027. width:54px;
  5028. height:38px;
  5029. display:flex;
  5030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:12px;
  5034. color:#1890FF;
  5035. }
  5036. #u20984 .text {
  5037. position:absolute;
  5038. align-self:center;
  5039. padding:2px 2px 2px 0px;
  5040. box-sizing:border-box;
  5041. width:100%;
  5042. }
  5043. #u20984_text {
  5044. border-width:0px;
  5045. word-wrap:break-word;
  5046. text-transform:none;
  5047. }
  5048. #u20985_img {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:30px;
  5054. height:38px;
  5055. }
  5056. #u20985 {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:0px;
  5060. top:114px;
  5061. width:30px;
  5062. height:38px;
  5063. display:flex;
  5064. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5065. font-weight:400;
  5066. font-style:normal;
  5067. font-size:12px;
  5068. color:#606266;
  5069. }
  5070. #u20985 .text {
  5071. position:absolute;
  5072. align-self:center;
  5073. padding:2px 2px 2px 0px;
  5074. box-sizing:border-box;
  5075. width:100%;
  5076. }
  5077. #u20985_text {
  5078. border-width:0px;
  5079. word-wrap:break-word;
  5080. text-transform:none;
  5081. }
  5082. #u20986_img {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:0px;
  5086. top:0px;
  5087. width:58px;
  5088. height:38px;
  5089. }
  5090. #u20986 {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:30px;
  5094. top:114px;
  5095. width:58px;
  5096. height:38px;
  5097. display:flex;
  5098. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5099. font-weight:400;
  5100. font-style:normal;
  5101. font-size:12px;
  5102. color:#606266;
  5103. }
  5104. #u20986 .text {
  5105. position:absolute;
  5106. align-self:center;
  5107. padding:2px 2px 2px 0px;
  5108. box-sizing:border-box;
  5109. width:100%;
  5110. }
  5111. #u20986_text {
  5112. border-width:0px;
  5113. word-wrap:break-word;
  5114. text-transform:none;
  5115. visibility:hidden;
  5116. }
  5117. #u20987_img {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:0px;
  5121. top:0px;
  5122. width:60px;
  5123. height:38px;
  5124. }
  5125. #u20987 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:88px;
  5129. top:114px;
  5130. width:60px;
  5131. height:38px;
  5132. display:flex;
  5133. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5134. font-weight:400;
  5135. font-style:normal;
  5136. font-size:12px;
  5137. color:#606266;
  5138. }
  5139. #u20987 .text {
  5140. position:absolute;
  5141. align-self:center;
  5142. padding:2px 2px 2px 0px;
  5143. box-sizing:border-box;
  5144. width:100%;
  5145. }
  5146. #u20987_text {
  5147. border-width:0px;
  5148. word-wrap:break-word;
  5149. text-transform:none;
  5150. visibility:hidden;
  5151. }
  5152. #u20988_img {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:60px;
  5158. height:38px;
  5159. }
  5160. #u20988 {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:148px;
  5164. top:114px;
  5165. width:60px;
  5166. height:38px;
  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:#606266;
  5173. }
  5174. #u20988 .text {
  5175. position:absolute;
  5176. align-self:center;
  5177. padding:2px 2px 2px 0px;
  5178. box-sizing:border-box;
  5179. width:100%;
  5180. }
  5181. #u20988_text {
  5182. border-width:0px;
  5183. word-wrap:break-word;
  5184. text-transform:none;
  5185. visibility:hidden;
  5186. }
  5187. #u20989_img {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:0px;
  5191. top:0px;
  5192. width:60px;
  5193. height:38px;
  5194. }
  5195. #u20989 {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:208px;
  5199. top:114px;
  5200. width:60px;
  5201. height:38px;
  5202. display:flex;
  5203. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. font-size:12px;
  5207. color:#606266;
  5208. }
  5209. #u20989 .text {
  5210. position:absolute;
  5211. align-self:center;
  5212. padding:2px 2px 2px 0px;
  5213. box-sizing:border-box;
  5214. width:100%;
  5215. }
  5216. #u20989_text {
  5217. border-width:0px;
  5218. word-wrap:break-word;
  5219. text-transform:none;
  5220. visibility:hidden;
  5221. }
  5222. #u20990_img {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:0px;
  5226. top:0px;
  5227. width:60px;
  5228. height:38px;
  5229. }
  5230. #u20990 {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:268px;
  5234. top:114px;
  5235. width:60px;
  5236. height:38px;
  5237. display:flex;
  5238. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. font-size:12px;
  5242. color:#606266;
  5243. }
  5244. #u20990 .text {
  5245. position:absolute;
  5246. align-self:center;
  5247. padding:2px 2px 2px 0px;
  5248. box-sizing:border-box;
  5249. width:100%;
  5250. }
  5251. #u20990_text {
  5252. border-width:0px;
  5253. word-wrap:break-word;
  5254. text-transform:none;
  5255. visibility:hidden;
  5256. }
  5257. #u20991_img {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:0px;
  5261. top:0px;
  5262. width:58px;
  5263. height:38px;
  5264. }
  5265. #u20991 {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:328px;
  5269. top:114px;
  5270. width:58px;
  5271. height:38px;
  5272. display:flex;
  5273. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5274. font-weight:400;
  5275. font-style:normal;
  5276. font-size:12px;
  5277. color:#606266;
  5278. }
  5279. #u20991 .text {
  5280. position:absolute;
  5281. align-self:center;
  5282. padding:2px 2px 2px 0px;
  5283. box-sizing:border-box;
  5284. width:100%;
  5285. }
  5286. #u20991_text {
  5287. border-width:0px;
  5288. word-wrap:break-word;
  5289. text-transform:none;
  5290. visibility:hidden;
  5291. }
  5292. #u20992_img {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:0px;
  5296. top:0px;
  5297. width:58px;
  5298. height:38px;
  5299. }
  5300. #u20992 {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:386px;
  5304. top:114px;
  5305. width:58px;
  5306. height:38px;
  5307. display:flex;
  5308. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5309. font-weight:400;
  5310. font-style:normal;
  5311. font-size:12px;
  5312. color:#606266;
  5313. }
  5314. #u20992 .text {
  5315. position:absolute;
  5316. align-self:center;
  5317. padding:2px 2px 2px 0px;
  5318. box-sizing:border-box;
  5319. width:100%;
  5320. }
  5321. #u20992_text {
  5322. border-width:0px;
  5323. word-wrap:break-word;
  5324. text-transform:none;
  5325. visibility:hidden;
  5326. }
  5327. #u20993_img {
  5328. border-width:0px;
  5329. position:absolute;
  5330. left:0px;
  5331. top:0px;
  5332. width:58px;
  5333. height:38px;
  5334. }
  5335. #u20993 {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:444px;
  5339. top:114px;
  5340. width:58px;
  5341. height:38px;
  5342. display:flex;
  5343. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5344. font-weight:400;
  5345. font-style:normal;
  5346. font-size:12px;
  5347. color:#606266;
  5348. }
  5349. #u20993 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:2px 2px 2px 0px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u20993_text {
  5357. border-width:0px;
  5358. word-wrap:break-word;
  5359. text-transform:none;
  5360. visibility:hidden;
  5361. }
  5362. #u20994_img {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:58px;
  5368. height:38px;
  5369. }
  5370. #u20994 {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:502px;
  5374. top:114px;
  5375. width:58px;
  5376. height:38px;
  5377. display:flex;
  5378. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5379. font-weight:400;
  5380. font-style:normal;
  5381. font-size:12px;
  5382. color:#606266;
  5383. }
  5384. #u20994 .text {
  5385. position:absolute;
  5386. align-self:center;
  5387. padding:2px 2px 2px 0px;
  5388. box-sizing:border-box;
  5389. width:100%;
  5390. }
  5391. #u20994_text {
  5392. border-width:0px;
  5393. word-wrap:break-word;
  5394. text-transform:none;
  5395. visibility:hidden;
  5396. }
  5397. #u20995_img {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:58px;
  5403. height:38px;
  5404. }
  5405. #u20995 {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:560px;
  5409. top:114px;
  5410. width:58px;
  5411. height:38px;
  5412. display:flex;
  5413. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:12px;
  5417. color:#606266;
  5418. }
  5419. #u20995 .text {
  5420. position:absolute;
  5421. align-self:center;
  5422. padding:2px 2px 2px 0px;
  5423. box-sizing:border-box;
  5424. width:100%;
  5425. }
  5426. #u20995_text {
  5427. border-width:0px;
  5428. word-wrap:break-word;
  5429. text-transform:none;
  5430. visibility:hidden;
  5431. }
  5432. #u20996_img {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:58px;
  5438. height:38px;
  5439. }
  5440. #u20996 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:618px;
  5444. top:114px;
  5445. width:58px;
  5446. height:38px;
  5447. display:flex;
  5448. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. font-size:12px;
  5452. color:#606266;
  5453. }
  5454. #u20996 .text {
  5455. position:absolute;
  5456. align-self:center;
  5457. padding:2px 2px 2px 0px;
  5458. box-sizing:border-box;
  5459. width:100%;
  5460. }
  5461. #u20996_text {
  5462. border-width:0px;
  5463. word-wrap:break-word;
  5464. text-transform:none;
  5465. visibility:hidden;
  5466. }
  5467. #u20997_img {
  5468. border-width:0px;
  5469. position:absolute;
  5470. left:0px;
  5471. top:0px;
  5472. width:58px;
  5473. height:38px;
  5474. }
  5475. #u20997 {
  5476. border-width:0px;
  5477. position:absolute;
  5478. left:676px;
  5479. top:114px;
  5480. width:58px;
  5481. height:38px;
  5482. display:flex;
  5483. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5484. font-weight:400;
  5485. font-style:normal;
  5486. font-size:12px;
  5487. color:#606266;
  5488. }
  5489. #u20997 .text {
  5490. position:absolute;
  5491. align-self:center;
  5492. padding:2px 2px 2px 0px;
  5493. box-sizing:border-box;
  5494. width:100%;
  5495. }
  5496. #u20997_text {
  5497. border-width:0px;
  5498. word-wrap:break-word;
  5499. text-transform:none;
  5500. visibility:hidden;
  5501. }
  5502. #u20998_img {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:0px;
  5506. top:0px;
  5507. width:58px;
  5508. height:38px;
  5509. }
  5510. #u20998 {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:734px;
  5514. top:114px;
  5515. width:58px;
  5516. height:38px;
  5517. display:flex;
  5518. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5519. font-weight:400;
  5520. font-style:normal;
  5521. font-size:12px;
  5522. color:#606266;
  5523. }
  5524. #u20998 .text {
  5525. position:absolute;
  5526. align-self:center;
  5527. padding:2px 2px 2px 0px;
  5528. box-sizing:border-box;
  5529. width:100%;
  5530. }
  5531. #u20998_text {
  5532. border-width:0px;
  5533. word-wrap:break-word;
  5534. text-transform:none;
  5535. visibility:hidden;
  5536. }
  5537. #u20999_img {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:0px;
  5541. top:0px;
  5542. width:58px;
  5543. height:38px;
  5544. }
  5545. #u20999 {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:792px;
  5549. top:114px;
  5550. width:58px;
  5551. height:38px;
  5552. display:flex;
  5553. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5554. font-weight:400;
  5555. font-style:normal;
  5556. font-size:12px;
  5557. color:#606266;
  5558. }
  5559. #u20999 .text {
  5560. position:absolute;
  5561. align-self:center;
  5562. padding:2px 2px 2px 0px;
  5563. box-sizing:border-box;
  5564. width:100%;
  5565. }
  5566. #u20999_text {
  5567. border-width:0px;
  5568. word-wrap:break-word;
  5569. text-transform:none;
  5570. visibility:hidden;
  5571. }
  5572. #u21000_img {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:0px;
  5576. top:0px;
  5577. width:58px;
  5578. height:38px;
  5579. }
  5580. #u21000 {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:850px;
  5584. top:114px;
  5585. width:58px;
  5586. height:38px;
  5587. display:flex;
  5588. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5589. font-weight:400;
  5590. font-style:normal;
  5591. font-size:12px;
  5592. color:#606266;
  5593. }
  5594. #u21000 .text {
  5595. position:absolute;
  5596. align-self:center;
  5597. padding:2px 2px 2px 0px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u21000_text {
  5602. border-width:0px;
  5603. word-wrap:break-word;
  5604. text-transform:none;
  5605. visibility:hidden;
  5606. }
  5607. #u21001_img {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:60px;
  5613. height:38px;
  5614. }
  5615. #u21001 {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:908px;
  5619. top:114px;
  5620. width:60px;
  5621. height:38px;
  5622. display:flex;
  5623. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5624. font-weight:400;
  5625. font-style:normal;
  5626. font-size:12px;
  5627. color:#606266;
  5628. }
  5629. #u21001 .text {
  5630. position:absolute;
  5631. align-self:center;
  5632. padding:2px 2px 2px 0px;
  5633. box-sizing:border-box;
  5634. width:100%;
  5635. }
  5636. #u21001_text {
  5637. border-width:0px;
  5638. word-wrap:break-word;
  5639. text-transform:none;
  5640. visibility:hidden;
  5641. }
  5642. #u21002_img {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:60px;
  5648. height:38px;
  5649. }
  5650. #u21002 {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:968px;
  5654. top:114px;
  5655. width:60px;
  5656. height:38px;
  5657. display:flex;
  5658. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5659. font-weight:400;
  5660. font-style:normal;
  5661. font-size:12px;
  5662. color:#606266;
  5663. }
  5664. #u21002 .text {
  5665. position:absolute;
  5666. align-self:center;
  5667. padding:2px 2px 2px 0px;
  5668. box-sizing:border-box;
  5669. width:100%;
  5670. }
  5671. #u21002_text {
  5672. border-width:0px;
  5673. word-wrap:break-word;
  5674. text-transform:none;
  5675. visibility:hidden;
  5676. }
  5677. #u21003_img {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:0px;
  5681. top:0px;
  5682. width:60px;
  5683. height:38px;
  5684. }
  5685. #u21003 {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:1028px;
  5689. top:114px;
  5690. width:60px;
  5691. height:38px;
  5692. display:flex;
  5693. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5694. font-weight:400;
  5695. font-style:normal;
  5696. font-size:12px;
  5697. color:#606266;
  5698. }
  5699. #u21003 .text {
  5700. position:absolute;
  5701. align-self:center;
  5702. padding:2px 2px 2px 0px;
  5703. box-sizing:border-box;
  5704. width:100%;
  5705. }
  5706. #u21003_text {
  5707. border-width:0px;
  5708. word-wrap:break-word;
  5709. text-transform:none;
  5710. visibility:hidden;
  5711. }
  5712. #u21004_img {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:60px;
  5718. height:38px;
  5719. }
  5720. #u21004 {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:1088px;
  5724. top:114px;
  5725. width:60px;
  5726. height:38px;
  5727. display:flex;
  5728. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5729. font-weight:400;
  5730. font-style:normal;
  5731. font-size:12px;
  5732. color:#606266;
  5733. }
  5734. #u21004 .text {
  5735. position:absolute;
  5736. align-self:center;
  5737. padding:2px 2px 2px 0px;
  5738. box-sizing:border-box;
  5739. width:100%;
  5740. }
  5741. #u21004_text {
  5742. border-width:0px;
  5743. word-wrap:break-word;
  5744. text-transform:none;
  5745. visibility:hidden;
  5746. }
  5747. #u21005_img {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:0px;
  5751. top:0px;
  5752. width:60px;
  5753. height:38px;
  5754. }
  5755. #u21005 {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:1148px;
  5759. top:114px;
  5760. width:60px;
  5761. height:38px;
  5762. display:flex;
  5763. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5764. font-weight:400;
  5765. font-style:normal;
  5766. font-size:12px;
  5767. color:#606266;
  5768. }
  5769. #u21005 .text {
  5770. position:absolute;
  5771. align-self:center;
  5772. padding:2px 2px 2px 0px;
  5773. box-sizing:border-box;
  5774. width:100%;
  5775. }
  5776. #u21005_text {
  5777. border-width:0px;
  5778. word-wrap:break-word;
  5779. text-transform:none;
  5780. visibility:hidden;
  5781. }
  5782. #u21006_img {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:60px;
  5788. height:38px;
  5789. }
  5790. #u21006 {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:1208px;
  5794. top:114px;
  5795. width:60px;
  5796. height:38px;
  5797. display:flex;
  5798. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5799. font-weight:400;
  5800. font-style:normal;
  5801. font-size:12px;
  5802. color:#606266;
  5803. }
  5804. #u21006 .text {
  5805. position:absolute;
  5806. align-self:center;
  5807. padding:2px 2px 2px 0px;
  5808. box-sizing:border-box;
  5809. width:100%;
  5810. }
  5811. #u21006_text {
  5812. border-width:0px;
  5813. word-wrap:break-word;
  5814. text-transform:none;
  5815. visibility:hidden;
  5816. }
  5817. #u21007_img {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:0px;
  5821. top:0px;
  5822. width:60px;
  5823. height:38px;
  5824. }
  5825. #u21007 {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:1268px;
  5829. top:114px;
  5830. width:60px;
  5831. height:38px;
  5832. display:flex;
  5833. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5834. font-weight:400;
  5835. font-style:normal;
  5836. font-size:12px;
  5837. color:#606266;
  5838. }
  5839. #u21007 .text {
  5840. position:absolute;
  5841. align-self:center;
  5842. padding:2px 2px 2px 0px;
  5843. box-sizing:border-box;
  5844. width:100%;
  5845. }
  5846. #u21007_text {
  5847. border-width:0px;
  5848. word-wrap:break-word;
  5849. text-transform:none;
  5850. visibility:hidden;
  5851. }
  5852. #u21008_img {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:0px;
  5856. top:0px;
  5857. width:60px;
  5858. height:38px;
  5859. }
  5860. #u21008 {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:1328px;
  5864. top:114px;
  5865. width:60px;
  5866. height:38px;
  5867. display:flex;
  5868. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:12px;
  5872. color:#606266;
  5873. }
  5874. #u21008 .text {
  5875. position:absolute;
  5876. align-self:center;
  5877. padding:2px 2px 2px 0px;
  5878. box-sizing:border-box;
  5879. width:100%;
  5880. }
  5881. #u21008_text {
  5882. border-width:0px;
  5883. word-wrap:break-word;
  5884. text-transform:none;
  5885. visibility:hidden;
  5886. }
  5887. #u21009_img {
  5888. border-width:0px;
  5889. position:absolute;
  5890. left:0px;
  5891. top:0px;
  5892. width:54px;
  5893. height:38px;
  5894. }
  5895. #u21009 {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:1388px;
  5899. top:114px;
  5900. width:54px;
  5901. height:38px;
  5902. display:flex;
  5903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5904. font-weight:400;
  5905. font-style:normal;
  5906. font-size:12px;
  5907. color:#1890FF;
  5908. }
  5909. #u21009 .text {
  5910. position:absolute;
  5911. align-self:center;
  5912. padding:2px 2px 2px 0px;
  5913. box-sizing:border-box;
  5914. width:100%;
  5915. }
  5916. #u21009_text {
  5917. border-width:0px;
  5918. word-wrap:break-word;
  5919. text-transform:none;
  5920. }
  5921. #u21010_img {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:0px;
  5925. top:0px;
  5926. width:30px;
  5927. height:35px;
  5928. }
  5929. #u21010 {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:0px;
  5933. top:152px;
  5934. width:30px;
  5935. height:35px;
  5936. display:flex;
  5937. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5938. font-weight:400;
  5939. font-style:normal;
  5940. font-size:12px;
  5941. color:#606266;
  5942. }
  5943. #u21010 .text {
  5944. position:absolute;
  5945. align-self:center;
  5946. padding:2px 2px 2px 0px;
  5947. box-sizing:border-box;
  5948. width:100%;
  5949. }
  5950. #u21010_text {
  5951. border-width:0px;
  5952. word-wrap:break-word;
  5953. text-transform:none;
  5954. }
  5955. #u21011_img {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:58px;
  5961. height:35px;
  5962. }
  5963. #u21011 {
  5964. border-width:0px;
  5965. position:absolute;
  5966. left:30px;
  5967. top:152px;
  5968. width:58px;
  5969. height:35px;
  5970. display:flex;
  5971. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. font-size:12px;
  5975. color:#606266;
  5976. }
  5977. #u21011 .text {
  5978. position:absolute;
  5979. align-self:center;
  5980. padding:2px 2px 2px 0px;
  5981. box-sizing:border-box;
  5982. width:100%;
  5983. }
  5984. #u21011_text {
  5985. border-width:0px;
  5986. word-wrap:break-word;
  5987. text-transform:none;
  5988. visibility:hidden;
  5989. }
  5990. #u21012_img {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:0px;
  5994. top:0px;
  5995. width:60px;
  5996. height:35px;
  5997. }
  5998. #u21012 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:88px;
  6002. top:152px;
  6003. width:60px;
  6004. height:35px;
  6005. display:flex;
  6006. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. font-size:12px;
  6010. color:#606266;
  6011. }
  6012. #u21012 .text {
  6013. position:absolute;
  6014. align-self:center;
  6015. padding:2px 2px 2px 0px;
  6016. box-sizing:border-box;
  6017. width:100%;
  6018. }
  6019. #u21012_text {
  6020. border-width:0px;
  6021. word-wrap:break-word;
  6022. text-transform:none;
  6023. visibility:hidden;
  6024. }
  6025. #u21013_img {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:60px;
  6031. height:35px;
  6032. }
  6033. #u21013 {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:148px;
  6037. top:152px;
  6038. width:60px;
  6039. height:35px;
  6040. display:flex;
  6041. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6042. font-weight:400;
  6043. font-style:normal;
  6044. font-size:12px;
  6045. color:#606266;
  6046. }
  6047. #u21013 .text {
  6048. position:absolute;
  6049. align-self:center;
  6050. padding:2px 2px 2px 0px;
  6051. box-sizing:border-box;
  6052. width:100%;
  6053. }
  6054. #u21013_text {
  6055. border-width:0px;
  6056. word-wrap:break-word;
  6057. text-transform:none;
  6058. visibility:hidden;
  6059. }
  6060. #u21014_img {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:0px;
  6064. top:0px;
  6065. width:60px;
  6066. height:35px;
  6067. }
  6068. #u21014 {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:208px;
  6072. top:152px;
  6073. width:60px;
  6074. height:35px;
  6075. display:flex;
  6076. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6077. font-weight:400;
  6078. font-style:normal;
  6079. font-size:12px;
  6080. color:#606266;
  6081. }
  6082. #u21014 .text {
  6083. position:absolute;
  6084. align-self:center;
  6085. padding:2px 2px 2px 0px;
  6086. box-sizing:border-box;
  6087. width:100%;
  6088. }
  6089. #u21014_text {
  6090. border-width:0px;
  6091. word-wrap:break-word;
  6092. text-transform:none;
  6093. visibility:hidden;
  6094. }
  6095. #u21015_img {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:0px;
  6099. top:0px;
  6100. width:60px;
  6101. height:35px;
  6102. }
  6103. #u21015 {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:268px;
  6107. top:152px;
  6108. width:60px;
  6109. height:35px;
  6110. display:flex;
  6111. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6112. font-weight:400;
  6113. font-style:normal;
  6114. font-size:12px;
  6115. color:#606266;
  6116. }
  6117. #u21015 .text {
  6118. position:absolute;
  6119. align-self:center;
  6120. padding:2px 2px 2px 0px;
  6121. box-sizing:border-box;
  6122. width:100%;
  6123. }
  6124. #u21015_text {
  6125. border-width:0px;
  6126. word-wrap:break-word;
  6127. text-transform:none;
  6128. visibility:hidden;
  6129. }
  6130. #u21016_img {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:58px;
  6136. height:35px;
  6137. }
  6138. #u21016 {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:328px;
  6142. top:152px;
  6143. width:58px;
  6144. height:35px;
  6145. display:flex;
  6146. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6147. font-weight:400;
  6148. font-style:normal;
  6149. font-size:12px;
  6150. color:#606266;
  6151. }
  6152. #u21016 .text {
  6153. position:absolute;
  6154. align-self:center;
  6155. padding:2px 2px 2px 0px;
  6156. box-sizing:border-box;
  6157. width:100%;
  6158. }
  6159. #u21016_text {
  6160. border-width:0px;
  6161. word-wrap:break-word;
  6162. text-transform:none;
  6163. visibility:hidden;
  6164. }
  6165. #u21017_img {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:58px;
  6171. height:35px;
  6172. }
  6173. #u21017 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:386px;
  6177. top:152px;
  6178. width:58px;
  6179. height:35px;
  6180. display:flex;
  6181. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:12px;
  6185. color:#606266;
  6186. }
  6187. #u21017 .text {
  6188. position:absolute;
  6189. align-self:center;
  6190. padding:2px 2px 2px 0px;
  6191. box-sizing:border-box;
  6192. width:100%;
  6193. }
  6194. #u21017_text {
  6195. border-width:0px;
  6196. word-wrap:break-word;
  6197. text-transform:none;
  6198. visibility:hidden;
  6199. }
  6200. #u21018_img {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:0px;
  6204. top:0px;
  6205. width:58px;
  6206. height:35px;
  6207. }
  6208. #u21018 {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:444px;
  6212. top:152px;
  6213. width:58px;
  6214. height:35px;
  6215. display:flex;
  6216. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:12px;
  6220. color:#606266;
  6221. }
  6222. #u21018 .text {
  6223. position:absolute;
  6224. align-self:center;
  6225. padding:2px 2px 2px 0px;
  6226. box-sizing:border-box;
  6227. width:100%;
  6228. }
  6229. #u21018_text {
  6230. border-width:0px;
  6231. word-wrap:break-word;
  6232. text-transform:none;
  6233. visibility:hidden;
  6234. }
  6235. #u21019_img {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:0px;
  6239. top:0px;
  6240. width:58px;
  6241. height:35px;
  6242. }
  6243. #u21019 {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:502px;
  6247. top:152px;
  6248. width:58px;
  6249. height:35px;
  6250. display:flex;
  6251. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6252. font-weight:400;
  6253. font-style:normal;
  6254. font-size:12px;
  6255. color:#606266;
  6256. }
  6257. #u21019 .text {
  6258. position:absolute;
  6259. align-self:center;
  6260. padding:2px 2px 2px 0px;
  6261. box-sizing:border-box;
  6262. width:100%;
  6263. }
  6264. #u21019_text {
  6265. border-width:0px;
  6266. word-wrap:break-word;
  6267. text-transform:none;
  6268. visibility:hidden;
  6269. }
  6270. #u21020_img {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:0px;
  6274. top:0px;
  6275. width:58px;
  6276. height:35px;
  6277. }
  6278. #u21020 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:560px;
  6282. top:152px;
  6283. width:58px;
  6284. height:35px;
  6285. display:flex;
  6286. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6287. font-weight:400;
  6288. font-style:normal;
  6289. font-size:12px;
  6290. color:#606266;
  6291. }
  6292. #u21020 .text {
  6293. position:absolute;
  6294. align-self:center;
  6295. padding:2px 2px 2px 0px;
  6296. box-sizing:border-box;
  6297. width:100%;
  6298. }
  6299. #u21020_text {
  6300. border-width:0px;
  6301. word-wrap:break-word;
  6302. text-transform:none;
  6303. visibility:hidden;
  6304. }
  6305. #u21021_img {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:0px;
  6309. top:0px;
  6310. width:58px;
  6311. height:35px;
  6312. }
  6313. #u21021 {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:618px;
  6317. top:152px;
  6318. width:58px;
  6319. height:35px;
  6320. display:flex;
  6321. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6322. font-weight:400;
  6323. font-style:normal;
  6324. font-size:12px;
  6325. color:#606266;
  6326. }
  6327. #u21021 .text {
  6328. position:absolute;
  6329. align-self:center;
  6330. padding:2px 2px 2px 0px;
  6331. box-sizing:border-box;
  6332. width:100%;
  6333. }
  6334. #u21021_text {
  6335. border-width:0px;
  6336. word-wrap:break-word;
  6337. text-transform:none;
  6338. visibility:hidden;
  6339. }
  6340. #u21022_img {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:0px;
  6344. top:0px;
  6345. width:58px;
  6346. height:35px;
  6347. }
  6348. #u21022 {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:676px;
  6352. top:152px;
  6353. width:58px;
  6354. height:35px;
  6355. display:flex;
  6356. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6357. font-weight:400;
  6358. font-style:normal;
  6359. font-size:12px;
  6360. color:#606266;
  6361. }
  6362. #u21022 .text {
  6363. position:absolute;
  6364. align-self:center;
  6365. padding:2px 2px 2px 0px;
  6366. box-sizing:border-box;
  6367. width:100%;
  6368. }
  6369. #u21022_text {
  6370. border-width:0px;
  6371. word-wrap:break-word;
  6372. text-transform:none;
  6373. visibility:hidden;
  6374. }
  6375. #u21023_img {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:0px;
  6379. top:0px;
  6380. width:58px;
  6381. height:35px;
  6382. }
  6383. #u21023 {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:734px;
  6387. top:152px;
  6388. width:58px;
  6389. height:35px;
  6390. display:flex;
  6391. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6392. font-weight:400;
  6393. font-style:normal;
  6394. font-size:12px;
  6395. color:#606266;
  6396. }
  6397. #u21023 .text {
  6398. position:absolute;
  6399. align-self:center;
  6400. padding:2px 2px 2px 0px;
  6401. box-sizing:border-box;
  6402. width:100%;
  6403. }
  6404. #u21023_text {
  6405. border-width:0px;
  6406. word-wrap:break-word;
  6407. text-transform:none;
  6408. visibility:hidden;
  6409. }
  6410. #u21024_img {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:0px;
  6414. top:0px;
  6415. width:58px;
  6416. height:35px;
  6417. }
  6418. #u21024 {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:792px;
  6422. top:152px;
  6423. width:58px;
  6424. height:35px;
  6425. display:flex;
  6426. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6427. font-weight:400;
  6428. font-style:normal;
  6429. font-size:12px;
  6430. color:#606266;
  6431. }
  6432. #u21024 .text {
  6433. position:absolute;
  6434. align-self:center;
  6435. padding:2px 2px 2px 0px;
  6436. box-sizing:border-box;
  6437. width:100%;
  6438. }
  6439. #u21024_text {
  6440. border-width:0px;
  6441. word-wrap:break-word;
  6442. text-transform:none;
  6443. visibility:hidden;
  6444. }
  6445. #u21025_img {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:0px;
  6449. top:0px;
  6450. width:58px;
  6451. height:35px;
  6452. }
  6453. #u21025 {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:850px;
  6457. top:152px;
  6458. width:58px;
  6459. height:35px;
  6460. display:flex;
  6461. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6462. font-weight:400;
  6463. font-style:normal;
  6464. font-size:12px;
  6465. color:#606266;
  6466. }
  6467. #u21025 .text {
  6468. position:absolute;
  6469. align-self:center;
  6470. padding:2px 2px 2px 0px;
  6471. box-sizing:border-box;
  6472. width:100%;
  6473. }
  6474. #u21025_text {
  6475. border-width:0px;
  6476. word-wrap:break-word;
  6477. text-transform:none;
  6478. visibility:hidden;
  6479. }
  6480. #u21026_img {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:60px;
  6486. height:35px;
  6487. }
  6488. #u21026 {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:908px;
  6492. top:152px;
  6493. width:60px;
  6494. height:35px;
  6495. display:flex;
  6496. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6497. font-weight:400;
  6498. font-style:normal;
  6499. font-size:12px;
  6500. color:#606266;
  6501. }
  6502. #u21026 .text {
  6503. position:absolute;
  6504. align-self:center;
  6505. padding:2px 2px 2px 0px;
  6506. box-sizing:border-box;
  6507. width:100%;
  6508. }
  6509. #u21026_text {
  6510. border-width:0px;
  6511. word-wrap:break-word;
  6512. text-transform:none;
  6513. visibility:hidden;
  6514. }
  6515. #u21027_img {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:0px;
  6519. top:0px;
  6520. width:60px;
  6521. height:35px;
  6522. }
  6523. #u21027 {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:968px;
  6527. top:152px;
  6528. width:60px;
  6529. height:35px;
  6530. display:flex;
  6531. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6532. font-weight:400;
  6533. font-style:normal;
  6534. font-size:12px;
  6535. color:#606266;
  6536. }
  6537. #u21027 .text {
  6538. position:absolute;
  6539. align-self:center;
  6540. padding:2px 2px 2px 0px;
  6541. box-sizing:border-box;
  6542. width:100%;
  6543. }
  6544. #u21027_text {
  6545. border-width:0px;
  6546. word-wrap:break-word;
  6547. text-transform:none;
  6548. visibility:hidden;
  6549. }
  6550. #u21028_img {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:0px;
  6554. top:0px;
  6555. width:60px;
  6556. height:35px;
  6557. }
  6558. #u21028 {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:1028px;
  6562. top:152px;
  6563. width:60px;
  6564. height:35px;
  6565. display:flex;
  6566. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6567. font-weight:400;
  6568. font-style:normal;
  6569. font-size:12px;
  6570. color:#606266;
  6571. }
  6572. #u21028 .text {
  6573. position:absolute;
  6574. align-self:center;
  6575. padding:2px 2px 2px 0px;
  6576. box-sizing:border-box;
  6577. width:100%;
  6578. }
  6579. #u21028_text {
  6580. border-width:0px;
  6581. word-wrap:break-word;
  6582. text-transform:none;
  6583. visibility:hidden;
  6584. }
  6585. #u21029_img {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:0px;
  6589. top:0px;
  6590. width:60px;
  6591. height:35px;
  6592. }
  6593. #u21029 {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:1088px;
  6597. top:152px;
  6598. width:60px;
  6599. height:35px;
  6600. display:flex;
  6601. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6602. font-weight:400;
  6603. font-style:normal;
  6604. font-size:12px;
  6605. color:#606266;
  6606. }
  6607. #u21029 .text {
  6608. position:absolute;
  6609. align-self:center;
  6610. padding:2px 2px 2px 0px;
  6611. box-sizing:border-box;
  6612. width:100%;
  6613. }
  6614. #u21029_text {
  6615. border-width:0px;
  6616. word-wrap:break-word;
  6617. text-transform:none;
  6618. visibility:hidden;
  6619. }
  6620. #u21030_img {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:0px;
  6624. top:0px;
  6625. width:60px;
  6626. height:35px;
  6627. }
  6628. #u21030 {
  6629. border-width:0px;
  6630. position:absolute;
  6631. left:1148px;
  6632. top:152px;
  6633. width:60px;
  6634. height:35px;
  6635. display:flex;
  6636. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6637. font-weight:400;
  6638. font-style:normal;
  6639. font-size:12px;
  6640. color:#606266;
  6641. }
  6642. #u21030 .text {
  6643. position:absolute;
  6644. align-self:center;
  6645. padding:2px 2px 2px 0px;
  6646. box-sizing:border-box;
  6647. width:100%;
  6648. }
  6649. #u21030_text {
  6650. border-width:0px;
  6651. word-wrap:break-word;
  6652. text-transform:none;
  6653. visibility:hidden;
  6654. }
  6655. #u21031_img {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:0px;
  6659. top:0px;
  6660. width:60px;
  6661. height:35px;
  6662. }
  6663. #u21031 {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:1208px;
  6667. top:152px;
  6668. width:60px;
  6669. height:35px;
  6670. display:flex;
  6671. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6672. font-weight:400;
  6673. font-style:normal;
  6674. font-size:12px;
  6675. color:#606266;
  6676. }
  6677. #u21031 .text {
  6678. position:absolute;
  6679. align-self:center;
  6680. padding:2px 2px 2px 0px;
  6681. box-sizing:border-box;
  6682. width:100%;
  6683. }
  6684. #u21031_text {
  6685. border-width:0px;
  6686. word-wrap:break-word;
  6687. text-transform:none;
  6688. visibility:hidden;
  6689. }
  6690. #u21032_img {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:0px;
  6694. top:0px;
  6695. width:60px;
  6696. height:35px;
  6697. }
  6698. #u21032 {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:1268px;
  6702. top:152px;
  6703. width:60px;
  6704. height:35px;
  6705. display:flex;
  6706. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6707. font-weight:400;
  6708. font-style:normal;
  6709. font-size:12px;
  6710. color:#606266;
  6711. }
  6712. #u21032 .text {
  6713. position:absolute;
  6714. align-self:center;
  6715. padding:2px 2px 2px 0px;
  6716. box-sizing:border-box;
  6717. width:100%;
  6718. }
  6719. #u21032_text {
  6720. border-width:0px;
  6721. word-wrap:break-word;
  6722. text-transform:none;
  6723. visibility:hidden;
  6724. }
  6725. #u21033_img {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:60px;
  6731. height:35px;
  6732. }
  6733. #u21033 {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:1328px;
  6737. top:152px;
  6738. width:60px;
  6739. height:35px;
  6740. display:flex;
  6741. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6742. font-weight:400;
  6743. font-style:normal;
  6744. font-size:12px;
  6745. color:#606266;
  6746. }
  6747. #u21033 .text {
  6748. position:absolute;
  6749. align-self:center;
  6750. padding:2px 2px 2px 0px;
  6751. box-sizing:border-box;
  6752. width:100%;
  6753. }
  6754. #u21033_text {
  6755. border-width:0px;
  6756. word-wrap:break-word;
  6757. text-transform:none;
  6758. visibility:hidden;
  6759. }
  6760. #u21034_img {
  6761. border-width:0px;
  6762. position:absolute;
  6763. left:0px;
  6764. top:0px;
  6765. width:54px;
  6766. height:35px;
  6767. }
  6768. #u21034 {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:1388px;
  6772. top:152px;
  6773. width:54px;
  6774. height:35px;
  6775. display:flex;
  6776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:12px;
  6780. color:#02A7F0;
  6781. }
  6782. #u21034 .text {
  6783. position:absolute;
  6784. align-self:center;
  6785. padding:2px 2px 2px 0px;
  6786. box-sizing:border-box;
  6787. width:100%;
  6788. }
  6789. #u21034_text {
  6790. border-width:0px;
  6791. word-wrap:break-word;
  6792. text-transform:none;
  6793. visibility:hidden;
  6794. }
  6795. #u21035_img {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:30px;
  6801. height:35px;
  6802. }
  6803. #u21035 {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:0px;
  6807. top:187px;
  6808. width:30px;
  6809. height:35px;
  6810. display:flex;
  6811. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6812. font-weight:400;
  6813. font-style:normal;
  6814. font-size:12px;
  6815. color:#606266;
  6816. }
  6817. #u21035 .text {
  6818. position:absolute;
  6819. align-self:center;
  6820. padding:2px 2px 2px 0px;
  6821. box-sizing:border-box;
  6822. width:100%;
  6823. }
  6824. #u21035_text {
  6825. border-width:0px;
  6826. word-wrap:break-word;
  6827. text-transform:none;
  6828. visibility:hidden;
  6829. }
  6830. #u21036_img {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:0px;
  6834. top:0px;
  6835. width:58px;
  6836. height:35px;
  6837. }
  6838. #u21036 {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:30px;
  6842. top:187px;
  6843. width:58px;
  6844. height:35px;
  6845. display:flex;
  6846. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6847. font-weight:400;
  6848. font-style:normal;
  6849. font-size:12px;
  6850. color:#606266;
  6851. }
  6852. #u21036 .text {
  6853. position:absolute;
  6854. align-self:center;
  6855. padding:2px 2px 2px 0px;
  6856. box-sizing:border-box;
  6857. width:100%;
  6858. }
  6859. #u21036_text {
  6860. border-width:0px;
  6861. word-wrap:break-word;
  6862. text-transform:none;
  6863. visibility:hidden;
  6864. }
  6865. #u21037_img {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:0px;
  6869. top:0px;
  6870. width:60px;
  6871. height:35px;
  6872. }
  6873. #u21037 {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:88px;
  6877. top:187px;
  6878. width:60px;
  6879. height:35px;
  6880. display:flex;
  6881. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. font-size:12px;
  6885. color:#606266;
  6886. }
  6887. #u21037 .text {
  6888. position:absolute;
  6889. align-self:center;
  6890. padding:2px 2px 2px 0px;
  6891. box-sizing:border-box;
  6892. width:100%;
  6893. }
  6894. #u21037_text {
  6895. border-width:0px;
  6896. word-wrap:break-word;
  6897. text-transform:none;
  6898. visibility:hidden;
  6899. }
  6900. #u21038_img {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:60px;
  6906. height:35px;
  6907. }
  6908. #u21038 {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:148px;
  6912. top:187px;
  6913. width:60px;
  6914. height:35px;
  6915. display:flex;
  6916. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6917. font-weight:400;
  6918. font-style:normal;
  6919. font-size:12px;
  6920. color:#606266;
  6921. }
  6922. #u21038 .text {
  6923. position:absolute;
  6924. align-self:center;
  6925. padding:2px 2px 2px 0px;
  6926. box-sizing:border-box;
  6927. width:100%;
  6928. }
  6929. #u21038_text {
  6930. border-width:0px;
  6931. word-wrap:break-word;
  6932. text-transform:none;
  6933. visibility:hidden;
  6934. }
  6935. #u21039_img {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:60px;
  6941. height:35px;
  6942. }
  6943. #u21039 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:208px;
  6947. top:187px;
  6948. width:60px;
  6949. height:35px;
  6950. display:flex;
  6951. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6952. font-weight:400;
  6953. font-style:normal;
  6954. font-size:12px;
  6955. color:#606266;
  6956. }
  6957. #u21039 .text {
  6958. position:absolute;
  6959. align-self:center;
  6960. padding:2px 2px 2px 0px;
  6961. box-sizing:border-box;
  6962. width:100%;
  6963. }
  6964. #u21039_text {
  6965. border-width:0px;
  6966. word-wrap:break-word;
  6967. text-transform:none;
  6968. visibility:hidden;
  6969. }
  6970. #u21040_img {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:0px;
  6974. top:0px;
  6975. width:60px;
  6976. height:35px;
  6977. }
  6978. #u21040 {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:268px;
  6982. top:187px;
  6983. width:60px;
  6984. height:35px;
  6985. display:flex;
  6986. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6987. font-weight:400;
  6988. font-style:normal;
  6989. font-size:12px;
  6990. color:#606266;
  6991. }
  6992. #u21040 .text {
  6993. position:absolute;
  6994. align-self:center;
  6995. padding:2px 2px 2px 0px;
  6996. box-sizing:border-box;
  6997. width:100%;
  6998. }
  6999. #u21040_text {
  7000. border-width:0px;
  7001. word-wrap:break-word;
  7002. text-transform:none;
  7003. visibility:hidden;
  7004. }
  7005. #u21041_img {
  7006. border-width:0px;
  7007. position:absolute;
  7008. left:0px;
  7009. top:0px;
  7010. width:58px;
  7011. height:35px;
  7012. }
  7013. #u21041 {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:328px;
  7017. top:187px;
  7018. width:58px;
  7019. height:35px;
  7020. display:flex;
  7021. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7022. font-weight:400;
  7023. font-style:normal;
  7024. font-size:12px;
  7025. color:#606266;
  7026. }
  7027. #u21041 .text {
  7028. position:absolute;
  7029. align-self:center;
  7030. padding:2px 2px 2px 0px;
  7031. box-sizing:border-box;
  7032. width:100%;
  7033. }
  7034. #u21041_text {
  7035. border-width:0px;
  7036. word-wrap:break-word;
  7037. text-transform:none;
  7038. visibility:hidden;
  7039. }
  7040. #u21042_img {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:58px;
  7046. height:35px;
  7047. }
  7048. #u21042 {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:386px;
  7052. top:187px;
  7053. width:58px;
  7054. height:35px;
  7055. display:flex;
  7056. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7057. font-weight:400;
  7058. font-style:normal;
  7059. font-size:12px;
  7060. color:#606266;
  7061. }
  7062. #u21042 .text {
  7063. position:absolute;
  7064. align-self:center;
  7065. padding:2px 2px 2px 0px;
  7066. box-sizing:border-box;
  7067. width:100%;
  7068. }
  7069. #u21042_text {
  7070. border-width:0px;
  7071. word-wrap:break-word;
  7072. text-transform:none;
  7073. visibility:hidden;
  7074. }
  7075. #u21043_img {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:0px;
  7079. top:0px;
  7080. width:58px;
  7081. height:35px;
  7082. }
  7083. #u21043 {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:444px;
  7087. top:187px;
  7088. width:58px;
  7089. height:35px;
  7090. display:flex;
  7091. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7092. font-weight:400;
  7093. font-style:normal;
  7094. font-size:12px;
  7095. color:#606266;
  7096. }
  7097. #u21043 .text {
  7098. position:absolute;
  7099. align-self:center;
  7100. padding:2px 2px 2px 0px;
  7101. box-sizing:border-box;
  7102. width:100%;
  7103. }
  7104. #u21043_text {
  7105. border-width:0px;
  7106. word-wrap:break-word;
  7107. text-transform:none;
  7108. visibility:hidden;
  7109. }
  7110. #u21044_img {
  7111. border-width:0px;
  7112. position:absolute;
  7113. left:0px;
  7114. top:0px;
  7115. width:58px;
  7116. height:35px;
  7117. }
  7118. #u21044 {
  7119. border-width:0px;
  7120. position:absolute;
  7121. left:502px;
  7122. top:187px;
  7123. width:58px;
  7124. height:35px;
  7125. display:flex;
  7126. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7127. font-weight:400;
  7128. font-style:normal;
  7129. font-size:12px;
  7130. color:#606266;
  7131. }
  7132. #u21044 .text {
  7133. position:absolute;
  7134. align-self:center;
  7135. padding:2px 2px 2px 0px;
  7136. box-sizing:border-box;
  7137. width:100%;
  7138. }
  7139. #u21044_text {
  7140. border-width:0px;
  7141. word-wrap:break-word;
  7142. text-transform:none;
  7143. visibility:hidden;
  7144. }
  7145. #u21045_img {
  7146. border-width:0px;
  7147. position:absolute;
  7148. left:0px;
  7149. top:0px;
  7150. width:58px;
  7151. height:35px;
  7152. }
  7153. #u21045 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:560px;
  7157. top:187px;
  7158. width:58px;
  7159. height:35px;
  7160. display:flex;
  7161. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:12px;
  7165. color:#606266;
  7166. }
  7167. #u21045 .text {
  7168. position:absolute;
  7169. align-self:center;
  7170. padding:2px 2px 2px 0px;
  7171. box-sizing:border-box;
  7172. width:100%;
  7173. }
  7174. #u21045_text {
  7175. border-width:0px;
  7176. word-wrap:break-word;
  7177. text-transform:none;
  7178. visibility:hidden;
  7179. }
  7180. #u21046_img {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:0px;
  7184. top:0px;
  7185. width:58px;
  7186. height:35px;
  7187. }
  7188. #u21046 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:618px;
  7192. top:187px;
  7193. width:58px;
  7194. height:35px;
  7195. display:flex;
  7196. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7197. font-weight:400;
  7198. font-style:normal;
  7199. font-size:12px;
  7200. color:#606266;
  7201. }
  7202. #u21046 .text {
  7203. position:absolute;
  7204. align-self:center;
  7205. padding:2px 2px 2px 0px;
  7206. box-sizing:border-box;
  7207. width:100%;
  7208. }
  7209. #u21046_text {
  7210. border-width:0px;
  7211. word-wrap:break-word;
  7212. text-transform:none;
  7213. visibility:hidden;
  7214. }
  7215. #u21047_img {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:0px;
  7219. top:0px;
  7220. width:58px;
  7221. height:35px;
  7222. }
  7223. #u21047 {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:676px;
  7227. top:187px;
  7228. width:58px;
  7229. height:35px;
  7230. display:flex;
  7231. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7232. font-weight:400;
  7233. font-style:normal;
  7234. font-size:12px;
  7235. color:#606266;
  7236. }
  7237. #u21047 .text {
  7238. position:absolute;
  7239. align-self:center;
  7240. padding:2px 2px 2px 0px;
  7241. box-sizing:border-box;
  7242. width:100%;
  7243. }
  7244. #u21047_text {
  7245. border-width:0px;
  7246. word-wrap:break-word;
  7247. text-transform:none;
  7248. visibility:hidden;
  7249. }
  7250. #u21048_img {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:0px;
  7254. top:0px;
  7255. width:58px;
  7256. height:35px;
  7257. }
  7258. #u21048 {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:734px;
  7262. top:187px;
  7263. width:58px;
  7264. height:35px;
  7265. display:flex;
  7266. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7267. font-weight:400;
  7268. font-style:normal;
  7269. font-size:12px;
  7270. color:#606266;
  7271. }
  7272. #u21048 .text {
  7273. position:absolute;
  7274. align-self:center;
  7275. padding:2px 2px 2px 0px;
  7276. box-sizing:border-box;
  7277. width:100%;
  7278. }
  7279. #u21048_text {
  7280. border-width:0px;
  7281. word-wrap:break-word;
  7282. text-transform:none;
  7283. visibility:hidden;
  7284. }
  7285. #u21049_img {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:0px;
  7289. top:0px;
  7290. width:58px;
  7291. height:35px;
  7292. }
  7293. #u21049 {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:792px;
  7297. top:187px;
  7298. width:58px;
  7299. height:35px;
  7300. display:flex;
  7301. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7302. font-weight:400;
  7303. font-style:normal;
  7304. font-size:12px;
  7305. color:#606266;
  7306. }
  7307. #u21049 .text {
  7308. position:absolute;
  7309. align-self:center;
  7310. padding:2px 2px 2px 0px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u21049_text {
  7315. border-width:0px;
  7316. word-wrap:break-word;
  7317. text-transform:none;
  7318. visibility:hidden;
  7319. }
  7320. #u21050_img {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:58px;
  7326. height:35px;
  7327. }
  7328. #u21050 {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:850px;
  7332. top:187px;
  7333. width:58px;
  7334. height:35px;
  7335. display:flex;
  7336. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7337. font-weight:400;
  7338. font-style:normal;
  7339. font-size:12px;
  7340. color:#606266;
  7341. }
  7342. #u21050 .text {
  7343. position:absolute;
  7344. align-self:center;
  7345. padding:2px 2px 2px 0px;
  7346. box-sizing:border-box;
  7347. width:100%;
  7348. }
  7349. #u21050_text {
  7350. border-width:0px;
  7351. word-wrap:break-word;
  7352. text-transform:none;
  7353. visibility:hidden;
  7354. }
  7355. #u21051_img {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:0px;
  7359. top:0px;
  7360. width:60px;
  7361. height:35px;
  7362. }
  7363. #u21051 {
  7364. border-width:0px;
  7365. position:absolute;
  7366. left:908px;
  7367. top:187px;
  7368. width:60px;
  7369. height:35px;
  7370. display:flex;
  7371. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7372. font-weight:400;
  7373. font-style:normal;
  7374. font-size:12px;
  7375. color:#606266;
  7376. }
  7377. #u21051 .text {
  7378. position:absolute;
  7379. align-self:center;
  7380. padding:2px 2px 2px 0px;
  7381. box-sizing:border-box;
  7382. width:100%;
  7383. }
  7384. #u21051_text {
  7385. border-width:0px;
  7386. word-wrap:break-word;
  7387. text-transform:none;
  7388. visibility:hidden;
  7389. }
  7390. #u21052_img {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:0px;
  7394. top:0px;
  7395. width:60px;
  7396. height:35px;
  7397. }
  7398. #u21052 {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:968px;
  7402. top:187px;
  7403. width:60px;
  7404. height:35px;
  7405. display:flex;
  7406. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7407. font-weight:400;
  7408. font-style:normal;
  7409. font-size:12px;
  7410. color:#606266;
  7411. }
  7412. #u21052 .text {
  7413. position:absolute;
  7414. align-self:center;
  7415. padding:2px 2px 2px 0px;
  7416. box-sizing:border-box;
  7417. width:100%;
  7418. }
  7419. #u21052_text {
  7420. border-width:0px;
  7421. word-wrap:break-word;
  7422. text-transform:none;
  7423. visibility:hidden;
  7424. }
  7425. #u21053_img {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:0px;
  7429. top:0px;
  7430. width:60px;
  7431. height:35px;
  7432. }
  7433. #u21053 {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:1028px;
  7437. top:187px;
  7438. width:60px;
  7439. height:35px;
  7440. display:flex;
  7441. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7442. font-weight:400;
  7443. font-style:normal;
  7444. font-size:12px;
  7445. color:#606266;
  7446. }
  7447. #u21053 .text {
  7448. position:absolute;
  7449. align-self:center;
  7450. padding:2px 2px 2px 0px;
  7451. box-sizing:border-box;
  7452. width:100%;
  7453. }
  7454. #u21053_text {
  7455. border-width:0px;
  7456. word-wrap:break-word;
  7457. text-transform:none;
  7458. visibility:hidden;
  7459. }
  7460. #u21054_img {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:0px;
  7464. top:0px;
  7465. width:60px;
  7466. height:35px;
  7467. }
  7468. #u21054 {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:1088px;
  7472. top:187px;
  7473. width:60px;
  7474. height:35px;
  7475. display:flex;
  7476. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7477. font-weight:400;
  7478. font-style:normal;
  7479. font-size:12px;
  7480. color:#606266;
  7481. }
  7482. #u21054 .text {
  7483. position:absolute;
  7484. align-self:center;
  7485. padding:2px 2px 2px 0px;
  7486. box-sizing:border-box;
  7487. width:100%;
  7488. }
  7489. #u21054_text {
  7490. border-width:0px;
  7491. word-wrap:break-word;
  7492. text-transform:none;
  7493. visibility:hidden;
  7494. }
  7495. #u21055_img {
  7496. border-width:0px;
  7497. position:absolute;
  7498. left:0px;
  7499. top:0px;
  7500. width:60px;
  7501. height:35px;
  7502. }
  7503. #u21055 {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:1148px;
  7507. top:187px;
  7508. width:60px;
  7509. height:35px;
  7510. display:flex;
  7511. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7512. font-weight:400;
  7513. font-style:normal;
  7514. font-size:12px;
  7515. color:#606266;
  7516. }
  7517. #u21055 .text {
  7518. position:absolute;
  7519. align-self:center;
  7520. padding:2px 2px 2px 0px;
  7521. box-sizing:border-box;
  7522. width:100%;
  7523. }
  7524. #u21055_text {
  7525. border-width:0px;
  7526. word-wrap:break-word;
  7527. text-transform:none;
  7528. visibility:hidden;
  7529. }
  7530. #u21056_img {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:0px;
  7534. top:0px;
  7535. width:60px;
  7536. height:35px;
  7537. }
  7538. #u21056 {
  7539. border-width:0px;
  7540. position:absolute;
  7541. left:1208px;
  7542. top:187px;
  7543. width:60px;
  7544. height:35px;
  7545. display:flex;
  7546. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7547. font-weight:400;
  7548. font-style:normal;
  7549. font-size:12px;
  7550. color:#606266;
  7551. }
  7552. #u21056 .text {
  7553. position:absolute;
  7554. align-self:center;
  7555. padding:2px 2px 2px 0px;
  7556. box-sizing:border-box;
  7557. width:100%;
  7558. }
  7559. #u21056_text {
  7560. border-width:0px;
  7561. word-wrap:break-word;
  7562. text-transform:none;
  7563. visibility:hidden;
  7564. }
  7565. #u21057_img {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:0px;
  7569. top:0px;
  7570. width:60px;
  7571. height:35px;
  7572. }
  7573. #u21057 {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:1268px;
  7577. top:187px;
  7578. width:60px;
  7579. height:35px;
  7580. display:flex;
  7581. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7582. font-weight:400;
  7583. font-style:normal;
  7584. font-size:12px;
  7585. color:#606266;
  7586. }
  7587. #u21057 .text {
  7588. position:absolute;
  7589. align-self:center;
  7590. padding:2px 2px 2px 0px;
  7591. box-sizing:border-box;
  7592. width:100%;
  7593. }
  7594. #u21057_text {
  7595. border-width:0px;
  7596. word-wrap:break-word;
  7597. text-transform:none;
  7598. visibility:hidden;
  7599. }
  7600. #u21058_img {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:0px;
  7604. top:0px;
  7605. width:60px;
  7606. height:35px;
  7607. }
  7608. #u21058 {
  7609. border-width:0px;
  7610. position:absolute;
  7611. left:1328px;
  7612. top:187px;
  7613. width:60px;
  7614. height:35px;
  7615. display:flex;
  7616. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7617. font-weight:400;
  7618. font-style:normal;
  7619. font-size:12px;
  7620. color:#606266;
  7621. }
  7622. #u21058 .text {
  7623. position:absolute;
  7624. align-self:center;
  7625. padding:2px 2px 2px 0px;
  7626. box-sizing:border-box;
  7627. width:100%;
  7628. }
  7629. #u21058_text {
  7630. border-width:0px;
  7631. word-wrap:break-word;
  7632. text-transform:none;
  7633. visibility:hidden;
  7634. }
  7635. #u21059_img {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:0px;
  7639. top:0px;
  7640. width:54px;
  7641. height:35px;
  7642. }
  7643. #u21059 {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:1388px;
  7647. top:187px;
  7648. width:54px;
  7649. height:35px;
  7650. display:flex;
  7651. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:12px;
  7655. color:#606266;
  7656. }
  7657. #u21059 .text {
  7658. position:absolute;
  7659. align-self:center;
  7660. padding:2px 2px 2px 0px;
  7661. box-sizing:border-box;
  7662. width:100%;
  7663. }
  7664. #u21059_text {
  7665. border-width:0px;
  7666. word-wrap:break-word;
  7667. text-transform:none;
  7668. visibility:hidden;
  7669. }
  7670. #u21060_img {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:0px;
  7674. top:0px;
  7675. width:30px;
  7676. height:38px;
  7677. }
  7678. #u21060 {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:0px;
  7682. top:222px;
  7683. width:30px;
  7684. height:38px;
  7685. display:flex;
  7686. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7687. font-weight:400;
  7688. font-style:normal;
  7689. font-size:12px;
  7690. color:#606266;
  7691. }
  7692. #u21060 .text {
  7693. position:absolute;
  7694. align-self:center;
  7695. padding:2px 2px 2px 0px;
  7696. box-sizing:border-box;
  7697. width:100%;
  7698. }
  7699. #u21060_text {
  7700. border-width:0px;
  7701. word-wrap:break-word;
  7702. text-transform:none;
  7703. visibility:hidden;
  7704. }
  7705. #u21061_img {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:0px;
  7709. top:0px;
  7710. width:58px;
  7711. height:38px;
  7712. }
  7713. #u21061 {
  7714. border-width:0px;
  7715. position:absolute;
  7716. left:30px;
  7717. top:222px;
  7718. width:58px;
  7719. height:38px;
  7720. display:flex;
  7721. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7722. font-weight:400;
  7723. font-style:normal;
  7724. font-size:12px;
  7725. color:#606266;
  7726. }
  7727. #u21061 .text {
  7728. position:absolute;
  7729. align-self:center;
  7730. padding:2px 2px 2px 0px;
  7731. box-sizing:border-box;
  7732. width:100%;
  7733. }
  7734. #u21061_text {
  7735. border-width:0px;
  7736. word-wrap:break-word;
  7737. text-transform:none;
  7738. visibility:hidden;
  7739. }
  7740. #u21062_img {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:0px;
  7744. top:0px;
  7745. width:60px;
  7746. height:38px;
  7747. }
  7748. #u21062 {
  7749. border-width:0px;
  7750. position:absolute;
  7751. left:88px;
  7752. top:222px;
  7753. width:60px;
  7754. height:38px;
  7755. display:flex;
  7756. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7757. font-weight:400;
  7758. font-style:normal;
  7759. font-size:12px;
  7760. color:#606266;
  7761. }
  7762. #u21062 .text {
  7763. position:absolute;
  7764. align-self:center;
  7765. padding:2px 2px 2px 0px;
  7766. box-sizing:border-box;
  7767. width:100%;
  7768. }
  7769. #u21062_text {
  7770. border-width:0px;
  7771. word-wrap:break-word;
  7772. text-transform:none;
  7773. visibility:hidden;
  7774. }
  7775. #u21063_img {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:0px;
  7779. top:0px;
  7780. width:60px;
  7781. height:38px;
  7782. }
  7783. #u21063 {
  7784. border-width:0px;
  7785. position:absolute;
  7786. left:148px;
  7787. top:222px;
  7788. width:60px;
  7789. height:38px;
  7790. display:flex;
  7791. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7792. font-weight:400;
  7793. font-style:normal;
  7794. font-size:12px;
  7795. color:#606266;
  7796. }
  7797. #u21063 .text {
  7798. position:absolute;
  7799. align-self:center;
  7800. padding:2px 2px 2px 0px;
  7801. box-sizing:border-box;
  7802. width:100%;
  7803. }
  7804. #u21063_text {
  7805. border-width:0px;
  7806. word-wrap:break-word;
  7807. text-transform:none;
  7808. visibility:hidden;
  7809. }
  7810. #u21064_img {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:60px;
  7816. height:38px;
  7817. }
  7818. #u21064 {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:208px;
  7822. top:222px;
  7823. width:60px;
  7824. height:38px;
  7825. display:flex;
  7826. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7827. font-weight:400;
  7828. font-style:normal;
  7829. font-size:12px;
  7830. color:#606266;
  7831. }
  7832. #u21064 .text {
  7833. position:absolute;
  7834. align-self:center;
  7835. padding:2px 2px 2px 0px;
  7836. box-sizing:border-box;
  7837. width:100%;
  7838. }
  7839. #u21064_text {
  7840. border-width:0px;
  7841. word-wrap:break-word;
  7842. text-transform:none;
  7843. visibility:hidden;
  7844. }
  7845. #u21065_img {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:0px;
  7849. top:0px;
  7850. width:60px;
  7851. height:38px;
  7852. }
  7853. #u21065 {
  7854. border-width:0px;
  7855. position:absolute;
  7856. left:268px;
  7857. top:222px;
  7858. width:60px;
  7859. height:38px;
  7860. display:flex;
  7861. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7862. font-weight:400;
  7863. font-style:normal;
  7864. font-size:12px;
  7865. color:#606266;
  7866. }
  7867. #u21065 .text {
  7868. position:absolute;
  7869. align-self:center;
  7870. padding:2px 2px 2px 0px;
  7871. box-sizing:border-box;
  7872. width:100%;
  7873. }
  7874. #u21065_text {
  7875. border-width:0px;
  7876. word-wrap:break-word;
  7877. text-transform:none;
  7878. visibility:hidden;
  7879. }
  7880. #u21066_img {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:0px;
  7884. top:0px;
  7885. width:58px;
  7886. height:38px;
  7887. }
  7888. #u21066 {
  7889. border-width:0px;
  7890. position:absolute;
  7891. left:328px;
  7892. top:222px;
  7893. width:58px;
  7894. height:38px;
  7895. display:flex;
  7896. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7897. font-weight:400;
  7898. font-style:normal;
  7899. font-size:12px;
  7900. color:#606266;
  7901. }
  7902. #u21066 .text {
  7903. position:absolute;
  7904. align-self:center;
  7905. padding:2px 2px 2px 0px;
  7906. box-sizing:border-box;
  7907. width:100%;
  7908. }
  7909. #u21066_text {
  7910. border-width:0px;
  7911. word-wrap:break-word;
  7912. text-transform:none;
  7913. visibility:hidden;
  7914. }
  7915. #u21067_img {
  7916. border-width:0px;
  7917. position:absolute;
  7918. left:0px;
  7919. top:0px;
  7920. width:58px;
  7921. height:38px;
  7922. }
  7923. #u21067 {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:386px;
  7927. top:222px;
  7928. width:58px;
  7929. height:38px;
  7930. display:flex;
  7931. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7932. font-weight:400;
  7933. font-style:normal;
  7934. font-size:12px;
  7935. color:#606266;
  7936. }
  7937. #u21067 .text {
  7938. position:absolute;
  7939. align-self:center;
  7940. padding:2px 2px 2px 0px;
  7941. box-sizing:border-box;
  7942. width:100%;
  7943. }
  7944. #u21067_text {
  7945. border-width:0px;
  7946. word-wrap:break-word;
  7947. text-transform:none;
  7948. visibility:hidden;
  7949. }
  7950. #u21068_img {
  7951. border-width:0px;
  7952. position:absolute;
  7953. left:0px;
  7954. top:0px;
  7955. width:58px;
  7956. height:38px;
  7957. }
  7958. #u21068 {
  7959. border-width:0px;
  7960. position:absolute;
  7961. left:444px;
  7962. top:222px;
  7963. width:58px;
  7964. height:38px;
  7965. display:flex;
  7966. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7967. font-weight:400;
  7968. font-style:normal;
  7969. font-size:12px;
  7970. color:#606266;
  7971. }
  7972. #u21068 .text {
  7973. position:absolute;
  7974. align-self:center;
  7975. padding:2px 2px 2px 0px;
  7976. box-sizing:border-box;
  7977. width:100%;
  7978. }
  7979. #u21068_text {
  7980. border-width:0px;
  7981. word-wrap:break-word;
  7982. text-transform:none;
  7983. visibility:hidden;
  7984. }
  7985. #u21069_img {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:0px;
  7989. top:0px;
  7990. width:58px;
  7991. height:38px;
  7992. }
  7993. #u21069 {
  7994. border-width:0px;
  7995. position:absolute;
  7996. left:502px;
  7997. top:222px;
  7998. width:58px;
  7999. height:38px;
  8000. display:flex;
  8001. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8002. font-weight:400;
  8003. font-style:normal;
  8004. font-size:12px;
  8005. color:#606266;
  8006. }
  8007. #u21069 .text {
  8008. position:absolute;
  8009. align-self:center;
  8010. padding:2px 2px 2px 0px;
  8011. box-sizing:border-box;
  8012. width:100%;
  8013. }
  8014. #u21069_text {
  8015. border-width:0px;
  8016. word-wrap:break-word;
  8017. text-transform:none;
  8018. visibility:hidden;
  8019. }
  8020. #u21070_img {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:58px;
  8026. height:38px;
  8027. }
  8028. #u21070 {
  8029. border-width:0px;
  8030. position:absolute;
  8031. left:560px;
  8032. top:222px;
  8033. width:58px;
  8034. height:38px;
  8035. display:flex;
  8036. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8037. font-weight:400;
  8038. font-style:normal;
  8039. font-size:12px;
  8040. color:#606266;
  8041. }
  8042. #u21070 .text {
  8043. position:absolute;
  8044. align-self:center;
  8045. padding:2px 2px 2px 0px;
  8046. box-sizing:border-box;
  8047. width:100%;
  8048. }
  8049. #u21070_text {
  8050. border-width:0px;
  8051. word-wrap:break-word;
  8052. text-transform:none;
  8053. visibility:hidden;
  8054. }
  8055. #u21071_img {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:0px;
  8059. top:0px;
  8060. width:58px;
  8061. height:38px;
  8062. }
  8063. #u21071 {
  8064. border-width:0px;
  8065. position:absolute;
  8066. left:618px;
  8067. top:222px;
  8068. width:58px;
  8069. height:38px;
  8070. display:flex;
  8071. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8072. font-weight:400;
  8073. font-style:normal;
  8074. font-size:12px;
  8075. color:#606266;
  8076. }
  8077. #u21071 .text {
  8078. position:absolute;
  8079. align-self:center;
  8080. padding:2px 2px 2px 0px;
  8081. box-sizing:border-box;
  8082. width:100%;
  8083. }
  8084. #u21071_text {
  8085. border-width:0px;
  8086. word-wrap:break-word;
  8087. text-transform:none;
  8088. visibility:hidden;
  8089. }
  8090. #u21072_img {
  8091. border-width:0px;
  8092. position:absolute;
  8093. left:0px;
  8094. top:0px;
  8095. width:58px;
  8096. height:38px;
  8097. }
  8098. #u21072 {
  8099. border-width:0px;
  8100. position:absolute;
  8101. left:676px;
  8102. top:222px;
  8103. width:58px;
  8104. height:38px;
  8105. display:flex;
  8106. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8107. font-weight:400;
  8108. font-style:normal;
  8109. font-size:12px;
  8110. color:#606266;
  8111. }
  8112. #u21072 .text {
  8113. position:absolute;
  8114. align-self:center;
  8115. padding:2px 2px 2px 0px;
  8116. box-sizing:border-box;
  8117. width:100%;
  8118. }
  8119. #u21072_text {
  8120. border-width:0px;
  8121. word-wrap:break-word;
  8122. text-transform:none;
  8123. visibility:hidden;
  8124. }
  8125. #u21073_img {
  8126. border-width:0px;
  8127. position:absolute;
  8128. left:0px;
  8129. top:0px;
  8130. width:58px;
  8131. height:38px;
  8132. }
  8133. #u21073 {
  8134. border-width:0px;
  8135. position:absolute;
  8136. left:734px;
  8137. top:222px;
  8138. width:58px;
  8139. height:38px;
  8140. display:flex;
  8141. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8142. font-weight:400;
  8143. font-style:normal;
  8144. font-size:12px;
  8145. color:#606266;
  8146. }
  8147. #u21073 .text {
  8148. position:absolute;
  8149. align-self:center;
  8150. padding:2px 2px 2px 0px;
  8151. box-sizing:border-box;
  8152. width:100%;
  8153. }
  8154. #u21073_text {
  8155. border-width:0px;
  8156. word-wrap:break-word;
  8157. text-transform:none;
  8158. visibility:hidden;
  8159. }
  8160. #u21074_img {
  8161. border-width:0px;
  8162. position:absolute;
  8163. left:0px;
  8164. top:0px;
  8165. width:58px;
  8166. height:38px;
  8167. }
  8168. #u21074 {
  8169. border-width:0px;
  8170. position:absolute;
  8171. left:792px;
  8172. top:222px;
  8173. width:58px;
  8174. height:38px;
  8175. display:flex;
  8176. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8177. font-weight:400;
  8178. font-style:normal;
  8179. font-size:12px;
  8180. color:#606266;
  8181. }
  8182. #u21074 .text {
  8183. position:absolute;
  8184. align-self:center;
  8185. padding:2px 2px 2px 0px;
  8186. box-sizing:border-box;
  8187. width:100%;
  8188. }
  8189. #u21074_text {
  8190. border-width:0px;
  8191. word-wrap:break-word;
  8192. text-transform:none;
  8193. visibility:hidden;
  8194. }
  8195. #u21075_img {
  8196. border-width:0px;
  8197. position:absolute;
  8198. left:0px;
  8199. top:0px;
  8200. width:58px;
  8201. height:38px;
  8202. }
  8203. #u21075 {
  8204. border-width:0px;
  8205. position:absolute;
  8206. left:850px;
  8207. top:222px;
  8208. width:58px;
  8209. height:38px;
  8210. display:flex;
  8211. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8212. font-weight:400;
  8213. font-style:normal;
  8214. font-size:12px;
  8215. color:#606266;
  8216. }
  8217. #u21075 .text {
  8218. position:absolute;
  8219. align-self:center;
  8220. padding:2px 2px 2px 0px;
  8221. box-sizing:border-box;
  8222. width:100%;
  8223. }
  8224. #u21075_text {
  8225. border-width:0px;
  8226. word-wrap:break-word;
  8227. text-transform:none;
  8228. visibility:hidden;
  8229. }
  8230. #u21076_img {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:0px;
  8234. top:0px;
  8235. width:60px;
  8236. height:38px;
  8237. }
  8238. #u21076 {
  8239. border-width:0px;
  8240. position:absolute;
  8241. left:908px;
  8242. top:222px;
  8243. width:60px;
  8244. height:38px;
  8245. display:flex;
  8246. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8247. font-weight:400;
  8248. font-style:normal;
  8249. font-size:12px;
  8250. color:#606266;
  8251. }
  8252. #u21076 .text {
  8253. position:absolute;
  8254. align-self:center;
  8255. padding:2px 2px 2px 0px;
  8256. box-sizing:border-box;
  8257. width:100%;
  8258. }
  8259. #u21076_text {
  8260. border-width:0px;
  8261. word-wrap:break-word;
  8262. text-transform:none;
  8263. visibility:hidden;
  8264. }
  8265. #u21077_img {
  8266. border-width:0px;
  8267. position:absolute;
  8268. left:0px;
  8269. top:0px;
  8270. width:60px;
  8271. height:38px;
  8272. }
  8273. #u21077 {
  8274. border-width:0px;
  8275. position:absolute;
  8276. left:968px;
  8277. top:222px;
  8278. width:60px;
  8279. height:38px;
  8280. display:flex;
  8281. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8282. font-weight:400;
  8283. font-style:normal;
  8284. font-size:12px;
  8285. color:#606266;
  8286. }
  8287. #u21077 .text {
  8288. position:absolute;
  8289. align-self:center;
  8290. padding:2px 2px 2px 0px;
  8291. box-sizing:border-box;
  8292. width:100%;
  8293. }
  8294. #u21077_text {
  8295. border-width:0px;
  8296. word-wrap:break-word;
  8297. text-transform:none;
  8298. visibility:hidden;
  8299. }
  8300. #u21078_img {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:0px;
  8304. top:0px;
  8305. width:60px;
  8306. height:38px;
  8307. }
  8308. #u21078 {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:1028px;
  8312. top:222px;
  8313. width:60px;
  8314. height:38px;
  8315. display:flex;
  8316. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8317. font-weight:400;
  8318. font-style:normal;
  8319. font-size:12px;
  8320. color:#606266;
  8321. }
  8322. #u21078 .text {
  8323. position:absolute;
  8324. align-self:center;
  8325. padding:2px 2px 2px 0px;
  8326. box-sizing:border-box;
  8327. width:100%;
  8328. }
  8329. #u21078_text {
  8330. border-width:0px;
  8331. word-wrap:break-word;
  8332. text-transform:none;
  8333. visibility:hidden;
  8334. }
  8335. #u21079_img {
  8336. border-width:0px;
  8337. position:absolute;
  8338. left:0px;
  8339. top:0px;
  8340. width:60px;
  8341. height:38px;
  8342. }
  8343. #u21079 {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:1088px;
  8347. top:222px;
  8348. width:60px;
  8349. height:38px;
  8350. display:flex;
  8351. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8352. font-weight:400;
  8353. font-style:normal;
  8354. font-size:12px;
  8355. color:#606266;
  8356. }
  8357. #u21079 .text {
  8358. position:absolute;
  8359. align-self:center;
  8360. padding:2px 2px 2px 0px;
  8361. box-sizing:border-box;
  8362. width:100%;
  8363. }
  8364. #u21079_text {
  8365. border-width:0px;
  8366. word-wrap:break-word;
  8367. text-transform:none;
  8368. visibility:hidden;
  8369. }
  8370. #u21080_img {
  8371. border-width:0px;
  8372. position:absolute;
  8373. left:0px;
  8374. top:0px;
  8375. width:60px;
  8376. height:38px;
  8377. }
  8378. #u21080 {
  8379. border-width:0px;
  8380. position:absolute;
  8381. left:1148px;
  8382. top:222px;
  8383. width:60px;
  8384. height:38px;
  8385. display:flex;
  8386. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8387. font-weight:400;
  8388. font-style:normal;
  8389. font-size:12px;
  8390. color:#606266;
  8391. }
  8392. #u21080 .text {
  8393. position:absolute;
  8394. align-self:center;
  8395. padding:2px 2px 2px 0px;
  8396. box-sizing:border-box;
  8397. width:100%;
  8398. }
  8399. #u21080_text {
  8400. border-width:0px;
  8401. word-wrap:break-word;
  8402. text-transform:none;
  8403. visibility:hidden;
  8404. }
  8405. #u21081_img {
  8406. border-width:0px;
  8407. position:absolute;
  8408. left:0px;
  8409. top:0px;
  8410. width:60px;
  8411. height:38px;
  8412. }
  8413. #u21081 {
  8414. border-width:0px;
  8415. position:absolute;
  8416. left:1208px;
  8417. top:222px;
  8418. width:60px;
  8419. height:38px;
  8420. display:flex;
  8421. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8422. font-weight:400;
  8423. font-style:normal;
  8424. font-size:12px;
  8425. color:#606266;
  8426. }
  8427. #u21081 .text {
  8428. position:absolute;
  8429. align-self:center;
  8430. padding:2px 2px 2px 0px;
  8431. box-sizing:border-box;
  8432. width:100%;
  8433. }
  8434. #u21081_text {
  8435. border-width:0px;
  8436. word-wrap:break-word;
  8437. text-transform:none;
  8438. visibility:hidden;
  8439. }
  8440. #u21082_img {
  8441. border-width:0px;
  8442. position:absolute;
  8443. left:0px;
  8444. top:0px;
  8445. width:60px;
  8446. height:38px;
  8447. }
  8448. #u21082 {
  8449. border-width:0px;
  8450. position:absolute;
  8451. left:1268px;
  8452. top:222px;
  8453. width:60px;
  8454. height:38px;
  8455. display:flex;
  8456. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8457. font-weight:400;
  8458. font-style:normal;
  8459. font-size:12px;
  8460. color:#606266;
  8461. }
  8462. #u21082 .text {
  8463. position:absolute;
  8464. align-self:center;
  8465. padding:2px 2px 2px 0px;
  8466. box-sizing:border-box;
  8467. width:100%;
  8468. }
  8469. #u21082_text {
  8470. border-width:0px;
  8471. word-wrap:break-word;
  8472. text-transform:none;
  8473. visibility:hidden;
  8474. }
  8475. #u21083_img {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:0px;
  8479. top:0px;
  8480. width:60px;
  8481. height:38px;
  8482. }
  8483. #u21083 {
  8484. border-width:0px;
  8485. position:absolute;
  8486. left:1328px;
  8487. top:222px;
  8488. width:60px;
  8489. height:38px;
  8490. display:flex;
  8491. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8492. font-weight:400;
  8493. font-style:normal;
  8494. font-size:12px;
  8495. color:#606266;
  8496. }
  8497. #u21083 .text {
  8498. position:absolute;
  8499. align-self:center;
  8500. padding:2px 2px 2px 0px;
  8501. box-sizing:border-box;
  8502. width:100%;
  8503. }
  8504. #u21083_text {
  8505. border-width:0px;
  8506. word-wrap:break-word;
  8507. text-transform:none;
  8508. visibility:hidden;
  8509. }
  8510. #u21084_img {
  8511. border-width:0px;
  8512. position:absolute;
  8513. left:0px;
  8514. top:0px;
  8515. width:54px;
  8516. height:38px;
  8517. }
  8518. #u21084 {
  8519. border-width:0px;
  8520. position:absolute;
  8521. left:1388px;
  8522. top:222px;
  8523. width:54px;
  8524. height:38px;
  8525. display:flex;
  8526. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8527. font-weight:400;
  8528. font-style:normal;
  8529. font-size:12px;
  8530. color:#606266;
  8531. }
  8532. #u21084 .text {
  8533. position:absolute;
  8534. align-self:center;
  8535. padding:2px 2px 2px 0px;
  8536. box-sizing:border-box;
  8537. width:100%;
  8538. }
  8539. #u21084_text {
  8540. border-width:0px;
  8541. word-wrap:break-word;
  8542. text-transform:none;
  8543. visibility:hidden;
  8544. }
  8545. #u21085_img {
  8546. border-width:0px;
  8547. position:absolute;
  8548. left:0px;
  8549. top:0px;
  8550. width:30px;
  8551. height:32px;
  8552. }
  8553. #u21085 {
  8554. border-width:0px;
  8555. position:absolute;
  8556. left:0px;
  8557. top:260px;
  8558. width:30px;
  8559. height:32px;
  8560. display:flex;
  8561. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8562. font-weight:400;
  8563. font-style:normal;
  8564. font-size:12px;
  8565. color:#606266;
  8566. }
  8567. #u21085 .text {
  8568. position:absolute;
  8569. align-self:center;
  8570. padding:2px 2px 2px 0px;
  8571. box-sizing:border-box;
  8572. width:100%;
  8573. }
  8574. #u21085_text {
  8575. border-width:0px;
  8576. word-wrap:break-word;
  8577. text-transform:none;
  8578. visibility:hidden;
  8579. }
  8580. #u21086_img {
  8581. border-width:0px;
  8582. position:absolute;
  8583. left:0px;
  8584. top:0px;
  8585. width:58px;
  8586. height:32px;
  8587. }
  8588. #u21086 {
  8589. border-width:0px;
  8590. position:absolute;
  8591. left:30px;
  8592. top:260px;
  8593. width:58px;
  8594. height:32px;
  8595. display:flex;
  8596. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8597. font-weight:400;
  8598. font-style:normal;
  8599. font-size:12px;
  8600. color:#606266;
  8601. }
  8602. #u21086 .text {
  8603. position:absolute;
  8604. align-self:center;
  8605. padding:2px 2px 2px 0px;
  8606. box-sizing:border-box;
  8607. width:100%;
  8608. }
  8609. #u21086_text {
  8610. border-width:0px;
  8611. word-wrap:break-word;
  8612. text-transform:none;
  8613. visibility:hidden;
  8614. }
  8615. #u21087_img {
  8616. border-width:0px;
  8617. position:absolute;
  8618. left:0px;
  8619. top:0px;
  8620. width:60px;
  8621. height:32px;
  8622. }
  8623. #u21087 {
  8624. border-width:0px;
  8625. position:absolute;
  8626. left:88px;
  8627. top:260px;
  8628. width:60px;
  8629. height:32px;
  8630. display:flex;
  8631. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8632. font-weight:400;
  8633. font-style:normal;
  8634. font-size:12px;
  8635. color:#606266;
  8636. }
  8637. #u21087 .text {
  8638. position:absolute;
  8639. align-self:center;
  8640. padding:2px 2px 2px 0px;
  8641. box-sizing:border-box;
  8642. width:100%;
  8643. }
  8644. #u21087_text {
  8645. border-width:0px;
  8646. word-wrap:break-word;
  8647. text-transform:none;
  8648. visibility:hidden;
  8649. }
  8650. #u21088_img {
  8651. border-width:0px;
  8652. position:absolute;
  8653. left:0px;
  8654. top:0px;
  8655. width:60px;
  8656. height:32px;
  8657. }
  8658. #u21088 {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:148px;
  8662. top:260px;
  8663. width:60px;
  8664. height:32px;
  8665. display:flex;
  8666. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8667. font-weight:400;
  8668. font-style:normal;
  8669. font-size:12px;
  8670. color:#606266;
  8671. }
  8672. #u21088 .text {
  8673. position:absolute;
  8674. align-self:center;
  8675. padding:2px 2px 2px 0px;
  8676. box-sizing:border-box;
  8677. width:100%;
  8678. }
  8679. #u21088_text {
  8680. border-width:0px;
  8681. word-wrap:break-word;
  8682. text-transform:none;
  8683. visibility:hidden;
  8684. }
  8685. #u21089_img {
  8686. border-width:0px;
  8687. position:absolute;
  8688. left:0px;
  8689. top:0px;
  8690. width:60px;
  8691. height:32px;
  8692. }
  8693. #u21089 {
  8694. border-width:0px;
  8695. position:absolute;
  8696. left:208px;
  8697. top:260px;
  8698. width:60px;
  8699. height:32px;
  8700. display:flex;
  8701. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8702. font-weight:400;
  8703. font-style:normal;
  8704. font-size:12px;
  8705. color:#606266;
  8706. }
  8707. #u21089 .text {
  8708. position:absolute;
  8709. align-self:center;
  8710. padding:2px 2px 2px 0px;
  8711. box-sizing:border-box;
  8712. width:100%;
  8713. }
  8714. #u21089_text {
  8715. border-width:0px;
  8716. word-wrap:break-word;
  8717. text-transform:none;
  8718. visibility:hidden;
  8719. }
  8720. #u21090_img {
  8721. border-width:0px;
  8722. position:absolute;
  8723. left:0px;
  8724. top:0px;
  8725. width:60px;
  8726. height:32px;
  8727. }
  8728. #u21090 {
  8729. border-width:0px;
  8730. position:absolute;
  8731. left:268px;
  8732. top:260px;
  8733. width:60px;
  8734. height:32px;
  8735. display:flex;
  8736. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8737. font-weight:400;
  8738. font-style:normal;
  8739. font-size:12px;
  8740. color:#606266;
  8741. }
  8742. #u21090 .text {
  8743. position:absolute;
  8744. align-self:center;
  8745. padding:2px 2px 2px 0px;
  8746. box-sizing:border-box;
  8747. width:100%;
  8748. }
  8749. #u21090_text {
  8750. border-width:0px;
  8751. word-wrap:break-word;
  8752. text-transform:none;
  8753. visibility:hidden;
  8754. }
  8755. #u21091_img {
  8756. border-width:0px;
  8757. position:absolute;
  8758. left:0px;
  8759. top:0px;
  8760. width:58px;
  8761. height:32px;
  8762. }
  8763. #u21091 {
  8764. border-width:0px;
  8765. position:absolute;
  8766. left:328px;
  8767. top:260px;
  8768. width:58px;
  8769. height:32px;
  8770. display:flex;
  8771. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8772. font-weight:400;
  8773. font-style:normal;
  8774. font-size:12px;
  8775. color:#606266;
  8776. }
  8777. #u21091 .text {
  8778. position:absolute;
  8779. align-self:center;
  8780. padding:2px 2px 2px 0px;
  8781. box-sizing:border-box;
  8782. width:100%;
  8783. }
  8784. #u21091_text {
  8785. border-width:0px;
  8786. word-wrap:break-word;
  8787. text-transform:none;
  8788. visibility:hidden;
  8789. }
  8790. #u21092_img {
  8791. border-width:0px;
  8792. position:absolute;
  8793. left:0px;
  8794. top:0px;
  8795. width:58px;
  8796. height:32px;
  8797. }
  8798. #u21092 {
  8799. border-width:0px;
  8800. position:absolute;
  8801. left:386px;
  8802. top:260px;
  8803. width:58px;
  8804. height:32px;
  8805. display:flex;
  8806. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8807. font-weight:400;
  8808. font-style:normal;
  8809. font-size:12px;
  8810. color:#606266;
  8811. }
  8812. #u21092 .text {
  8813. position:absolute;
  8814. align-self:center;
  8815. padding:2px 2px 2px 0px;
  8816. box-sizing:border-box;
  8817. width:100%;
  8818. }
  8819. #u21092_text {
  8820. border-width:0px;
  8821. word-wrap:break-word;
  8822. text-transform:none;
  8823. visibility:hidden;
  8824. }
  8825. #u21093_img {
  8826. border-width:0px;
  8827. position:absolute;
  8828. left:0px;
  8829. top:0px;
  8830. width:58px;
  8831. height:32px;
  8832. }
  8833. #u21093 {
  8834. border-width:0px;
  8835. position:absolute;
  8836. left:444px;
  8837. top:260px;
  8838. width:58px;
  8839. height:32px;
  8840. display:flex;
  8841. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8842. font-weight:400;
  8843. font-style:normal;
  8844. font-size:12px;
  8845. color:#606266;
  8846. }
  8847. #u21093 .text {
  8848. position:absolute;
  8849. align-self:center;
  8850. padding:2px 2px 2px 0px;
  8851. box-sizing:border-box;
  8852. width:100%;
  8853. }
  8854. #u21093_text {
  8855. border-width:0px;
  8856. word-wrap:break-word;
  8857. text-transform:none;
  8858. visibility:hidden;
  8859. }
  8860. #u21094_img {
  8861. border-width:0px;
  8862. position:absolute;
  8863. left:0px;
  8864. top:0px;
  8865. width:58px;
  8866. height:32px;
  8867. }
  8868. #u21094 {
  8869. border-width:0px;
  8870. position:absolute;
  8871. left:502px;
  8872. top:260px;
  8873. width:58px;
  8874. height:32px;
  8875. display:flex;
  8876. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8877. font-weight:400;
  8878. font-style:normal;
  8879. font-size:12px;
  8880. color:#606266;
  8881. }
  8882. #u21094 .text {
  8883. position:absolute;
  8884. align-self:center;
  8885. padding:2px 2px 2px 0px;
  8886. box-sizing:border-box;
  8887. width:100%;
  8888. }
  8889. #u21094_text {
  8890. border-width:0px;
  8891. word-wrap:break-word;
  8892. text-transform:none;
  8893. visibility:hidden;
  8894. }
  8895. #u21095_img {
  8896. border-width:0px;
  8897. position:absolute;
  8898. left:0px;
  8899. top:0px;
  8900. width:58px;
  8901. height:32px;
  8902. }
  8903. #u21095 {
  8904. border-width:0px;
  8905. position:absolute;
  8906. left:560px;
  8907. top:260px;
  8908. width:58px;
  8909. height:32px;
  8910. display:flex;
  8911. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8912. font-weight:400;
  8913. font-style:normal;
  8914. font-size:12px;
  8915. color:#606266;
  8916. }
  8917. #u21095 .text {
  8918. position:absolute;
  8919. align-self:center;
  8920. padding:2px 2px 2px 0px;
  8921. box-sizing:border-box;
  8922. width:100%;
  8923. }
  8924. #u21095_text {
  8925. border-width:0px;
  8926. word-wrap:break-word;
  8927. text-transform:none;
  8928. visibility:hidden;
  8929. }
  8930. #u21096_img {
  8931. border-width:0px;
  8932. position:absolute;
  8933. left:0px;
  8934. top:0px;
  8935. width:58px;
  8936. height:32px;
  8937. }
  8938. #u21096 {
  8939. border-width:0px;
  8940. position:absolute;
  8941. left:618px;
  8942. top:260px;
  8943. width:58px;
  8944. height:32px;
  8945. display:flex;
  8946. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8947. font-weight:400;
  8948. font-style:normal;
  8949. font-size:12px;
  8950. color:#606266;
  8951. }
  8952. #u21096 .text {
  8953. position:absolute;
  8954. align-self:center;
  8955. padding:2px 2px 2px 0px;
  8956. box-sizing:border-box;
  8957. width:100%;
  8958. }
  8959. #u21096_text {
  8960. border-width:0px;
  8961. word-wrap:break-word;
  8962. text-transform:none;
  8963. visibility:hidden;
  8964. }
  8965. #u21097_img {
  8966. border-width:0px;
  8967. position:absolute;
  8968. left:0px;
  8969. top:0px;
  8970. width:58px;
  8971. height:32px;
  8972. }
  8973. #u21097 {
  8974. border-width:0px;
  8975. position:absolute;
  8976. left:676px;
  8977. top:260px;
  8978. width:58px;
  8979. height:32px;
  8980. display:flex;
  8981. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8982. font-weight:400;
  8983. font-style:normal;
  8984. font-size:12px;
  8985. color:#606266;
  8986. }
  8987. #u21097 .text {
  8988. position:absolute;
  8989. align-self:center;
  8990. padding:2px 2px 2px 0px;
  8991. box-sizing:border-box;
  8992. width:100%;
  8993. }
  8994. #u21097_text {
  8995. border-width:0px;
  8996. word-wrap:break-word;
  8997. text-transform:none;
  8998. visibility:hidden;
  8999. }
  9000. #u21098_img {
  9001. border-width:0px;
  9002. position:absolute;
  9003. left:0px;
  9004. top:0px;
  9005. width:58px;
  9006. height:32px;
  9007. }
  9008. #u21098 {
  9009. border-width:0px;
  9010. position:absolute;
  9011. left:734px;
  9012. top:260px;
  9013. width:58px;
  9014. height:32px;
  9015. display:flex;
  9016. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9017. font-weight:400;
  9018. font-style:normal;
  9019. font-size:12px;
  9020. color:#606266;
  9021. }
  9022. #u21098 .text {
  9023. position:absolute;
  9024. align-self:center;
  9025. padding:2px 2px 2px 0px;
  9026. box-sizing:border-box;
  9027. width:100%;
  9028. }
  9029. #u21098_text {
  9030. border-width:0px;
  9031. word-wrap:break-word;
  9032. text-transform:none;
  9033. visibility:hidden;
  9034. }
  9035. #u21099_img {
  9036. border-width:0px;
  9037. position:absolute;
  9038. left:0px;
  9039. top:0px;
  9040. width:58px;
  9041. height:32px;
  9042. }
  9043. #u21099 {
  9044. border-width:0px;
  9045. position:absolute;
  9046. left:792px;
  9047. top:260px;
  9048. width:58px;
  9049. height:32px;
  9050. display:flex;
  9051. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9052. font-weight:400;
  9053. font-style:normal;
  9054. font-size:12px;
  9055. color:#606266;
  9056. }
  9057. #u21099 .text {
  9058. position:absolute;
  9059. align-self:center;
  9060. padding:2px 2px 2px 0px;
  9061. box-sizing:border-box;
  9062. width:100%;
  9063. }
  9064. #u21099_text {
  9065. border-width:0px;
  9066. word-wrap:break-word;
  9067. text-transform:none;
  9068. visibility:hidden;
  9069. }
  9070. #u21100_img {
  9071. border-width:0px;
  9072. position:absolute;
  9073. left:0px;
  9074. top:0px;
  9075. width:58px;
  9076. height:32px;
  9077. }
  9078. #u21100 {
  9079. border-width:0px;
  9080. position:absolute;
  9081. left:850px;
  9082. top:260px;
  9083. width:58px;
  9084. height:32px;
  9085. display:flex;
  9086. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9087. font-weight:400;
  9088. font-style:normal;
  9089. font-size:12px;
  9090. color:#606266;
  9091. }
  9092. #u21100 .text {
  9093. position:absolute;
  9094. align-self:center;
  9095. padding:2px 2px 2px 0px;
  9096. box-sizing:border-box;
  9097. width:100%;
  9098. }
  9099. #u21100_text {
  9100. border-width:0px;
  9101. word-wrap:break-word;
  9102. text-transform:none;
  9103. visibility:hidden;
  9104. }
  9105. #u21101_img {
  9106. border-width:0px;
  9107. position:absolute;
  9108. left:0px;
  9109. top:0px;
  9110. width:60px;
  9111. height:32px;
  9112. }
  9113. #u21101 {
  9114. border-width:0px;
  9115. position:absolute;
  9116. left:908px;
  9117. top:260px;
  9118. width:60px;
  9119. height:32px;
  9120. display:flex;
  9121. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9122. font-weight:400;
  9123. font-style:normal;
  9124. font-size:12px;
  9125. color:#606266;
  9126. }
  9127. #u21101 .text {
  9128. position:absolute;
  9129. align-self:center;
  9130. padding:2px 2px 2px 0px;
  9131. box-sizing:border-box;
  9132. width:100%;
  9133. }
  9134. #u21101_text {
  9135. border-width:0px;
  9136. word-wrap:break-word;
  9137. text-transform:none;
  9138. visibility:hidden;
  9139. }
  9140. #u21102_img {
  9141. border-width:0px;
  9142. position:absolute;
  9143. left:0px;
  9144. top:0px;
  9145. width:60px;
  9146. height:32px;
  9147. }
  9148. #u21102 {
  9149. border-width:0px;
  9150. position:absolute;
  9151. left:968px;
  9152. top:260px;
  9153. width:60px;
  9154. height:32px;
  9155. display:flex;
  9156. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9157. font-weight:400;
  9158. font-style:normal;
  9159. font-size:12px;
  9160. color:#606266;
  9161. }
  9162. #u21102 .text {
  9163. position:absolute;
  9164. align-self:center;
  9165. padding:2px 2px 2px 0px;
  9166. box-sizing:border-box;
  9167. width:100%;
  9168. }
  9169. #u21102_text {
  9170. border-width:0px;
  9171. word-wrap:break-word;
  9172. text-transform:none;
  9173. visibility:hidden;
  9174. }
  9175. #u21103_img {
  9176. border-width:0px;
  9177. position:absolute;
  9178. left:0px;
  9179. top:0px;
  9180. width:60px;
  9181. height:32px;
  9182. }
  9183. #u21103 {
  9184. border-width:0px;
  9185. position:absolute;
  9186. left:1028px;
  9187. top:260px;
  9188. width:60px;
  9189. height:32px;
  9190. display:flex;
  9191. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9192. font-weight:400;
  9193. font-style:normal;
  9194. font-size:12px;
  9195. color:#606266;
  9196. }
  9197. #u21103 .text {
  9198. position:absolute;
  9199. align-self:center;
  9200. padding:2px 2px 2px 0px;
  9201. box-sizing:border-box;
  9202. width:100%;
  9203. }
  9204. #u21103_text {
  9205. border-width:0px;
  9206. word-wrap:break-word;
  9207. text-transform:none;
  9208. visibility:hidden;
  9209. }
  9210. #u21104_img {
  9211. border-width:0px;
  9212. position:absolute;
  9213. left:0px;
  9214. top:0px;
  9215. width:60px;
  9216. height:32px;
  9217. }
  9218. #u21104 {
  9219. border-width:0px;
  9220. position:absolute;
  9221. left:1088px;
  9222. top:260px;
  9223. width:60px;
  9224. height:32px;
  9225. display:flex;
  9226. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9227. font-weight:400;
  9228. font-style:normal;
  9229. font-size:12px;
  9230. color:#606266;
  9231. }
  9232. #u21104 .text {
  9233. position:absolute;
  9234. align-self:center;
  9235. padding:2px 2px 2px 0px;
  9236. box-sizing:border-box;
  9237. width:100%;
  9238. }
  9239. #u21104_text {
  9240. border-width:0px;
  9241. word-wrap:break-word;
  9242. text-transform:none;
  9243. visibility:hidden;
  9244. }
  9245. #u21105_img {
  9246. border-width:0px;
  9247. position:absolute;
  9248. left:0px;
  9249. top:0px;
  9250. width:60px;
  9251. height:32px;
  9252. }
  9253. #u21105 {
  9254. border-width:0px;
  9255. position:absolute;
  9256. left:1148px;
  9257. top:260px;
  9258. width:60px;
  9259. height:32px;
  9260. display:flex;
  9261. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9262. font-weight:400;
  9263. font-style:normal;
  9264. font-size:12px;
  9265. color:#606266;
  9266. }
  9267. #u21105 .text {
  9268. position:absolute;
  9269. align-self:center;
  9270. padding:2px 2px 2px 0px;
  9271. box-sizing:border-box;
  9272. width:100%;
  9273. }
  9274. #u21105_text {
  9275. border-width:0px;
  9276. word-wrap:break-word;
  9277. text-transform:none;
  9278. visibility:hidden;
  9279. }
  9280. #u21106_img {
  9281. border-width:0px;
  9282. position:absolute;
  9283. left:0px;
  9284. top:0px;
  9285. width:60px;
  9286. height:32px;
  9287. }
  9288. #u21106 {
  9289. border-width:0px;
  9290. position:absolute;
  9291. left:1208px;
  9292. top:260px;
  9293. width:60px;
  9294. height:32px;
  9295. display:flex;
  9296. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9297. font-weight:400;
  9298. font-style:normal;
  9299. font-size:12px;
  9300. color:#606266;
  9301. }
  9302. #u21106 .text {
  9303. position:absolute;
  9304. align-self:center;
  9305. padding:2px 2px 2px 0px;
  9306. box-sizing:border-box;
  9307. width:100%;
  9308. }
  9309. #u21106_text {
  9310. border-width:0px;
  9311. word-wrap:break-word;
  9312. text-transform:none;
  9313. visibility:hidden;
  9314. }
  9315. #u21107_img {
  9316. border-width:0px;
  9317. position:absolute;
  9318. left:0px;
  9319. top:0px;
  9320. width:60px;
  9321. height:32px;
  9322. }
  9323. #u21107 {
  9324. border-width:0px;
  9325. position:absolute;
  9326. left:1268px;
  9327. top:260px;
  9328. width:60px;
  9329. height:32px;
  9330. display:flex;
  9331. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9332. font-weight:400;
  9333. font-style:normal;
  9334. font-size:12px;
  9335. color:#606266;
  9336. }
  9337. #u21107 .text {
  9338. position:absolute;
  9339. align-self:center;
  9340. padding:2px 2px 2px 0px;
  9341. box-sizing:border-box;
  9342. width:100%;
  9343. }
  9344. #u21107_text {
  9345. border-width:0px;
  9346. word-wrap:break-word;
  9347. text-transform:none;
  9348. visibility:hidden;
  9349. }
  9350. #u21108_img {
  9351. border-width:0px;
  9352. position:absolute;
  9353. left:0px;
  9354. top:0px;
  9355. width:60px;
  9356. height:32px;
  9357. }
  9358. #u21108 {
  9359. border-width:0px;
  9360. position:absolute;
  9361. left:1328px;
  9362. top:260px;
  9363. width:60px;
  9364. height:32px;
  9365. display:flex;
  9366. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9367. font-weight:400;
  9368. font-style:normal;
  9369. font-size:12px;
  9370. color:#606266;
  9371. }
  9372. #u21108 .text {
  9373. position:absolute;
  9374. align-self:center;
  9375. padding:2px 2px 2px 0px;
  9376. box-sizing:border-box;
  9377. width:100%;
  9378. }
  9379. #u21108_text {
  9380. border-width:0px;
  9381. word-wrap:break-word;
  9382. text-transform:none;
  9383. visibility:hidden;
  9384. }
  9385. #u21109_img {
  9386. border-width:0px;
  9387. position:absolute;
  9388. left:0px;
  9389. top:0px;
  9390. width:54px;
  9391. height:32px;
  9392. }
  9393. #u21109 {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:1388px;
  9397. top:260px;
  9398. width:54px;
  9399. height:32px;
  9400. display:flex;
  9401. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9402. font-weight:400;
  9403. font-style:normal;
  9404. font-size:12px;
  9405. color:#606266;
  9406. }
  9407. #u21109 .text {
  9408. position:absolute;
  9409. align-self:center;
  9410. padding:2px 2px 2px 0px;
  9411. box-sizing:border-box;
  9412. width:100%;
  9413. }
  9414. #u21109_text {
  9415. border-width:0px;
  9416. word-wrap:break-word;
  9417. text-transform:none;
  9418. visibility:hidden;
  9419. }
  9420. #u21110 {
  9421. border-width:0px;
  9422. position:absolute;
  9423. left:0px;
  9424. top:0px;
  9425. width:0px;
  9426. height:0px;
  9427. }
  9428. #u21111_div {
  9429. border-width:0px;
  9430. position:absolute;
  9431. left:0px;
  9432. top:0px;
  9433. width:59px;
  9434. height:30px;
  9435. background:inherit;
  9436. background-color:rgba(0, 153, 255, 1);
  9437. box-sizing:border-box;
  9438. border-width:1px;
  9439. border-style:solid;
  9440. border-color:rgba(0, 153, 255, 1);
  9441. border-radius:4px;
  9442. -moz-box-shadow:none;
  9443. -webkit-box-shadow:none;
  9444. box-shadow:none;
  9445. font-family:'Microsoft YaHei', sans-serif;
  9446. font-weight:400;
  9447. font-style:normal;
  9448. font-size:14px;
  9449. color:#FFFFFF;
  9450. }
  9451. #u21111 {
  9452. border-width:0px;
  9453. position:absolute;
  9454. left:649px;
  9455. top:279px;
  9456. width:59px;
  9457. height:30px;
  9458. display:flex;
  9459. font-family:'Microsoft YaHei', sans-serif;
  9460. font-weight:400;
  9461. font-style:normal;
  9462. font-size:14px;
  9463. color:#FFFFFF;
  9464. }
  9465. #u21111 .text {
  9466. position:absolute;
  9467. align-self:center;
  9468. padding:5px 15px 5px 15px;
  9469. box-sizing:border-box;
  9470. width:100%;
  9471. }
  9472. #u21111_text {
  9473. border-width:0px;
  9474. white-space:nowrap;
  9475. text-transform:none;
  9476. }
  9477. #u21112_div {
  9478. border-width:0px;
  9479. position:absolute;
  9480. left:0px;
  9481. top:0px;
  9482. width:55px;
  9483. height:30px;
  9484. background:inherit;
  9485. background-color:rgba(255, 255, 255, 1);
  9486. box-sizing:border-box;
  9487. border-width:1px;
  9488. border-style:solid;
  9489. border-color:rgba(170, 170, 170, 1);
  9490. border-radius:4px;
  9491. -moz-box-shadow:none;
  9492. -webkit-box-shadow:none;
  9493. box-shadow:none;
  9494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9495. font-weight:400;
  9496. font-style:normal;
  9497. font-size:12px;
  9498. color:#555555;
  9499. }
  9500. #u21112 {
  9501. border-width:0px;
  9502. position:absolute;
  9503. left:718px;
  9504. top:279px;
  9505. width:55px;
  9506. height:30px;
  9507. display:flex;
  9508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9509. font-weight:400;
  9510. font-style:normal;
  9511. font-size:12px;
  9512. color:#555555;
  9513. }
  9514. #u21112 .text {
  9515. position:absolute;
  9516. align-self:center;
  9517. padding:5px 15px 5px 15px;
  9518. box-sizing:border-box;
  9519. width:100%;
  9520. }
  9521. #u21112_text {
  9522. border-width:0px;
  9523. white-space:nowrap;
  9524. text-transform:none;
  9525. }
  9526. #u21113 {
  9527. border-width:0px;
  9528. position:absolute;
  9529. left:0px;
  9530. top:0px;
  9531. width:0px;
  9532. height:0px;
  9533. }
  9534. #u21114_div {
  9535. border-width:0px;
  9536. position:absolute;
  9537. left:0px;
  9538. top:0px;
  9539. width:140px;
  9540. height:30px;
  9541. background:inherit;
  9542. background-color:rgba(255, 255, 255, 1);
  9543. box-sizing:border-box;
  9544. border-width:1px;
  9545. border-style:solid;
  9546. border-color:rgba(215, 215, 215, 1);
  9547. border-radius:4px;
  9548. -moz-box-shadow:none;
  9549. -webkit-box-shadow:none;
  9550. box-shadow:none;
  9551. font-size:11px;
  9552. }
  9553. #u21114 {
  9554. border-width:0px;
  9555. position:absolute;
  9556. left:1247px;
  9557. top:240px;
  9558. width:140px;
  9559. height:30px;
  9560. display:flex;
  9561. font-size:11px;
  9562. }
  9563. #u21114 .text {
  9564. position:absolute;
  9565. align-self:center;
  9566. padding:2px 2px 2px 2px;
  9567. box-sizing:border-box;
  9568. width:100%;
  9569. }
  9570. #u21114_text {
  9571. border-width:0px;
  9572. word-wrap:break-word;
  9573. text-transform:none;
  9574. visibility:hidden;
  9575. }
  9576. #u21115_input {
  9577. position:absolute;
  9578. left:0px;
  9579. top:0px;
  9580. width:120px;
  9581. height:23px;
  9582. padding:2px 2px 2px 2px;
  9583. font-family:'ArialMT', 'Arial', sans-serif;
  9584. font-weight:400;
  9585. font-style:normal;
  9586. font-size:11px;
  9587. letter-spacing:normal;
  9588. color:#AAAAAA;
  9589. vertical-align:none;
  9590. text-align:left;
  9591. text-transform:none;
  9592. background-color:transparent;
  9593. border-color:transparent;
  9594. }
  9595. #u21115_input.disabled {
  9596. position:absolute;
  9597. left:0px;
  9598. top:0px;
  9599. width:120px;
  9600. height:23px;
  9601. padding:2px 2px 2px 2px;
  9602. font-family:'ArialMT', 'Arial', sans-serif;
  9603. font-weight:400;
  9604. font-style:normal;
  9605. font-size:11px;
  9606. letter-spacing:normal;
  9607. color:#AAAAAA;
  9608. vertical-align:none;
  9609. text-align:left;
  9610. text-transform:none;
  9611. background-color:transparent;
  9612. border-color:transparent;
  9613. }
  9614. #u21115_div {
  9615. border-width:0px;
  9616. position:absolute;
  9617. left:0px;
  9618. top:0px;
  9619. width:120px;
  9620. height:23px;
  9621. background:inherit;
  9622. background-color:rgba(255, 255, 255, 1);
  9623. border:none;
  9624. border-radius:0px;
  9625. -moz-box-shadow:none;
  9626. -webkit-box-shadow:none;
  9627. box-shadow:none;
  9628. font-size:11px;
  9629. color:#AAAAAA;
  9630. }
  9631. #u21115 {
  9632. border-width:0px;
  9633. position:absolute;
  9634. left:1254px;
  9635. top:242px;
  9636. width:120px;
  9637. height:23px;
  9638. display:flex;
  9639. font-size:11px;
  9640. color:#AAAAAA;
  9641. }
  9642. #u21115 .text {
  9643. position:absolute;
  9644. align-self:flex-start;
  9645. padding:2px 2px 2px 2px;
  9646. box-sizing:border-box;
  9647. width:100%;
  9648. }
  9649. #u21115_div.disabled {
  9650. border-width:0px;
  9651. position:absolute;
  9652. left:0px;
  9653. top:0px;
  9654. width:120px;
  9655. height:23px;
  9656. background:inherit;
  9657. background-color:rgba(240, 240, 240, 1);
  9658. border:none;
  9659. border-radius:0px;
  9660. -moz-box-shadow:none;
  9661. -webkit-box-shadow:none;
  9662. box-shadow:none;
  9663. font-size:11px;
  9664. color:#AAAAAA;
  9665. }
  9666. #u21115.disabled {
  9667. }
  9668. .u21115_input_option {
  9669. font-size:11px;
  9670. }
  9671. #u21116 {
  9672. border-width:0px;
  9673. position:absolute;
  9674. left:0px;
  9675. top:0px;
  9676. width:0px;
  9677. height:0px;
  9678. }
  9679. #u21117_div {
  9680. border-width:0px;
  9681. position:absolute;
  9682. left:0px;
  9683. top:0px;
  9684. width:140px;
  9685. height:30px;
  9686. background:inherit;
  9687. background-color:rgba(255, 255, 255, 1);
  9688. box-sizing:border-box;
  9689. border-width:1px;
  9690. border-style:solid;
  9691. border-color:rgba(215, 215, 215, 1);
  9692. border-radius:4px;
  9693. -moz-box-shadow:none;
  9694. -webkit-box-shadow:none;
  9695. box-shadow:none;
  9696. font-size:11px;
  9697. }
  9698. #u21117 {
  9699. border-width:0px;
  9700. position:absolute;
  9701. left:1097px;
  9702. top:240px;
  9703. width:140px;
  9704. height:30px;
  9705. display:flex;
  9706. font-size:11px;
  9707. }
  9708. #u21117 .text {
  9709. position:absolute;
  9710. align-self:center;
  9711. padding:2px 2px 2px 2px;
  9712. box-sizing:border-box;
  9713. width:100%;
  9714. }
  9715. #u21117_text {
  9716. border-width:0px;
  9717. word-wrap:break-word;
  9718. text-transform:none;
  9719. visibility:hidden;
  9720. }
  9721. #u21118_input {
  9722. position:absolute;
  9723. left:0px;
  9724. top:0px;
  9725. width:120px;
  9726. height:23px;
  9727. padding:2px 2px 2px 2px;
  9728. font-family:'ArialMT', 'Arial', sans-serif;
  9729. font-weight:400;
  9730. font-style:normal;
  9731. font-size:11px;
  9732. letter-spacing:normal;
  9733. color:#AAAAAA;
  9734. vertical-align:none;
  9735. text-align:left;
  9736. text-transform:none;
  9737. background-color:transparent;
  9738. border-color:transparent;
  9739. }
  9740. #u21118_input.disabled {
  9741. position:absolute;
  9742. left:0px;
  9743. top:0px;
  9744. width:120px;
  9745. height:23px;
  9746. padding:2px 2px 2px 2px;
  9747. font-family:'ArialMT', 'Arial', sans-serif;
  9748. font-weight:400;
  9749. font-style:normal;
  9750. font-size:11px;
  9751. letter-spacing:normal;
  9752. color:#AAAAAA;
  9753. vertical-align:none;
  9754. text-align:left;
  9755. text-transform:none;
  9756. background-color:transparent;
  9757. border-color:transparent;
  9758. }
  9759. #u21118_div {
  9760. border-width:0px;
  9761. position:absolute;
  9762. left:0px;
  9763. top:0px;
  9764. width:120px;
  9765. height:23px;
  9766. background:inherit;
  9767. background-color:rgba(255, 255, 255, 1);
  9768. border:none;
  9769. border-radius:0px;
  9770. -moz-box-shadow:none;
  9771. -webkit-box-shadow:none;
  9772. box-shadow:none;
  9773. font-size:11px;
  9774. color:#AAAAAA;
  9775. }
  9776. #u21118 {
  9777. border-width:0px;
  9778. position:absolute;
  9779. left:1104px;
  9780. top:242px;
  9781. width:120px;
  9782. height:23px;
  9783. display:flex;
  9784. font-size:11px;
  9785. color:#AAAAAA;
  9786. }
  9787. #u21118 .text {
  9788. position:absolute;
  9789. align-self:flex-start;
  9790. padding:2px 2px 2px 2px;
  9791. box-sizing:border-box;
  9792. width:100%;
  9793. }
  9794. #u21118_div.disabled {
  9795. border-width:0px;
  9796. position:absolute;
  9797. left:0px;
  9798. top:0px;
  9799. width:120px;
  9800. height:23px;
  9801. background:inherit;
  9802. background-color:rgba(240, 240, 240, 1);
  9803. border:none;
  9804. border-radius:0px;
  9805. -moz-box-shadow:none;
  9806. -webkit-box-shadow:none;
  9807. box-shadow:none;
  9808. font-size:11px;
  9809. color:#AAAAAA;
  9810. }
  9811. #u21118.disabled {
  9812. }
  9813. .u21118_input_option {
  9814. font-size:11px;
  9815. }
  9816. #u21119 {
  9817. border-width:0px;
  9818. position:absolute;
  9819. left:0px;
  9820. top:0px;
  9821. width:0px;
  9822. height:0px;
  9823. }
  9824. #u21120_div {
  9825. border-width:0px;
  9826. position:absolute;
  9827. left:0px;
  9828. top:0px;
  9829. width:140px;
  9830. height:30px;
  9831. background:inherit;
  9832. background-color:rgba(255, 255, 255, 1);
  9833. box-sizing:border-box;
  9834. border-width:1px;
  9835. border-style:solid;
  9836. border-color:rgba(215, 215, 215, 1);
  9837. border-radius:4px;
  9838. -moz-box-shadow:none;
  9839. -webkit-box-shadow:none;
  9840. box-shadow:none;
  9841. font-size:11px;
  9842. }
  9843. #u21120 {
  9844. border-width:0px;
  9845. position:absolute;
  9846. left:350px;
  9847. top:280px;
  9848. width:140px;
  9849. height:30px;
  9850. display:flex;
  9851. font-size:11px;
  9852. }
  9853. #u21120 .text {
  9854. position:absolute;
  9855. align-self:center;
  9856. padding:2px 2px 2px 2px;
  9857. box-sizing:border-box;
  9858. width:100%;
  9859. }
  9860. #u21120_text {
  9861. border-width:0px;
  9862. word-wrap:break-word;
  9863. text-transform:none;
  9864. visibility:hidden;
  9865. }
  9866. #u21121_input {
  9867. position:absolute;
  9868. left:0px;
  9869. top:0px;
  9870. width:120px;
  9871. height:23px;
  9872. padding:2px 2px 2px 2px;
  9873. font-family:'ArialMT', 'Arial', sans-serif;
  9874. font-weight:400;
  9875. font-style:normal;
  9876. font-size:11px;
  9877. letter-spacing:normal;
  9878. color:#AAAAAA;
  9879. vertical-align:none;
  9880. text-align:left;
  9881. text-transform:none;
  9882. background-color:transparent;
  9883. border-color:transparent;
  9884. }
  9885. #u21121_input.disabled {
  9886. position:absolute;
  9887. left:0px;
  9888. top:0px;
  9889. width:120px;
  9890. height:23px;
  9891. padding:2px 2px 2px 2px;
  9892. font-family:'ArialMT', 'Arial', sans-serif;
  9893. font-weight:400;
  9894. font-style:normal;
  9895. font-size:11px;
  9896. letter-spacing:normal;
  9897. color:#AAAAAA;
  9898. vertical-align:none;
  9899. text-align:left;
  9900. text-transform:none;
  9901. background-color:transparent;
  9902. border-color:transparent;
  9903. }
  9904. #u21121_div {
  9905. border-width:0px;
  9906. position:absolute;
  9907. left:0px;
  9908. top:0px;
  9909. width:120px;
  9910. height:23px;
  9911. background:inherit;
  9912. background-color:rgba(255, 255, 255, 1);
  9913. border:none;
  9914. border-radius:0px;
  9915. -moz-box-shadow:none;
  9916. -webkit-box-shadow:none;
  9917. box-shadow:none;
  9918. font-size:11px;
  9919. color:#AAAAAA;
  9920. }
  9921. #u21121 {
  9922. border-width:0px;
  9923. position:absolute;
  9924. left:357px;
  9925. top:282px;
  9926. width:120px;
  9927. height:23px;
  9928. display:flex;
  9929. font-size:11px;
  9930. color:#AAAAAA;
  9931. }
  9932. #u21121 .text {
  9933. position:absolute;
  9934. align-self:flex-start;
  9935. padding:2px 2px 2px 2px;
  9936. box-sizing:border-box;
  9937. width:100%;
  9938. }
  9939. #u21121_div.disabled {
  9940. border-width:0px;
  9941. position:absolute;
  9942. left:0px;
  9943. top:0px;
  9944. width:120px;
  9945. height:23px;
  9946. background:inherit;
  9947. background-color:rgba(240, 240, 240, 1);
  9948. border:none;
  9949. border-radius:0px;
  9950. -moz-box-shadow:none;
  9951. -webkit-box-shadow:none;
  9952. box-shadow:none;
  9953. font-size:11px;
  9954. color:#AAAAAA;
  9955. }
  9956. #u21121.disabled {
  9957. }
  9958. .u21121_input_option {
  9959. font-size:11px;
  9960. }
  9961. #u21122 {
  9962. border-width:0px;
  9963. position:absolute;
  9964. left:0px;
  9965. top:0px;
  9966. width:0px;
  9967. height:0px;
  9968. }
  9969. #u21123_div {
  9970. border-width:0px;
  9971. position:absolute;
  9972. left:0px;
  9973. top:0px;
  9974. width:140px;
  9975. height:30px;
  9976. background:inherit;
  9977. background-color:rgba(255, 255, 255, 1);
  9978. box-sizing:border-box;
  9979. border-width:1px;
  9980. border-style:solid;
  9981. border-color:rgba(215, 215, 215, 1);
  9982. border-radius:4px;
  9983. -moz-box-shadow:none;
  9984. -webkit-box-shadow:none;
  9985. box-shadow:none;
  9986. font-size:11px;
  9987. }
  9988. #u21123 {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:1397px;
  9992. top:240px;
  9993. width:140px;
  9994. height:30px;
  9995. display:flex;
  9996. font-size:11px;
  9997. }
  9998. #u21123 .text {
  9999. position:absolute;
  10000. align-self:center;
  10001. padding:2px 2px 2px 2px;
  10002. box-sizing:border-box;
  10003. width:100%;
  10004. }
  10005. #u21123_text {
  10006. border-width:0px;
  10007. word-wrap:break-word;
  10008. text-transform:none;
  10009. visibility:hidden;
  10010. }
  10011. #u21124_input {
  10012. position:absolute;
  10013. left:0px;
  10014. top:0px;
  10015. width:120px;
  10016. height:23px;
  10017. padding:2px 2px 2px 2px;
  10018. font-family:'ArialMT', 'Arial', sans-serif;
  10019. font-weight:400;
  10020. font-style:normal;
  10021. font-size:11px;
  10022. letter-spacing:normal;
  10023. color:#AAAAAA;
  10024. vertical-align:none;
  10025. text-align:left;
  10026. text-transform:none;
  10027. background-color:transparent;
  10028. border-color:transparent;
  10029. }
  10030. #u21124_input.disabled {
  10031. position:absolute;
  10032. left:0px;
  10033. top:0px;
  10034. width:120px;
  10035. height:23px;
  10036. padding:2px 2px 2px 2px;
  10037. font-family:'ArialMT', 'Arial', sans-serif;
  10038. font-weight:400;
  10039. font-style:normal;
  10040. font-size:11px;
  10041. letter-spacing:normal;
  10042. color:#AAAAAA;
  10043. vertical-align:none;
  10044. text-align:left;
  10045. text-transform:none;
  10046. background-color:transparent;
  10047. border-color:transparent;
  10048. }
  10049. #u21124_div {
  10050. border-width:0px;
  10051. position:absolute;
  10052. left:0px;
  10053. top:0px;
  10054. width:120px;
  10055. height:23px;
  10056. background:inherit;
  10057. background-color:rgba(255, 255, 255, 1);
  10058. border:none;
  10059. border-radius:0px;
  10060. -moz-box-shadow:none;
  10061. -webkit-box-shadow:none;
  10062. box-shadow:none;
  10063. font-size:11px;
  10064. color:#AAAAAA;
  10065. }
  10066. #u21124 {
  10067. border-width:0px;
  10068. position:absolute;
  10069. left:1404px;
  10070. top:242px;
  10071. width:120px;
  10072. height:23px;
  10073. display:flex;
  10074. font-size:11px;
  10075. color:#AAAAAA;
  10076. }
  10077. #u21124 .text {
  10078. position:absolute;
  10079. align-self:flex-start;
  10080. padding:2px 2px 2px 2px;
  10081. box-sizing:border-box;
  10082. width:100%;
  10083. }
  10084. #u21124_div.disabled {
  10085. border-width:0px;
  10086. position:absolute;
  10087. left:0px;
  10088. top:0px;
  10089. width:120px;
  10090. height:23px;
  10091. background:inherit;
  10092. background-color:rgba(240, 240, 240, 1);
  10093. border:none;
  10094. border-radius:0px;
  10095. -moz-box-shadow:none;
  10096. -webkit-box-shadow:none;
  10097. box-shadow:none;
  10098. font-size:11px;
  10099. color:#AAAAAA;
  10100. }
  10101. #u21124.disabled {
  10102. }
  10103. .u21124_input_option {
  10104. font-size:11px;
  10105. }
  10106. #u21125 {
  10107. border-width:0px;
  10108. position:absolute;
  10109. left:0px;
  10110. top:0px;
  10111. width:0px;
  10112. height:0px;
  10113. }
  10114. #u21126_div {
  10115. border-width:0px;
  10116. position:absolute;
  10117. left:0px;
  10118. top:0px;
  10119. width:140px;
  10120. height:30px;
  10121. background:inherit;
  10122. background-color:rgba(255, 255, 255, 1);
  10123. box-sizing:border-box;
  10124. border-width:1px;
  10125. border-style:solid;
  10126. border-color:rgba(201, 201, 201, 1);
  10127. border-radius:4px;
  10128. -moz-box-shadow:none;
  10129. -webkit-box-shadow:none;
  10130. box-shadow:none;
  10131. font-family:'Microsoft YaHei', sans-serif;
  10132. font-weight:400;
  10133. font-style:normal;
  10134. font-size:14px;
  10135. color:#CCCCCC;
  10136. text-align:left;
  10137. }
  10138. #u21126 {
  10139. border-width:0px;
  10140. position:absolute;
  10141. left:350px;
  10142. top:240px;
  10143. width:140px;
  10144. height:30px;
  10145. display:flex;
  10146. font-family:'Microsoft YaHei', sans-serif;
  10147. font-weight:400;
  10148. font-style:normal;
  10149. font-size:14px;
  10150. color:#CCCCCC;
  10151. text-align:left;
  10152. }
  10153. #u21126 .text {
  10154. position:absolute;
  10155. align-self:center;
  10156. padding:2px 8px 2px 8px;
  10157. box-sizing:border-box;
  10158. width:100%;
  10159. }
  10160. #u21126_text {
  10161. border-width:0px;
  10162. word-wrap:break-word;
  10163. text-transform:none;
  10164. visibility:hidden;
  10165. }
  10166. #u21127_input {
  10167. position:absolute;
  10168. left:0px;
  10169. top:0px;
  10170. width:127px;
  10171. height:25px;
  10172. padding:2px 2px 2px 2px;
  10173. font-family:'Microsoft YaHei', sans-serif;
  10174. font-weight:400;
  10175. font-style:normal;
  10176. font-size:10px;
  10177. letter-spacing:normal;
  10178. color:#000000;
  10179. vertical-align:none;
  10180. text-align:left;
  10181. text-transform:none;
  10182. background-color:transparent;
  10183. border-color:transparent;
  10184. }
  10185. #u21127_input.disabled {
  10186. position:absolute;
  10187. left:0px;
  10188. top:0px;
  10189. width:127px;
  10190. height:25px;
  10191. padding:2px 2px 2px 2px;
  10192. font-family:'Microsoft YaHei', sans-serif;
  10193. font-weight:400;
  10194. font-style:normal;
  10195. font-size:10px;
  10196. letter-spacing:normal;
  10197. color:#000000;
  10198. vertical-align:none;
  10199. text-align:left;
  10200. text-transform:none;
  10201. background-color:transparent;
  10202. border-color:transparent;
  10203. }
  10204. #u21127_div {
  10205. border-width:0px;
  10206. position:absolute;
  10207. left:0px;
  10208. top:0px;
  10209. width:127px;
  10210. height:25px;
  10211. background:inherit;
  10212. background-color:rgba(255, 255, 255, 1);
  10213. border:none;
  10214. border-radius:0px;
  10215. -moz-box-shadow:none;
  10216. -webkit-box-shadow:none;
  10217. box-shadow:none;
  10218. font-family:'Microsoft YaHei', sans-serif;
  10219. font-weight:400;
  10220. font-style:normal;
  10221. font-size:10px;
  10222. }
  10223. #u21127 {
  10224. border-width:0px;
  10225. position:absolute;
  10226. left:358px;
  10227. top:241px;
  10228. width:127px;
  10229. height:25px;
  10230. display:flex;
  10231. font-family:'Microsoft YaHei', sans-serif;
  10232. font-weight:400;
  10233. font-style:normal;
  10234. font-size:10px;
  10235. }
  10236. #u21127 .text {
  10237. position:absolute;
  10238. align-self:center;
  10239. padding:2px 2px 2px 2px;
  10240. box-sizing:border-box;
  10241. width:100%;
  10242. }
  10243. #u21127_div.disabled {
  10244. border-width:0px;
  10245. position:absolute;
  10246. left:0px;
  10247. top:0px;
  10248. width:127px;
  10249. height:25px;
  10250. background:inherit;
  10251. background-color:rgba(240, 240, 240, 1);
  10252. border:none;
  10253. border-radius:0px;
  10254. -moz-box-shadow:none;
  10255. -webkit-box-shadow:none;
  10256. box-shadow:none;
  10257. font-family:'Microsoft YaHei', sans-serif;
  10258. font-weight:400;
  10259. font-style:normal;
  10260. font-size:10px;
  10261. }
  10262. #u21127.disabled {
  10263. }
  10264. #u21128 {
  10265. border-width:0px;
  10266. position:absolute;
  10267. left:0px;
  10268. top:0px;
  10269. width:0px;
  10270. height:0px;
  10271. }
  10272. #u21129_div {
  10273. border-width:0px;
  10274. position:absolute;
  10275. left:0px;
  10276. top:0px;
  10277. width:140px;
  10278. height:30px;
  10279. background:inherit;
  10280. background-color:rgba(255, 255, 255, 1);
  10281. box-sizing:border-box;
  10282. border-width:1px;
  10283. border-style:solid;
  10284. border-color:rgba(201, 201, 201, 1);
  10285. border-radius:4px;
  10286. -moz-box-shadow:none;
  10287. -webkit-box-shadow:none;
  10288. box-shadow:none;
  10289. font-family:'Microsoft YaHei', sans-serif;
  10290. font-weight:400;
  10291. font-style:normal;
  10292. font-size:14px;
  10293. color:#CCCCCC;
  10294. text-align:left;
  10295. }
  10296. #u21129 {
  10297. border-width:0px;
  10298. position:absolute;
  10299. left:499px;
  10300. top:240px;
  10301. width:140px;
  10302. height:30px;
  10303. display:flex;
  10304. font-family:'Microsoft YaHei', sans-serif;
  10305. font-weight:400;
  10306. font-style:normal;
  10307. font-size:14px;
  10308. color:#CCCCCC;
  10309. text-align:left;
  10310. }
  10311. #u21129 .text {
  10312. position:absolute;
  10313. align-self:center;
  10314. padding:2px 8px 2px 8px;
  10315. box-sizing:border-box;
  10316. width:100%;
  10317. }
  10318. #u21129_text {
  10319. border-width:0px;
  10320. word-wrap:break-word;
  10321. text-transform:none;
  10322. visibility:hidden;
  10323. }
  10324. #u21130_input {
  10325. position:absolute;
  10326. left:0px;
  10327. top:0px;
  10328. width:127px;
  10329. height:25px;
  10330. padding:2px 2px 2px 2px;
  10331. font-family:'Microsoft YaHei', sans-serif;
  10332. font-weight:400;
  10333. font-style:normal;
  10334. font-size:10px;
  10335. letter-spacing:normal;
  10336. color:#000000;
  10337. vertical-align:none;
  10338. text-align:left;
  10339. text-transform:none;
  10340. background-color:transparent;
  10341. border-color:transparent;
  10342. }
  10343. #u21130_input.disabled {
  10344. position:absolute;
  10345. left:0px;
  10346. top:0px;
  10347. width:127px;
  10348. height:25px;
  10349. padding:2px 2px 2px 2px;
  10350. font-family:'Microsoft YaHei', sans-serif;
  10351. font-weight:400;
  10352. font-style:normal;
  10353. font-size:10px;
  10354. letter-spacing:normal;
  10355. color:#000000;
  10356. vertical-align:none;
  10357. text-align:left;
  10358. text-transform:none;
  10359. background-color:transparent;
  10360. border-color:transparent;
  10361. }
  10362. #u21130_div {
  10363. border-width:0px;
  10364. position:absolute;
  10365. left:0px;
  10366. top:0px;
  10367. width:127px;
  10368. height:25px;
  10369. background:inherit;
  10370. background-color:rgba(255, 255, 255, 1);
  10371. border:none;
  10372. border-radius:0px;
  10373. -moz-box-shadow:none;
  10374. -webkit-box-shadow:none;
  10375. box-shadow:none;
  10376. font-family:'Microsoft YaHei', sans-serif;
  10377. font-weight:400;
  10378. font-style:normal;
  10379. font-size:10px;
  10380. }
  10381. #u21130 {
  10382. border-width:0px;
  10383. position:absolute;
  10384. left:507px;
  10385. top:241px;
  10386. width:127px;
  10387. height:25px;
  10388. display:flex;
  10389. font-family:'Microsoft YaHei', sans-serif;
  10390. font-weight:400;
  10391. font-style:normal;
  10392. font-size:10px;
  10393. }
  10394. #u21130 .text {
  10395. position:absolute;
  10396. align-self:center;
  10397. padding:2px 2px 2px 2px;
  10398. box-sizing:border-box;
  10399. width:100%;
  10400. }
  10401. #u21130_div.disabled {
  10402. border-width:0px;
  10403. position:absolute;
  10404. left:0px;
  10405. top:0px;
  10406. width:127px;
  10407. height:25px;
  10408. background:inherit;
  10409. background-color:rgba(240, 240, 240, 1);
  10410. border:none;
  10411. border-radius:0px;
  10412. -moz-box-shadow:none;
  10413. -webkit-box-shadow:none;
  10414. box-shadow:none;
  10415. font-family:'Microsoft YaHei', sans-serif;
  10416. font-weight:400;
  10417. font-style:normal;
  10418. font-size:10px;
  10419. }
  10420. #u21130.disabled {
  10421. }
  10422. #u21131 {
  10423. border-width:0px;
  10424. position:absolute;
  10425. left:0px;
  10426. top:0px;
  10427. width:0px;
  10428. height:0px;
  10429. }
  10430. #u21132_div {
  10431. border-width:0px;
  10432. position:absolute;
  10433. left:0px;
  10434. top:0px;
  10435. width:140px;
  10436. height:30px;
  10437. background:inherit;
  10438. background-color:rgba(255, 255, 255, 1);
  10439. box-sizing:border-box;
  10440. border-width:1px;
  10441. border-style:solid;
  10442. border-color:rgba(215, 215, 215, 1);
  10443. border-radius:4px;
  10444. -moz-box-shadow:none;
  10445. -webkit-box-shadow:none;
  10446. box-shadow:none;
  10447. font-size:11px;
  10448. }
  10449. #u21132 {
  10450. border-width:0px;
  10451. position:absolute;
  10452. left:649px;
  10453. top:240px;
  10454. width:140px;
  10455. height:30px;
  10456. display:flex;
  10457. font-size:11px;
  10458. }
  10459. #u21132 .text {
  10460. position:absolute;
  10461. align-self:center;
  10462. padding:2px 2px 2px 2px;
  10463. box-sizing:border-box;
  10464. width:100%;
  10465. }
  10466. #u21132_text {
  10467. border-width:0px;
  10468. word-wrap:break-word;
  10469. text-transform:none;
  10470. visibility:hidden;
  10471. }
  10472. #u21133_input {
  10473. position:absolute;
  10474. left:0px;
  10475. top:0px;
  10476. width:120px;
  10477. height:23px;
  10478. padding:2px 2px 2px 2px;
  10479. font-family:'ArialMT', 'Arial', sans-serif;
  10480. font-weight:400;
  10481. font-style:normal;
  10482. font-size:11px;
  10483. letter-spacing:normal;
  10484. color:#AAAAAA;
  10485. vertical-align:none;
  10486. text-align:left;
  10487. text-transform:none;
  10488. background-color:transparent;
  10489. border-color:transparent;
  10490. }
  10491. #u21133_input.disabled {
  10492. position:absolute;
  10493. left:0px;
  10494. top:0px;
  10495. width:120px;
  10496. height:23px;
  10497. padding:2px 2px 2px 2px;
  10498. font-family:'ArialMT', 'Arial', sans-serif;
  10499. font-weight:400;
  10500. font-style:normal;
  10501. font-size:11px;
  10502. letter-spacing:normal;
  10503. color:#AAAAAA;
  10504. vertical-align:none;
  10505. text-align:left;
  10506. text-transform:none;
  10507. background-color:transparent;
  10508. border-color:transparent;
  10509. }
  10510. #u21133_div {
  10511. border-width:0px;
  10512. position:absolute;
  10513. left:0px;
  10514. top:0px;
  10515. width:120px;
  10516. height:23px;
  10517. background:inherit;
  10518. background-color:rgba(255, 255, 255, 1);
  10519. border:none;
  10520. border-radius:0px;
  10521. -moz-box-shadow:none;
  10522. -webkit-box-shadow:none;
  10523. box-shadow:none;
  10524. font-size:11px;
  10525. color:#AAAAAA;
  10526. }
  10527. #u21133 {
  10528. border-width:0px;
  10529. position:absolute;
  10530. left:656px;
  10531. top:242px;
  10532. width:120px;
  10533. height:23px;
  10534. display:flex;
  10535. font-size:11px;
  10536. color:#AAAAAA;
  10537. }
  10538. #u21133 .text {
  10539. position:absolute;
  10540. align-self:flex-start;
  10541. padding:2px 2px 2px 2px;
  10542. box-sizing:border-box;
  10543. width:100%;
  10544. }
  10545. #u21133_div.disabled {
  10546. border-width:0px;
  10547. position:absolute;
  10548. left:0px;
  10549. top:0px;
  10550. width:120px;
  10551. height:23px;
  10552. background:inherit;
  10553. background-color:rgba(240, 240, 240, 1);
  10554. border:none;
  10555. border-radius:0px;
  10556. -moz-box-shadow:none;
  10557. -webkit-box-shadow:none;
  10558. box-shadow:none;
  10559. font-size:11px;
  10560. color:#AAAAAA;
  10561. }
  10562. #u21133.disabled {
  10563. }
  10564. .u21133_input_option {
  10565. font-size:11px;
  10566. }
  10567. #u21134 {
  10568. border-width:0px;
  10569. position:absolute;
  10570. left:0px;
  10571. top:0px;
  10572. width:0px;
  10573. height:0px;
  10574. }
  10575. #u21135_div {
  10576. border-width:0px;
  10577. position:absolute;
  10578. left:0px;
  10579. top:0px;
  10580. width:140px;
  10581. height:30px;
  10582. background:inherit;
  10583. background-color:rgba(255, 255, 255, 1);
  10584. box-sizing:border-box;
  10585. border-width:1px;
  10586. border-style:solid;
  10587. border-color:rgba(215, 215, 215, 1);
  10588. border-radius:4px;
  10589. -moz-box-shadow:none;
  10590. -webkit-box-shadow:none;
  10591. box-shadow:none;
  10592. font-size:11px;
  10593. }
  10594. #u21135 {
  10595. border-width:0px;
  10596. position:absolute;
  10597. left:798px;
  10598. top:240px;
  10599. width:140px;
  10600. height:30px;
  10601. display:flex;
  10602. font-size:11px;
  10603. }
  10604. #u21135 .text {
  10605. position:absolute;
  10606. align-self:center;
  10607. padding:2px 2px 2px 2px;
  10608. box-sizing:border-box;
  10609. width:100%;
  10610. }
  10611. #u21135_text {
  10612. border-width:0px;
  10613. word-wrap:break-word;
  10614. text-transform:none;
  10615. visibility:hidden;
  10616. }
  10617. #u21136_input {
  10618. position:absolute;
  10619. left:0px;
  10620. top:0px;
  10621. width:120px;
  10622. height:23px;
  10623. padding:2px 2px 2px 2px;
  10624. font-family:'ArialMT', 'Arial', sans-serif;
  10625. font-weight:400;
  10626. font-style:normal;
  10627. font-size:11px;
  10628. letter-spacing:normal;
  10629. color:#AAAAAA;
  10630. vertical-align:none;
  10631. text-align:left;
  10632. text-transform:none;
  10633. background-color:transparent;
  10634. border-color:transparent;
  10635. }
  10636. #u21136_input.disabled {
  10637. position:absolute;
  10638. left:0px;
  10639. top:0px;
  10640. width:120px;
  10641. height:23px;
  10642. padding:2px 2px 2px 2px;
  10643. font-family:'ArialMT', 'Arial', sans-serif;
  10644. font-weight:400;
  10645. font-style:normal;
  10646. font-size:11px;
  10647. letter-spacing:normal;
  10648. color:#AAAAAA;
  10649. vertical-align:none;
  10650. text-align:left;
  10651. text-transform:none;
  10652. background-color:transparent;
  10653. border-color:transparent;
  10654. }
  10655. #u21136_div {
  10656. border-width:0px;
  10657. position:absolute;
  10658. left:0px;
  10659. top:0px;
  10660. width:120px;
  10661. height:23px;
  10662. background:inherit;
  10663. background-color:rgba(255, 255, 255, 1);
  10664. border:none;
  10665. border-radius:0px;
  10666. -moz-box-shadow:none;
  10667. -webkit-box-shadow:none;
  10668. box-shadow:none;
  10669. font-size:11px;
  10670. color:#AAAAAA;
  10671. }
  10672. #u21136 {
  10673. border-width:0px;
  10674. position:absolute;
  10675. left:805px;
  10676. top:242px;
  10677. width:120px;
  10678. height:23px;
  10679. display:flex;
  10680. font-size:11px;
  10681. color:#AAAAAA;
  10682. }
  10683. #u21136 .text {
  10684. position:absolute;
  10685. align-self:flex-start;
  10686. padding:2px 2px 2px 2px;
  10687. box-sizing:border-box;
  10688. width:100%;
  10689. }
  10690. #u21136_div.disabled {
  10691. border-width:0px;
  10692. position:absolute;
  10693. left:0px;
  10694. top:0px;
  10695. width:120px;
  10696. height:23px;
  10697. background:inherit;
  10698. background-color:rgba(240, 240, 240, 1);
  10699. border:none;
  10700. border-radius:0px;
  10701. -moz-box-shadow:none;
  10702. -webkit-box-shadow:none;
  10703. box-shadow:none;
  10704. font-size:11px;
  10705. color:#AAAAAA;
  10706. }
  10707. #u21136.disabled {
  10708. }
  10709. .u21136_input_option {
  10710. font-size:11px;
  10711. }
  10712. #u21137 {
  10713. border-width:0px;
  10714. position:absolute;
  10715. left:0px;
  10716. top:0px;
  10717. width:0px;
  10718. height:0px;
  10719. }
  10720. #u21138_div {
  10721. border-width:0px;
  10722. position:absolute;
  10723. left:0px;
  10724. top:0px;
  10725. width:140px;
  10726. height:30px;
  10727. background:inherit;
  10728. background-color:rgba(255, 255, 255, 1);
  10729. box-sizing:border-box;
  10730. border-width:1px;
  10731. border-style:solid;
  10732. border-color:rgba(215, 215, 215, 1);
  10733. border-radius:4px;
  10734. -moz-box-shadow:none;
  10735. -webkit-box-shadow:none;
  10736. box-shadow:none;
  10737. font-size:11px;
  10738. }
  10739. #u21138 {
  10740. border-width:0px;
  10741. position:absolute;
  10742. left:948px;
  10743. top:240px;
  10744. width:140px;
  10745. height:30px;
  10746. display:flex;
  10747. font-size:11px;
  10748. }
  10749. #u21138 .text {
  10750. position:absolute;
  10751. align-self:center;
  10752. padding:2px 2px 2px 2px;
  10753. box-sizing:border-box;
  10754. width:100%;
  10755. }
  10756. #u21138_text {
  10757. border-width:0px;
  10758. word-wrap:break-word;
  10759. text-transform:none;
  10760. visibility:hidden;
  10761. }
  10762. #u21139_input {
  10763. position:absolute;
  10764. left:0px;
  10765. top:0px;
  10766. width:120px;
  10767. height:23px;
  10768. padding:2px 2px 2px 2px;
  10769. font-family:'ArialMT', 'Arial', sans-serif;
  10770. font-weight:400;
  10771. font-style:normal;
  10772. font-size:11px;
  10773. letter-spacing:normal;
  10774. color:#AAAAAA;
  10775. vertical-align:none;
  10776. text-align:left;
  10777. text-transform:none;
  10778. background-color:transparent;
  10779. border-color:transparent;
  10780. }
  10781. #u21139_input.disabled {
  10782. position:absolute;
  10783. left:0px;
  10784. top:0px;
  10785. width:120px;
  10786. height:23px;
  10787. padding:2px 2px 2px 2px;
  10788. font-family:'ArialMT', 'Arial', sans-serif;
  10789. font-weight:400;
  10790. font-style:normal;
  10791. font-size:11px;
  10792. letter-spacing:normal;
  10793. color:#AAAAAA;
  10794. vertical-align:none;
  10795. text-align:left;
  10796. text-transform:none;
  10797. background-color:transparent;
  10798. border-color:transparent;
  10799. }
  10800. #u21139_div {
  10801. border-width:0px;
  10802. position:absolute;
  10803. left:0px;
  10804. top:0px;
  10805. width:120px;
  10806. height:23px;
  10807. background:inherit;
  10808. background-color:rgba(255, 255, 255, 1);
  10809. border:none;
  10810. border-radius:0px;
  10811. -moz-box-shadow:none;
  10812. -webkit-box-shadow:none;
  10813. box-shadow:none;
  10814. font-size:11px;
  10815. color:#AAAAAA;
  10816. }
  10817. #u21139 {
  10818. border-width:0px;
  10819. position:absolute;
  10820. left:955px;
  10821. top:242px;
  10822. width:120px;
  10823. height:23px;
  10824. display:flex;
  10825. font-size:11px;
  10826. color:#AAAAAA;
  10827. }
  10828. #u21139 .text {
  10829. position:absolute;
  10830. align-self:flex-start;
  10831. padding:2px 2px 2px 2px;
  10832. box-sizing:border-box;
  10833. width:100%;
  10834. }
  10835. #u21139_div.disabled {
  10836. border-width:0px;
  10837. position:absolute;
  10838. left:0px;
  10839. top:0px;
  10840. width:120px;
  10841. height:23px;
  10842. background:inherit;
  10843. background-color:rgba(240, 240, 240, 1);
  10844. border:none;
  10845. border-radius:0px;
  10846. -moz-box-shadow:none;
  10847. -webkit-box-shadow:none;
  10848. box-shadow:none;
  10849. font-size:11px;
  10850. color:#AAAAAA;
  10851. }
  10852. #u21139.disabled {
  10853. }
  10854. .u21139_input_option {
  10855. font-size:11px;
  10856. }
  10857. #u21140_div {
  10858. border-width:0px;
  10859. position:absolute;
  10860. left:0px;
  10861. top:0px;
  10862. width:55px;
  10863. height:30px;
  10864. background:inherit;
  10865. background-color:rgba(255, 255, 255, 1);
  10866. box-sizing:border-box;
  10867. border-width:1px;
  10868. border-style:solid;
  10869. border-color:rgba(170, 170, 170, 1);
  10870. border-radius:4px;
  10871. -moz-box-shadow:none;
  10872. -webkit-box-shadow:none;
  10873. box-shadow:none;
  10874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10875. font-weight:400;
  10876. font-style:normal;
  10877. font-size:12px;
  10878. color:#555555;
  10879. }
  10880. #u21140 {
  10881. border-width:0px;
  10882. position:absolute;
  10883. left:350px;
  10884. top:330px;
  10885. width:55px;
  10886. height:30px;
  10887. display:flex;
  10888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10889. font-weight:400;
  10890. font-style:normal;
  10891. font-size:12px;
  10892. color:#555555;
  10893. }
  10894. #u21140 .text {
  10895. position:absolute;
  10896. align-self:center;
  10897. padding:5px 15px 5px 15px;
  10898. box-sizing:border-box;
  10899. width:100%;
  10900. }
  10901. #u21140_text {
  10902. border-width:0px;
  10903. white-space:nowrap;
  10904. text-transform:none;
  10905. }
  10906. #u21141 {
  10907. border-width:0px;
  10908. position:absolute;
  10909. left:0px;
  10910. top:0px;
  10911. width:0px;
  10912. height:0px;
  10913. }
  10914. #u21142_div {
  10915. border-width:0px;
  10916. position:absolute;
  10917. left:0px;
  10918. top:0px;
  10919. width:140px;
  10920. height:30px;
  10921. background:inherit;
  10922. background-color:rgba(255, 255, 255, 1);
  10923. box-sizing:border-box;
  10924. border-width:1px;
  10925. border-style:solid;
  10926. border-color:rgba(215, 215, 215, 1);
  10927. border-radius:4px;
  10928. -moz-box-shadow:none;
  10929. -webkit-box-shadow:none;
  10930. box-shadow:none;
  10931. font-size:11px;
  10932. }
  10933. #u21142 {
  10934. border-width:0px;
  10935. position:absolute;
  10936. left:499px;
  10937. top:279px;
  10938. width:140px;
  10939. height:30px;
  10940. display:flex;
  10941. font-size:11px;
  10942. }
  10943. #u21142 .text {
  10944. position:absolute;
  10945. align-self:center;
  10946. padding:2px 2px 2px 2px;
  10947. box-sizing:border-box;
  10948. width:100%;
  10949. }
  10950. #u21142_text {
  10951. border-width:0px;
  10952. word-wrap:break-word;
  10953. text-transform:none;
  10954. visibility:hidden;
  10955. }
  10956. #u21143_input {
  10957. position:absolute;
  10958. left:0px;
  10959. top:0px;
  10960. width:120px;
  10961. height:23px;
  10962. padding:2px 2px 2px 2px;
  10963. font-family:'ArialMT', 'Arial', sans-serif;
  10964. font-weight:400;
  10965. font-style:normal;
  10966. font-size:11px;
  10967. letter-spacing:normal;
  10968. color:#AAAAAA;
  10969. vertical-align:none;
  10970. text-align:left;
  10971. text-transform:none;
  10972. background-color:transparent;
  10973. border-color:transparent;
  10974. }
  10975. #u21143_input.disabled {
  10976. position:absolute;
  10977. left:0px;
  10978. top:0px;
  10979. width:120px;
  10980. height:23px;
  10981. padding:2px 2px 2px 2px;
  10982. font-family:'ArialMT', 'Arial', sans-serif;
  10983. font-weight:400;
  10984. font-style:normal;
  10985. font-size:11px;
  10986. letter-spacing:normal;
  10987. color:#AAAAAA;
  10988. vertical-align:none;
  10989. text-align:left;
  10990. text-transform:none;
  10991. background-color:transparent;
  10992. border-color:transparent;
  10993. }
  10994. #u21143_div {
  10995. border-width:0px;
  10996. position:absolute;
  10997. left:0px;
  10998. top:0px;
  10999. width:120px;
  11000. height:23px;
  11001. background:inherit;
  11002. background-color:rgba(255, 255, 255, 1);
  11003. border:none;
  11004. border-radius:0px;
  11005. -moz-box-shadow:none;
  11006. -webkit-box-shadow:none;
  11007. box-shadow:none;
  11008. font-size:11px;
  11009. color:#AAAAAA;
  11010. }
  11011. #u21143 {
  11012. border-width:0px;
  11013. position:absolute;
  11014. left:506px;
  11015. top:281px;
  11016. width:120px;
  11017. height:23px;
  11018. display:flex;
  11019. font-size:11px;
  11020. color:#AAAAAA;
  11021. }
  11022. #u21143 .text {
  11023. position:absolute;
  11024. align-self:flex-start;
  11025. padding:2px 2px 2px 2px;
  11026. box-sizing:border-box;
  11027. width:100%;
  11028. }
  11029. #u21143_div.disabled {
  11030. border-width:0px;
  11031. position:absolute;
  11032. left:0px;
  11033. top:0px;
  11034. width:120px;
  11035. height:23px;
  11036. background:inherit;
  11037. background-color:rgba(240, 240, 240, 1);
  11038. border:none;
  11039. border-radius:0px;
  11040. -moz-box-shadow:none;
  11041. -webkit-box-shadow:none;
  11042. box-shadow:none;
  11043. font-size:11px;
  11044. color:#AAAAAA;
  11045. }
  11046. #u21143.disabled {
  11047. }
  11048. .u21143_input_option {
  11049. font-size:11px;
  11050. }
  11051. #u21144 {
  11052. border-width:0px;
  11053. position:absolute;
  11054. left:0px;
  11055. top:0px;
  11056. width:0px;
  11057. height:0px;
  11058. }
  11059. #u21145_div {
  11060. border-width:0px;
  11061. position:absolute;
  11062. left:0px;
  11063. top:0px;
  11064. width:200px;
  11065. height:1180px;
  11066. background:inherit;
  11067. background-color:rgba(255, 255, 255, 1);
  11068. border:none;
  11069. border-radius:0px;
  11070. -moz-box-shadow:none;
  11071. -webkit-box-shadow:none;
  11072. box-shadow:none;
  11073. }
  11074. #u21145 {
  11075. border-width:0px;
  11076. position:absolute;
  11077. left:120px;
  11078. top:50px;
  11079. width:200px;
  11080. height:1180px;
  11081. display:flex;
  11082. }
  11083. #u21145 .text {
  11084. position:absolute;
  11085. align-self:center;
  11086. padding:2px 2px 2px 2px;
  11087. box-sizing:border-box;
  11088. width:100%;
  11089. }
  11090. #u21145_text {
  11091. border-width:0px;
  11092. word-wrap:break-word;
  11093. text-transform:none;
  11094. visibility:hidden;
  11095. }
  11096. #u21146_div {
  11097. border-width:0px;
  11098. position:absolute;
  11099. left:0px;
  11100. top:0px;
  11101. width:200px;
  11102. height:60px;
  11103. background:inherit;
  11104. background-color:rgba(224, 231, 247, 1);
  11105. border:none;
  11106. border-radius:0px;
  11107. -moz-box-shadow:none;
  11108. -webkit-box-shadow:none;
  11109. box-shadow:none;
  11110. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11111. font-weight:500;
  11112. font-style:normal;
  11113. font-size:18px;
  11114. }
  11115. #u21146 {
  11116. border-width:0px;
  11117. position:absolute;
  11118. left:120px;
  11119. top:50px;
  11120. width:200px;
  11121. height:60px;
  11122. display:flex;
  11123. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11124. font-weight:500;
  11125. font-style:normal;
  11126. font-size:18px;
  11127. }
  11128. #u21146 .text {
  11129. position:absolute;
  11130. align-self:center;
  11131. padding:0px 0px 0px 20px;
  11132. box-sizing:border-box;
  11133. width:100%;
  11134. }
  11135. #u21146_text {
  11136. border-width:0px;
  11137. word-wrap:break-word;
  11138. text-transform:none;
  11139. }
  11140. #u21147_div {
  11141. border-width:0px;
  11142. position:absolute;
  11143. left:0px;
  11144. top:0px;
  11145. width:65px;
  11146. height:22px;
  11147. background:inherit;
  11148. background-color:rgba(255, 255, 255, 0);
  11149. border:none;
  11150. border-radius:0px;
  11151. -moz-box-shadow:none;
  11152. -webkit-box-shadow:none;
  11153. box-shadow:none;
  11154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11155. font-weight:400;
  11156. font-style:normal;
  11157. font-size:16px;
  11158. }
  11159. #u21147 {
  11160. border-width:0px;
  11161. position:absolute;
  11162. left:147px;
  11163. top:130px;
  11164. width:65px;
  11165. height:22px;
  11166. display:flex;
  11167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11168. font-weight:400;
  11169. font-style:normal;
  11170. font-size:16px;
  11171. }
  11172. #u21147 .text {
  11173. position:absolute;
  11174. align-self:flex-start;
  11175. padding:0px 0px 0px 0px;
  11176. box-sizing:border-box;
  11177. width:100%;
  11178. }
  11179. #u21147_text {
  11180. border-width:0px;
  11181. white-space:nowrap;
  11182. text-transform:none;
  11183. }
  11184. #u21148_div {
  11185. border-width:0px;
  11186. position:absolute;
  11187. left:0px;
  11188. top:0px;
  11189. width:65px;
  11190. height:22px;
  11191. background:inherit;
  11192. background-color:rgba(255, 255, 255, 0);
  11193. border:none;
  11194. border-radius:0px;
  11195. -moz-box-shadow:none;
  11196. -webkit-box-shadow:none;
  11197. box-shadow:none;
  11198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11199. font-weight:400;
  11200. font-style:normal;
  11201. font-size:16px;
  11202. }
  11203. #u21148 {
  11204. border-width:0px;
  11205. position:absolute;
  11206. left:147px;
  11207. top:229px;
  11208. width:65px;
  11209. height:22px;
  11210. display:flex;
  11211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11212. font-weight:400;
  11213. font-style:normal;
  11214. font-size:16px;
  11215. }
  11216. #u21148 .text {
  11217. position:absolute;
  11218. align-self:flex-start;
  11219. padding:0px 0px 0px 0px;
  11220. box-sizing:border-box;
  11221. width:100%;
  11222. }
  11223. #u21148_text {
  11224. border-width:0px;
  11225. white-space:nowrap;
  11226. text-transform:none;
  11227. }
  11228. #u21149_div {
  11229. border-width:0px;
  11230. position:absolute;
  11231. left:0px;
  11232. top:0px;
  11233. width:65px;
  11234. height:22px;
  11235. background:inherit;
  11236. background-color:rgba(255, 255, 255, 0);
  11237. border:none;
  11238. border-radius:0px;
  11239. -moz-box-shadow:none;
  11240. -webkit-box-shadow:none;
  11241. box-shadow:none;
  11242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11243. font-weight:400;
  11244. font-style:normal;
  11245. font-size:16px;
  11246. }
  11247. #u21149 {
  11248. border-width:0px;
  11249. position:absolute;
  11250. left:147px;
  11251. top:271px;
  11252. width:65px;
  11253. height:22px;
  11254. display:flex;
  11255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11256. font-weight:400;
  11257. font-style:normal;
  11258. font-size:16px;
  11259. }
  11260. #u21149 .text {
  11261. position:absolute;
  11262. align-self:flex-start;
  11263. padding:0px 0px 0px 0px;
  11264. box-sizing:border-box;
  11265. width:100%;
  11266. }
  11267. #u21149_text {
  11268. border-width:0px;
  11269. white-space:nowrap;
  11270. text-transform:none;
  11271. }
  11272. #u21150_div {
  11273. border-width:0px;
  11274. position:absolute;
  11275. left:0px;
  11276. top:0px;
  11277. width:65px;
  11278. height:22px;
  11279. background:inherit;
  11280. background-color:rgba(255, 255, 255, 0);
  11281. border:none;
  11282. border-radius:0px;
  11283. -moz-box-shadow:none;
  11284. -webkit-box-shadow:none;
  11285. box-shadow:none;
  11286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11287. font-weight:400;
  11288. font-style:normal;
  11289. font-size:16px;
  11290. }
  11291. #u21150 {
  11292. border-width:0px;
  11293. position:absolute;
  11294. left:147px;
  11295. top:770px;
  11296. width:65px;
  11297. height:22px;
  11298. display:flex;
  11299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11300. font-weight:400;
  11301. font-style:normal;
  11302. font-size:16px;
  11303. }
  11304. #u21150 .text {
  11305. position:absolute;
  11306. align-self:flex-start;
  11307. padding:0px 0px 0px 0px;
  11308. box-sizing:border-box;
  11309. width:100%;
  11310. }
  11311. #u21150_text {
  11312. border-width:0px;
  11313. white-space:nowrap;
  11314. text-transform:none;
  11315. }
  11316. #u21151_div {
  11317. border-width:0px;
  11318. position:absolute;
  11319. left:0px;
  11320. top:0px;
  11321. width:65px;
  11322. height:22px;
  11323. background:inherit;
  11324. background-color:rgba(255, 255, 255, 0);
  11325. border:none;
  11326. border-radius:0px;
  11327. -moz-box-shadow:none;
  11328. -webkit-box-shadow:none;
  11329. box-shadow:none;
  11330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11331. font-weight:400;
  11332. font-style:normal;
  11333. font-size:16px;
  11334. }
  11335. #u21151 {
  11336. border-width:0px;
  11337. position:absolute;
  11338. left:147px;
  11339. top:812px;
  11340. width:65px;
  11341. height:22px;
  11342. display:flex;
  11343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11344. font-weight:400;
  11345. font-style:normal;
  11346. font-size:16px;
  11347. }
  11348. #u21151 .text {
  11349. position:absolute;
  11350. align-self:flex-start;
  11351. padding:0px 0px 0px 0px;
  11352. box-sizing:border-box;
  11353. width:100%;
  11354. }
  11355. #u21151_text {
  11356. border-width:0px;
  11357. white-space:nowrap;
  11358. text-transform:none;
  11359. }
  11360. #u21152_div {
  11361. border-width:0px;
  11362. position:absolute;
  11363. left:0px;
  11364. top:0px;
  11365. width:49px;
  11366. height:17px;
  11367. background:inherit;
  11368. background-color:rgba(255, 255, 255, 0);
  11369. border:none;
  11370. border-radius:0px;
  11371. -moz-box-shadow:none;
  11372. -webkit-box-shadow:none;
  11373. box-shadow:none;
  11374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11375. font-weight:400;
  11376. font-style:normal;
  11377. font-size:12px;
  11378. color:#AAAAAA;
  11379. }
  11380. #u21152 {
  11381. border-width:0px;
  11382. position:absolute;
  11383. left:147px;
  11384. top:192px;
  11385. width:49px;
  11386. height:17px;
  11387. display:flex;
  11388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11389. font-weight:400;
  11390. font-style:normal;
  11391. font-size:12px;
  11392. color:#AAAAAA;
  11393. }
  11394. #u21152 .text {
  11395. position:absolute;
  11396. align-self:flex-start;
  11397. padding:0px 0px 0px 0px;
  11398. box-sizing:border-box;
  11399. width:100%;
  11400. }
  11401. #u21152_text {
  11402. border-width:0px;
  11403. white-space:nowrap;
  11404. text-transform:none;
  11405. }
  11406. #u21153_img {
  11407. border-width:0px;
  11408. position:absolute;
  11409. left:0px;
  11410. top:0px;
  11411. width:201px;
  11412. height:2px;
  11413. }
  11414. #u21153 {
  11415. border-width:0px;
  11416. position:absolute;
  11417. left:121px;
  11418. top:712px;
  11419. width:200px;
  11420. height:1px;
  11421. display:flex;
  11422. }
  11423. #u21153 .text {
  11424. position:absolute;
  11425. align-self:center;
  11426. padding:2px 2px 2px 2px;
  11427. box-sizing:border-box;
  11428. width:100%;
  11429. }
  11430. #u21153_text {
  11431. border-width:0px;
  11432. word-wrap:break-word;
  11433. text-transform:none;
  11434. visibility:hidden;
  11435. }
  11436. #u21154_div {
  11437. border-width:0px;
  11438. position:absolute;
  11439. left:0px;
  11440. top:0px;
  11441. width:49px;
  11442. height:17px;
  11443. background:inherit;
  11444. background-color:rgba(255, 255, 255, 0);
  11445. border:none;
  11446. border-radius:0px;
  11447. -moz-box-shadow:none;
  11448. -webkit-box-shadow:none;
  11449. box-shadow:none;
  11450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11451. font-weight:400;
  11452. font-style:normal;
  11453. font-size:12px;
  11454. color:#AAAAAA;
  11455. }
  11456. #u21154 {
  11457. border-width:0px;
  11458. position:absolute;
  11459. left:147px;
  11460. top:733px;
  11461. width:49px;
  11462. height:17px;
  11463. display:flex;
  11464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11465. font-weight:400;
  11466. font-style:normal;
  11467. font-size:12px;
  11468. color:#AAAAAA;
  11469. }
  11470. #u21154 .text {
  11471. position:absolute;
  11472. align-self:flex-start;
  11473. padding:0px 0px 0px 0px;
  11474. box-sizing:border-box;
  11475. width:100%;
  11476. }
  11477. #u21154_text {
  11478. border-width:0px;
  11479. white-space:nowrap;
  11480. text-transform:none;
  11481. }
  11482. #u21155_img {
  11483. border-width:0px;
  11484. position:absolute;
  11485. left:0px;
  11486. top:0px;
  11487. width:201px;
  11488. height:2px;
  11489. }
  11490. #u21155 {
  11491. border-width:0px;
  11492. position:absolute;
  11493. left:121px;
  11494. top:171px;
  11495. width:200px;
  11496. height:1px;
  11497. display:flex;
  11498. }
  11499. #u21155 .text {
  11500. position:absolute;
  11501. align-self:center;
  11502. padding:2px 2px 2px 2px;
  11503. box-sizing:border-box;
  11504. width:100%;
  11505. }
  11506. #u21155_text {
  11507. border-width:0px;
  11508. word-wrap:break-word;
  11509. text-transform:none;
  11510. visibility:hidden;
  11511. }
  11512. #u21156_div {
  11513. border-width:0px;
  11514. position:absolute;
  11515. left:0px;
  11516. top:0px;
  11517. width:81px;
  11518. height:22px;
  11519. background:inherit;
  11520. background-color:rgba(255, 255, 255, 0);
  11521. border:none;
  11522. border-radius:0px;
  11523. -moz-box-shadow:none;
  11524. -webkit-box-shadow:none;
  11525. box-shadow:none;
  11526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11527. font-weight:400;
  11528. font-style:normal;
  11529. font-size:16px;
  11530. }
  11531. #u21156 {
  11532. border-width:0px;
  11533. position:absolute;
  11534. left:147px;
  11535. top:315px;
  11536. width:81px;
  11537. height:22px;
  11538. display:flex;
  11539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11540. font-weight:400;
  11541. font-style:normal;
  11542. font-size:16px;
  11543. }
  11544. #u21156 .text {
  11545. position:absolute;
  11546. align-self:flex-start;
  11547. padding:0px 0px 0px 0px;
  11548. box-sizing:border-box;
  11549. width:100%;
  11550. }
  11551. #u21156_text {
  11552. border-width:0px;
  11553. white-space:nowrap;
  11554. text-transform:none;
  11555. }
  11556. #u21157_div {
  11557. border-width:0px;
  11558. position:absolute;
  11559. left:0px;
  11560. top:0px;
  11561. width:81px;
  11562. height:22px;
  11563. background:inherit;
  11564. background-color:rgba(255, 255, 255, 0);
  11565. border:none;
  11566. border-radius:0px;
  11567. -moz-box-shadow:none;
  11568. -webkit-box-shadow:none;
  11569. box-shadow:none;
  11570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11571. font-weight:400;
  11572. font-style:normal;
  11573. font-size:16px;
  11574. }
  11575. #u21157 {
  11576. border-width:0px;
  11577. position:absolute;
  11578. left:147px;
  11579. top:357px;
  11580. width:81px;
  11581. height:22px;
  11582. display:flex;
  11583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11584. font-weight:400;
  11585. font-style:normal;
  11586. font-size:16px;
  11587. }
  11588. #u21157 .text {
  11589. position:absolute;
  11590. align-self:flex-start;
  11591. padding:0px 0px 0px 0px;
  11592. box-sizing:border-box;
  11593. width:100%;
  11594. }
  11595. #u21157_text {
  11596. border-width:0px;
  11597. white-space:nowrap;
  11598. text-transform:none;
  11599. }
  11600. #u21158_div {
  11601. border-width:0px;
  11602. position:absolute;
  11603. left:0px;
  11604. top:0px;
  11605. width:81px;
  11606. height:22px;
  11607. background:inherit;
  11608. background-color:rgba(255, 255, 255, 0);
  11609. border:none;
  11610. border-radius:0px;
  11611. -moz-box-shadow:none;
  11612. -webkit-box-shadow:none;
  11613. box-shadow:none;
  11614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11615. font-weight:400;
  11616. font-style:normal;
  11617. font-size:16px;
  11618. }
  11619. #u21158 {
  11620. border-width:0px;
  11621. position:absolute;
  11622. left:147px;
  11623. top:399px;
  11624. width:81px;
  11625. height:22px;
  11626. display:flex;
  11627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11628. font-weight:400;
  11629. font-style:normal;
  11630. font-size:16px;
  11631. }
  11632. #u21158 .text {
  11633. position:absolute;
  11634. align-self:flex-start;
  11635. padding:0px 0px 0px 0px;
  11636. box-sizing:border-box;
  11637. width:100%;
  11638. }
  11639. #u21158_text {
  11640. border-width:0px;
  11641. white-space:nowrap;
  11642. text-transform:none;
  11643. }
  11644. #u21159_div {
  11645. border-width:0px;
  11646. position:absolute;
  11647. left:0px;
  11648. top:0px;
  11649. width:97px;
  11650. height:22px;
  11651. background:inherit;
  11652. background-color:rgba(255, 255, 255, 0);
  11653. border:none;
  11654. border-radius:0px;
  11655. -moz-box-shadow:none;
  11656. -webkit-box-shadow:none;
  11657. box-shadow:none;
  11658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11659. font-weight:400;
  11660. font-style:normal;
  11661. font-size:16px;
  11662. }
  11663. #u21159 {
  11664. border-width:0px;
  11665. position:absolute;
  11666. left:146px;
  11667. top:499px;
  11668. width:97px;
  11669. height:22px;
  11670. display:flex;
  11671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11672. font-weight:400;
  11673. font-style:normal;
  11674. font-size:16px;
  11675. }
  11676. #u21159 .text {
  11677. position:absolute;
  11678. align-self:flex-start;
  11679. padding:0px 0px 0px 0px;
  11680. box-sizing:border-box;
  11681. width:100%;
  11682. }
  11683. #u21159_text {
  11684. border-width:0px;
  11685. white-space:nowrap;
  11686. text-transform:none;
  11687. }
  11688. #u21160_div {
  11689. border-width:0px;
  11690. position:absolute;
  11691. left:0px;
  11692. top:0px;
  11693. width:65px;
  11694. height:22px;
  11695. background:inherit;
  11696. background-color:rgba(255, 255, 255, 0);
  11697. border:none;
  11698. border-radius:0px;
  11699. -moz-box-shadow:none;
  11700. -webkit-box-shadow:none;
  11701. box-shadow:none;
  11702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11703. font-weight:400;
  11704. font-style:normal;
  11705. font-size:16px;
  11706. }
  11707. #u21160 {
  11708. border-width:0px;
  11709. position:absolute;
  11710. left:146px;
  11711. top:581px;
  11712. width:65px;
  11713. height:22px;
  11714. display:flex;
  11715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11716. font-weight:400;
  11717. font-style:normal;
  11718. font-size:16px;
  11719. }
  11720. #u21160 .text {
  11721. position:absolute;
  11722. align-self:flex-start;
  11723. padding:0px 0px 0px 0px;
  11724. box-sizing:border-box;
  11725. width:100%;
  11726. }
  11727. #u21160_text {
  11728. border-width:0px;
  11729. white-space:nowrap;
  11730. text-transform:none;
  11731. }
  11732. #u21161_div {
  11733. border-width:0px;
  11734. position:absolute;
  11735. left:0px;
  11736. top:0px;
  11737. width:65px;
  11738. height:22px;
  11739. background:inherit;
  11740. background-color:rgba(255, 255, 255, 0);
  11741. border:none;
  11742. border-radius:0px;
  11743. -moz-box-shadow:none;
  11744. -webkit-box-shadow:none;
  11745. box-shadow:none;
  11746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11747. font-weight:400;
  11748. font-style:normal;
  11749. font-size:16px;
  11750. }
  11751. #u21161 {
  11752. border-width:0px;
  11753. position:absolute;
  11754. left:146px;
  11755. top:623px;
  11756. width:65px;
  11757. height:22px;
  11758. display:flex;
  11759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11760. font-weight:400;
  11761. font-style:normal;
  11762. font-size:16px;
  11763. }
  11764. #u21161 .text {
  11765. position:absolute;
  11766. align-self:flex-start;
  11767. padding:0px 0px 0px 0px;
  11768. box-sizing:border-box;
  11769. width:100%;
  11770. }
  11771. #u21161_text {
  11772. border-width:0px;
  11773. white-space:nowrap;
  11774. text-transform:none;
  11775. }
  11776. #u21162_div {
  11777. border-width:0px;
  11778. position:absolute;
  11779. left:0px;
  11780. top:0px;
  11781. width:49px;
  11782. height:17px;
  11783. background:inherit;
  11784. background-color:rgba(255, 255, 255, 0);
  11785. border:none;
  11786. border-radius:0px;
  11787. -moz-box-shadow:none;
  11788. -webkit-box-shadow:none;
  11789. box-shadow:none;
  11790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11791. font-weight:400;
  11792. font-style:normal;
  11793. font-size:12px;
  11794. color:#AAAAAA;
  11795. }
  11796. #u21162 {
  11797. border-width:0px;
  11798. position:absolute;
  11799. left:146px;
  11800. top:462px;
  11801. width:49px;
  11802. height:17px;
  11803. display:flex;
  11804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11805. font-weight:400;
  11806. font-style:normal;
  11807. font-size:12px;
  11808. color:#AAAAAA;
  11809. }
  11810. #u21162 .text {
  11811. position:absolute;
  11812. align-self:flex-start;
  11813. padding:0px 0px 0px 0px;
  11814. box-sizing:border-box;
  11815. width:100%;
  11816. }
  11817. #u21162_text {
  11818. border-width:0px;
  11819. white-space:nowrap;
  11820. text-transform:none;
  11821. }
  11822. #u21163_img {
  11823. border-width:0px;
  11824. position:absolute;
  11825. left:0px;
  11826. top:0px;
  11827. width:201px;
  11828. height:2px;
  11829. }
  11830. #u21163 {
  11831. border-width:0px;
  11832. position:absolute;
  11833. left:120px;
  11834. top:441px;
  11835. width:200px;
  11836. height:1px;
  11837. display:flex;
  11838. }
  11839. #u21163 .text {
  11840. position:absolute;
  11841. align-self:center;
  11842. padding:2px 2px 2px 2px;
  11843. box-sizing:border-box;
  11844. width:100%;
  11845. }
  11846. #u21163_text {
  11847. border-width:0px;
  11848. word-wrap:break-word;
  11849. text-transform:none;
  11850. visibility:hidden;
  11851. }
  11852. #u21164_div {
  11853. border-width:0px;
  11854. position:absolute;
  11855. left:0px;
  11856. top:0px;
  11857. width:65px;
  11858. height:22px;
  11859. background:inherit;
  11860. background-color:rgba(255, 255, 255, 0);
  11861. border:none;
  11862. border-radius:0px;
  11863. -moz-box-shadow:none;
  11864. -webkit-box-shadow:none;
  11865. box-shadow:none;
  11866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11867. font-weight:400;
  11868. font-style:normal;
  11869. font-size:16px;
  11870. }
  11871. #u21164 {
  11872. border-width:0px;
  11873. position:absolute;
  11874. left:146px;
  11875. top:665px;
  11876. width:65px;
  11877. height:22px;
  11878. display:flex;
  11879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11880. font-weight:400;
  11881. font-style:normal;
  11882. font-size:16px;
  11883. }
  11884. #u21164 .text {
  11885. position:absolute;
  11886. align-self:flex-start;
  11887. padding:0px 0px 0px 0px;
  11888. box-sizing:border-box;
  11889. width:100%;
  11890. }
  11891. #u21164_text {
  11892. border-width:0px;
  11893. white-space:nowrap;
  11894. text-transform:none;
  11895. }
  11896. #u21165_div {
  11897. border-width:0px;
  11898. position:absolute;
  11899. left:0px;
  11900. top:0px;
  11901. width:97px;
  11902. height:22px;
  11903. background:inherit;
  11904. background-color:rgba(255, 255, 255, 0);
  11905. border:none;
  11906. border-radius:0px;
  11907. -moz-box-shadow:none;
  11908. -webkit-box-shadow:none;
  11909. box-shadow:none;
  11910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11911. font-weight:400;
  11912. font-style:normal;
  11913. font-size:16px;
  11914. }
  11915. #u21165 {
  11916. border-width:0px;
  11917. position:absolute;
  11918. left:146px;
  11919. top:541px;
  11920. width:97px;
  11921. height:22px;
  11922. display:flex;
  11923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11924. font-weight:400;
  11925. font-style:normal;
  11926. font-size:16px;
  11927. }
  11928. #u21165 .text {
  11929. position:absolute;
  11930. align-self:flex-start;
  11931. padding:0px 0px 0px 0px;
  11932. box-sizing:border-box;
  11933. width:100%;
  11934. }
  11935. #u21165_text {
  11936. border-width:0px;
  11937. white-space:nowrap;
  11938. text-transform:none;
  11939. }